diff options
author | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2021-03-14 13:11:14 +0700 |
---|---|---|
committer | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2021-03-14 13:13:19 +0700 |
commit | 96e9ebd4f6f2e69d6f634b675d70b5b1542c628e (patch) | |
tree | c12b7834d10b11383e39cf7648e7266cda54061c /webring.template | |
parent | 644a4e220444002f0a6e21e98481effd85d61a7f (diff) | |
download | blog-96e9ebd4f6f2e69d6f634b675d70b5b1542c628e.tar.gz |
Make the webring larger
Diffstat (limited to 'webring.template')
-rw-r--r-- | webring.template | 44 |
1 files changed, 21 insertions, 23 deletions
diff --git a/webring.template b/webring.template index d107318..912baa2 100644 --- a/webring.template +++ b/webring.template @@ -1,25 +1,23 @@ -<div class="wrapper"> - <section class="webring"> - <h2> - Articles from blogs I read - <small class="attribution"> - Generated by - <a href="https://git.sr.ht/~sircmpwn/openring">openring</a> +<section class="webring"> + <h2> + Articles from blogs I read + <small class="attribution"> + Generated by + <a href="https://git.sr.ht/~sircmpwn/openring">openring</a> + </small> + </h2> + <section class="footer-col-wrapper"> + {{range .Articles}} + <div class="footer-col article"> + <h4 class="title"> + <a href="{{.Link}}" target="_blank" rel="noopener">{{.Title}}</a> + </h4> + <p class="summary">{{.Summary}}</p> + <small class="source"> + via <a href="{{.SourceLink}}">{{.SourceTitle}}</a> </small> - </h2> - <section class="footer-col-wrapper"> - {{range .Articles}} - <div class="footer-col article"> - <h4 class="title"> - <a href="{{.Link}}" target="_blank" rel="noopener">{{.Title}}</a> - </h4> - <p class="summary">{{.Summary}}</p> - <small class="source"> - via <a href="{{.SourceLink}}">{{.SourceTitle}}</a> - </small> - <small class="date">{{.Date | date}}</small> - </div> - {{end}} - </section> + <small class="date">{{.Date | date}}</small> + </div> + {{end}} </section> -</div> +</section> |