diff options
author | mms <michal@sapka.me> | 2023-11-17 23:08:13 +0100 |
---|---|---|
committer | mms <michal@sapka.me> | 2023-11-17 23:08:13 +0100 |
commit | 01fa8ffafee92e0ddc1c723f97f4fb3d33ca8b20 (patch) | |
tree | a343e9fda06dee947f293630b78fa1047ef798b7 /layouts/_default/index.html | |
parent | d0ed7e74343ba6a6fabd622c818d014907c76785 (diff) |
feat: star trek section WIP
Diffstat (limited to 'layouts/_default/index.html')
-rw-r--r-- | layouts/_default/index.html | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/layouts/_default/index.html b/layouts/_default/index.html index a9f87c8..3e7f1e6 100644 --- a/layouts/_default/index.html +++ b/layouts/_default/index.html @@ -3,15 +3,24 @@ <h2>About</h2> Hey! I'm Michał Sapka, a computer programmer living in Kraków, Poland. This website is not dedicated to any particular one thing. Instead, I write whatever interests me most at the moment. No content here is auto-generated, so any bugs, problems, or controversies are entirely on me! -<h2>Articles</h2> -{{ range (where site.RegularPages "Type" "!=" "special") }} +<h2>Recent updates from the entire site</h2> + +{{ $recent_categories := slice "update" }} +{{ range first 7 (where .Site.RegularPages ".Params.category" "intersect" $recent_categories) }} {{ partial "partials/article_list_item.html" . }} {{ end }} +<p><a href="/all_updates">All updates</a></p> </article> +<h2>Sections</h2> + <nav> - <b><a href="/site/info/">Site info</a></b> : you can find site uptates, metrics, statics, and legal thingies here. + <P> ✦ <a href="/star-trek/home/"><b>Star Trek fan site</b>: my little shrine to the greatest american Sci-Fi that has ever graced our screens.</a> </p> + <p> ♥ <a href="/site/info/"><b>Site info</b> : you can find site uptates, metrics, statics, and legal thingies here.</a></p> </nav> + +<h2>TOC</h2> +You can also use <a href="/toc">Table of Contents</a>. <br><br> {{ end }} |