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