Skip to content

Commit

Permalink
Added Chicago Java User’s Group + include Mastodon link #76
Browse files Browse the repository at this point in the history
* Added BelgianJUG
* Corrected founding date to 1996
* #10 add Mastodon (and ChicagoJUG)
* #10 add Mastodon (and ChicagoJUG)

---------

Co-authored-by: Frank Delporte <[email protected]>
  • Loading branch information
FDelporte and Frank Delporte authored Sep 14, 2023
1 parent bc51189 commit 24d8959
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
1 change: 1 addition & 0 deletions _jugs/BelgianJUG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: "Belgian Java User Group"
country: Belgium
website: https://www.meetup.com/belgian-java-user-group
twitter: BeJUG
mastodon: https://foojay.social/@BeJUG
location: 50.846816259061896, 4.352442201048654
founded_date: 1996-01-01
---
1 change: 1 addition & 0 deletions _jugs/BrusselsJUG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: "Brussels Java User Group"
country: Belgium
website: http://www.brujug.be/
twitter: BruJUG
mastodon: https://foojay.social/@brujug
location: 50.849594, 4.364084
founded_date: 2010-03-01
---
9 changes: 9 additions & 0 deletions _jugs/ChicagoJUG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
name: "Chicago Java User’s Group"
country: USA
website: https://www.meetup.com/ChicagoJUG/
twitter: cjug
mastodon: https://foojay.social/@ChicagoJUG
location: 41.87964294558547, -87.63584297206118
founded_date: 2013-01-01
---
11 changes: 9 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,15 @@ <h2>{{ jug.name }}</h2>
Location: {{ jug.location }}<br/>
Date founded: {{ jug.founded_date }}<br/>
Country: {{ jug.country }}<br/>
<a href="{{ jug.website }}">Website</a><br/>
<a href="https://twitter.com/{{ jug.twitter }}">Twitter</a></p>
{% if jug.website %}
<a href="{{ jug.website }}">Website</a><br/>
{% endif %}
{% if jug.twitter %}
<a href="https://twitter.com/{{ jug.twitter }}">Twitter</a><br/>
{% endif %}
{% if jug.mastodon %}
<a href="{{ jug.mastodon }}">Mastodon</a></p>
{% endif %}
</article>
</li>
{% endfor %}
Expand Down

0 comments on commit 24d8959

Please sign in to comment.