diff options
author | xengineering <me@xengineering.eu> | 2022-05-31 14:25:39 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-05-31 14:25:39 +0200 |
commit | 1c46049283351c7a6e5e1ce386d0f0ef5951d6a5 (patch) | |
tree | 8b0ef78c3217a3f0c9a0fd8119148045515524d2 /themes/bare/layouts/index.html | |
parent | 4a292ac06320580e07f0a0689f6b2a77bc2e3495 (diff) | |
download | website-1c46049283351c7a6e5e1ce386d0f0ef5951d6a5.tar website-1c46049283351c7a6e5e1ce386d0f0ef5951d6a5.tar.zst website-1c46049283351c7a6e5e1ce386d0f0ef5951d6a5.zip |
Implement repository iteration
Diffstat (limited to 'themes/bare/layouts/index.html')
-rw-r--r-- | themes/bare/layouts/index.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/themes/bare/layouts/index.html b/themes/bare/layouts/index.html index f3decef..380e9d7 100644 --- a/themes/bare/layouts/index.html +++ b/themes/bare/layouts/index.html @@ -31,9 +31,12 @@ {{.Content}} + <h2>Repositories</h2> + <ul> - {{ $page := .GetPage "git/webiot.md" }} - <li><a href="{{ $page.Permalink }}">{{ $page.Params.name }}</a> - {{$page.Description}}</li> + {{range.Site.RegularPages}} + <li><a href="{{.Permalink}}">{{.Params.name}}</a> - {{.Description}}</li> + {{end}} </ul> <br> |