summaryrefslogtreecommitdiff
path: root/openring-template.html
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2022-04-20 14:28:36 +0300
committereug-vs <eugene@eug-vs.xyz>2022-04-20 14:28:36 +0300
commit2bd2947a52df59e573726de1471c4fd76505b392 (patch)
tree26635c1ffb1b63e2c52691314f28a9719e4790c9 /openring-template.html
parentca04dd60746e9f4ee9f58594577c10776e7d55d2 (diff)
downloadeug-vs-xyz-2bd2947a52df59e573726de1471c4fd76505b392.tar.gz
feat: add openring footer to blog posts
Diffstat (limited to 'openring-template.html')
-rw-r--r--openring-template.html49
1 files changed, 49 insertions, 0 deletions
diff --git a/openring-template.html b/openring-template.html
new file mode 100644
index 0000000..a9f63e6
--- /dev/null
+++ b/openring-template.html
@@ -0,0 +1,49 @@
+<section class="webring">
+ <h3>Articles from blogs I follow around the net</h3>
+ <section class="articles">
+ {{range .Articles}}
+ <div class="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 | datef "January 2, 2006"}}</small>
+ </div>
+ {{end}}
+ </section>
+ <p class="attribution">
+ Generated by
+ <a href="https://git.sr.ht/~sircmpwn/openring">openring</a>
+ </p>
+</section>
+<style>
+.webring .articles {
+ display: flex;
+ flex-wrap: wrap;
+ margin: -0.5rem;
+}
+.webring .title {
+ margin: 0;
+}
+.webring .article {
+ flex: 1 1 0;
+ display: flex;
+ flex-direction: column;
+ margin: 0.5rem;
+ padding: 0.5rem;
+ background: #eee;
+ min-width: 10rem;
+}
+.webring .summary {
+ font-size: 0.8rem;
+ flex: 1 1 0;
+}
+.webring .attribution {
+ text-align: right;
+ font-size: 0.8rem;
+ color: #555;
+}
+</style>