Skip to content

Commit

Permalink
Separate pages for 2024 conferences and journals
Browse files Browse the repository at this point in the history
  • Loading branch information
allholy committed Jan 13, 2025
1 parent 3e539fe commit e1b4dea
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
12 changes: 12 additions & 0 deletions 2024.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
layout: default
---

<div class="home">

<h1 class="page-heading">2024 Conference calls</h1>

{% assign confs = (site.conferences | sort 'submission_date') %}
{% include conferences.html year="2024" confs=confs %}

</div>
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<h1 class="page-heading">Conferences</h1>

{% assign confs = (site.conferences | sort 'submission_date') %}
{% include conferences.html year="2024" confs=confs greaterthan=true %}
{% include conferences.html year="2025" confs=confs greaterthan=true %}


<a href="/2008">2008</a>
Expand All @@ -30,5 +30,6 @@ <h1 class="page-heading">Conferences</h1>
<a href="/2021">2021</a>
<a href="/2022">2022</a>
<a href="/2023">2023</a>
<a href="/2024">2024</a>

</div>
11 changes: 11 additions & 0 deletions journalcalls/2024.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
layout: default
---

<div class="home">

<h1 class="page-heading">2024 Journal calls</h1>
{% assign journals = (site.journals | sort: 'submission_date') %}
{% include journals.html year="2024" journals=journals %}

</div>
3 changes: 2 additions & 1 deletion journalcalls/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<h1 class="page-heading">Journal calls</h1>

{% assign journals = (site.journals | sort: 'submission_date') %}
{% include journals.html year="2024" journals=journals greaterthan=true %}
{% include journals.html year="2025" journals=journals greaterthan=true %}

Previous years
<a href="2008">2008</a>
Expand All @@ -28,5 +28,6 @@ <h1 class="page-heading">Journal calls</h1>
<a href="2021">2021</a>
<a href="2022">2022</a>
<a href="2023">2023</a>
<a href="2024">2024</a>

</div>

0 comments on commit e1b4dea

Please sign in to comment.