diff options
| author | Dylan Müller <root@lunar.sh> | 2025-12-15 20:27:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-15 20:27:30 +0200 |
| commit | be0a17b7dc83dd0acf5187d60163a2e66d7e34e5 (patch) | |
| tree | f969000f3698a9ca6f515909e00dd02af52f5fdd /index.html | |
| parent | ae8365da22be4300e78ae08e1e0a9eb8fec74f0e (diff) | |
| download | journal.lunar.sh-be0a17b7dc83dd0acf5187d60163a2e66d7e34e5.tar.gz journal.lunar.sh-be0a17b7dc83dd0acf5187d60163a2e66d7e34e5.zip | |
Update index.html
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -4,16 +4,18 @@ layout: default <div id="main" role="main" class="index"> <div class="posts"> - {% for post in site.featured %} +{% assign sorted_featured = site.featured | sort: 'date' | reverse %} +{% for post in sorted_featured %} <article class="post"> <header> <span title="format: yyyy-mm-dd">{{ post.date | date: "%Y-%m-%d" }} @ journal.lunar.sh</span> <div> - <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></div> + <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a> + </div> <div class="excerpt">{{ post.excerpt }}</div> </header> </article> - {% endfor %} + {% endfor %} <h1 class="title">Other Publications</h1> {% for post in site.posts %} <article class="post"> |
