Skip to content

Commit

Permalink
2024
Browse files Browse the repository at this point in the history
  • Loading branch information
jcupac committed Jan 17, 2024
1 parent dead7dd commit 7475b7d
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 24 deletions.
24 changes: 12 additions & 12 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.8.1)
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
colorator (1.1.0)
concurrent-ruby (1.1.10)
concurrent-ruby (1.2.2)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
eventmachine (1.2.7)
ffi (1.15.5-x64-mingw-ucrt)
ffi (1.16.3-x64-mingw-ucrt)
forwardable-extended (2.6.0)
http_parser.rb (0.8.0)
i18n (1.12.0)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
jekyll (4.0.1)
addressable (~> 2.4)
Expand All @@ -29,7 +29,7 @@ GEM
rouge (~> 3.0)
safe_yaml (~> 1.0)
terminal-table (~> 1.8)
jekyll-feed (0.15.1)
jekyll-feed (0.17.0)
jekyll (>= 3.7, < 5.0)
jekyll-sass-converter (2.2.0)
sassc (> 2.0.1, < 3.0)
Expand All @@ -43,8 +43,8 @@ GEM
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.3)
listen (3.7.1)
liquid (4.0.4)
listen (3.8.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.3.6)
Expand All @@ -54,25 +54,25 @@ GEM
jekyll-seo-tag (~> 2.1)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (5.0.0)
public_suffix (5.0.4)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.5)
rexml (3.2.6)
rouge (3.30.0)
safe_yaml (1.0.5)
sassc (2.4.0)
ffi (~> 1.9)
terminal-table (1.8.0)
unicode-display_width (~> 1.1, >= 1.1.1)
thread_safe (0.3.6)
tzinfo (1.2.10)
tzinfo (1.2.11)
thread_safe (~> 0.1)
tzinfo-data (1.2022.4)
tzinfo-data (1.2023.3)
tzinfo (>= 1.0.0)
unicode-display_width (1.8.0)
wdm (0.1.1)
webrick (1.7.0)
webrick (1.8.1)

PLATFORMS
x64-mingw-ucrt
Expand Down
6 changes: 3 additions & 3 deletions _data/speakers2024.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
- title: Tech Excellence Meetup
- title: DDD - Deep Dive into Aggregates
date: 7 Feb 2024
link:
link: https://www.youtube.com/watch?v=8Qx-_9U4jtc
speaker1: alex_stucker
speaker2:
# MEETUP:
# MEETUP: https://www.meetup.com/techexcellence/events/298607589/

- title: Tech Excellence Meetup
date: 21 Feb 2024
Expand Down
10 changes: 5 additions & 5 deletions _includes/speakers2023.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ <h2>Meetup Calendar for 2023</h2>

<!-- JC TODO add social media for speakers -->

{% assign talks = site.data.speakers2023 %}

{% include speakers.html %}


<div class="s-container">
<a class="s-btn" href="{{ site.url }}/speakers-2023">
See our 2023 TE talks
</a>
</div>
8 changes: 4 additions & 4 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@
</div>

<div id="speakers">
{% include speakers2023.html %}
{% include speakers2024.html %}
</div>

<div id="speakers">
{% include speakers2024.html %}
{% include speakers2023.html %}
</div>

<div id="speakers">
{% include speaker-signup.html %}
{% include speakers2022.html %}
</div>

<div id="speakers">
{% include speakers2022.html %}
{% include speaker-signup.html %}
</div>

<div id="team">
Expand Down
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
layout: default
---

<!-- RUN: bundle exec jekyll serve --livereload -->
10 changes: 10 additions & 0 deletions speakers-2023.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: s2022
title:
---

<h2>Meetup Calendar for 2023</h2>

{% assign talks = site.data.speakers2023 %}

{% include speakers.html %}

0 comments on commit 7475b7d

Please sign in to comment.