diff options
author | xengineering <me@xengineering.eu> | 2022-05-31 08:40:34 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-05-31 08:40:34 +0200 |
commit | d2cce2c11cbabebab82243b850bcd7dc0a68cab2 (patch) | |
tree | f07cbdc84fe418495cfea6701118bfa89467e948 /themes/bare/layouts/index.html | |
parent | 0594100b0d382af79d989be67f6bb82c808180c9 (diff) | |
download | website-d2cce2c11cbabebab82243b850bcd7dc0a68cab2.tar website-d2cce2c11cbabebab82243b850bcd7dc0a68cab2.tar.zst website-d2cce2c11cbabebab82243b850bcd7dc0a68cab2.zip |
Proof of concept for new project page concept
- stores data about a repository in content file
- links on index.html just with name and description
to repository pages
Diffstat (limited to 'themes/bare/layouts/index.html')
-rw-r--r-- | themes/bare/layouts/index.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/themes/bare/layouts/index.html b/themes/bare/layouts/index.html index 0bb2fdb..bddd4d9 100644 --- a/themes/bare/layouts/index.html +++ b/themes/bare/layouts/index.html @@ -31,6 +31,11 @@ {{.Content}} + <ul> + {{ $page := .GetPage "webiot.md" }} + <li><a href="{{ $page.Permalink }}">{{ $page.Params.heading }}</a> - {{$page.Description}}</li> + </ul> + <br> <hr> <footer>License: <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a></footer> |