Skip to content

Commit

Permalink
Improve calender formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rleh committed May 27, 2024
1 parent 132645d commit c2b6b6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calendar.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h1>{{ page.slogan }}</h1>
<div class="align-items-center">
{% for termin in site.data.calendar -%}
{% if termin.title contains "Geschäftsführende Versammlung" or termin.title contains "TechTreff" -%}
<div class="termin" date="{{ termin.datum }}"><p><b>{{ termin.title }}</b><br /> {{ termin.datum }}, {{ termin.uhrzeit }}<br /> Ort: {{ termin.ort }}</p></div>
<div class="termin" date="{{ termin.datum }}"><p><b>{{ termin.title }}</b><br /> {{ termin.datum | date: "%d.%m.%Y" }}, {{ termin.uhrzeit }}<br /> Ort: {{ termin.ort }}</p></div>
{% endif -%}
{% endfor -%}
</div>
Expand Down

0 comments on commit c2b6b6e

Please sign in to comment.