summaryrefslogtreecommitdiff
path: root/layouts/_default/index.html
diff options
context:
space:
mode:
authormms <michal@sapka.me>2023-11-17 23:08:13 +0100
committermms <michal@sapka.me>2023-11-17 23:08:13 +0100
commit01fa8ffafee92e0ddc1c723f97f4fb3d33ca8b20 (patch)
treea343e9fda06dee947f293630b78fa1047ef798b7 /layouts/_default/index.html
parentd0ed7e74343ba6a6fabd622c818d014907c76785 (diff)
feat: star trek section WIP
Diffstat (limited to 'layouts/_default/index.html')
-rw-r--r--layouts/_default/index.html15
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> &#10022; <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> &#x2665; <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 }}