aboutsummaryrefslogtreecommitdiff
path: root/generators/openring/template.html
diff options
context:
space:
mode:
Diffstat (limited to 'generators/openring/template.html')
-rw-r--r--generators/openring/template.html32
1 files changed, 18 insertions, 14 deletions
diff --git a/generators/openring/template.html b/generators/openring/template.html
index fdbdc8b..35110c6 100644
--- a/generators/openring/template.html
+++ b/generators/openring/template.html
@@ -1,16 +1,20 @@
-<h2 class="is-inline is-uppercase is-size-5 has-spacing-widest">On the Web</h2>
-
-<ul class="articles">
+<ul>
{{ range .Articles }}
-
- <li>
- <h2>
- <a href="{{ .Link }}" target="_blank" rel="noopener" title="{{ .Summary }}" class="serif is-size-4">{{ .Title }}</a>
- </h2>
- <div class="source is-block">by <a href="{{ .SourceLink}} ">{{ .SourceTitle }}</a></div>
- <div class="is-block has-text-grey-dark">{{ .Date | date }}</div>
- </li>
-
- {{end}}
-
+ <li>
+ <h3>
+ <a
+ href="{{ .Link }}"
+ rel="noopener"
+ target="_blank"
+ title="{{ .Summary }}"
+ >
+ {{ .Title }}
+ </a>
+ </h3>
+ <p>
+ by <a href="{{ .SourceLink}} ">{{ .SourceTitle }}</a>
+ </p>
+ <time datetime="{{ .Date }}">{{ .Date | date }}</time>
+ </li>
+ {{ end }}
</ul>