diff options
Diffstat (limited to 'templates/openring.html')
-rw-r--r-- | templates/openring.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/openring.html b/templates/openring.html new file mode 100644 index 0000000..be91912 --- /dev/null +++ b/templates/openring.html @@ -0,0 +1,23 @@ +<sectiong style="margin-top: 128px;"> + <h2>Articles from blogs I read</h2> + <section> + {{range .Articles}} + <div> + <h3> + <a href="{{.Link}}" target="_blank" rel="noopener">{{.Title}}</a> + </h3> + <p>{{.Summary}}</p> + <div> + via <a href="{{.SourceLink}}">{{.SourceTitle}}</a> + </div> + <div>{{.Date | datef "January 2, 2006"}}</div> + </div> + {{end}} + </section> + <div> + <small> + Generated by + <a href="https://git.sr.ht/~sircmpwn/openring">openring</a> + </small> + </div> +</section> |