diff options
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> |