-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create new page to list publications by year, remove link to ICT website
- Loading branch information
1 parent
90fa19e
commit 4263986
Showing
3 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
layout: page | ||
--- | ||
|
||
<div class="columns is-multiline"> | ||
<div class="column is-12"> | ||
{{ content }} | ||
</div> | ||
|
||
<div class="column is-12"> | ||
{% assign publicationsByYear = site.data.publications | where_exp: "publication", "publication.id_iris != nil" | group_by: "year" | sort: "name" | reverse %} | ||
|
||
{% for year in publicationsByYear %} | ||
<h1>{{ year.name }} <small>({{ year.items.size }})</small></h1> | ||
{% include list-publications.html source=year.items sort="title" %} | ||
{% endfor %} | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Publications | ||
layout: publications-list | ||
permalink: /publications/ | ||
|
||
--- | ||
|