diff options
author | knotteye <knotteye@airmail.cc> | 2021-07-01 20:26:49 -0500 |
---|---|---|
committer | knotteye <knotteye@airmail.cc> | 2021-07-01 20:26:49 -0500 |
commit | 168225daa21fe494bcd74ab6c90d6498ecf9f1e3 (patch) | |
tree | 65274dc8181e7c1805fb601f3674f6d357b5dc80 /static/index.html | |
parent | 4e3848cadbb3fd89b94a7ef24838173939d198db (diff) |
Make news list links to full page news articles
Diffstat (limited to 'static/index.html')
-rw-r--r-- | static/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/index.html b/static/index.html index de06c6c..05197c0 100644 --- a/static/index.html +++ b/static/index.html @@ -44,7 +44,7 @@ {{ range .NewsItems }} <tr> - <td><p><em><b>{{.Time}} - {{.Title}}</b></em><br>{{.Content}}</p></td> + <td><a href="/news/{{.Time}}">{{unixtoreadable .Time}} - {{.Title}}</a></td> </tr> {{ end }} </table> |