diff options
author | Cem Keylan <cem@ckyln.com> | 2021-12-10 22:56:19 +0100 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-12-10 22:56:19 +0100 |
commit | 4dd664f372c1880c83cb8aaed476b109700f3b21 (patch) | |
tree | 65010c4c41775574faa16cf1ecf17407034552b7 /layouts | |
parent | 22eff1e2dffde0f6474be2986a44d4d0be6056e2 (diff) | |
download | website-4dd664f372c1880c83cb8aaed476b109700f3b21.tar.gz |
update
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/page/index.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/layouts/page/index.html b/layouts/page/index.html index 92fdf72..f71927f 100644 --- a/layouts/page/index.html +++ b/layouts/page/index.html @@ -1,15 +1,18 @@ {{define "main"}} {{ .Content }} -<h2>Latest Blog Posts</h2> +<hr> +<h3>Latest Blog Posts</h3> <ul> {{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }} <li>{{.Date.Format "2006-02-01"}} | <a href="{{.Permalink}}">{{.Title}}</a></li> {{ end }} </ul> -<h2>Latest Package Changes</h2> +<hr> +<h3>Latest Package Changes</h3> <ul> <script src="https://git.carbslinux.org/exports/repository.js"></script> </ul> +<hr> <h2>News</h2> <a href="{{"news/index.xml"|relURL}}">RSS Feed</a> | <a href="{{"news"|relURL}}">See all news</a> |