diff options
author | xengineering <me@xengineering.eu> | 2023-02-04 12:47:04 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-05 14:26:24 +0100 |
commit | 78eed530111fdc8640133da5bbf8a5f86d703a50 (patch) | |
tree | d232f9dc640b3f1c94b7dda71b9fbef225381d44 /layouts/index.html | |
parent | 0f29a466be17692b0617736ca58549c4c39e7486 (diff) | |
download | website-78eed530111fdc8640133da5bbf8a5f86d703a50.tar website-78eed530111fdc8640133da5bbf8a5f86d703a50.tar.zst website-78eed530111fdc8640133da5bbf8a5f86d703a50.zip |
Add support for articles
Articles should contain documentation which is constantly updated.
Diffstat (limited to 'layouts/index.html')
-rw-r--r-- | layouts/index.html | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/layouts/index.html b/layouts/index.html index 88d5dd9..5f0754e 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -31,9 +31,18 @@ <li><a href="https://openpgp.org">OpenPGP</a>: <a href="{{.Params.openpgp.file}}">{{.Params.openpgp.fingerprint}}</a></li> </ul> - {{.Content}} + <h3>Articles</h3> + <p>The following list contains links to my articles. They contain + documentation about technology I use.</p> + <ul> + {{ range.Site.RegularPages }} + {{ if eq .Section "articles" }} + <li><a href="{{.Permalink}}">{{.Params.title}}</a></li> + {{ end }} + {{ end }} + </ul> - <h3>My projects</h3> + <h3>Projects</h3> <p>Here is a list of all my published projects. The active ones are regularly used by myself.</p> |