diff options
author | FChannel <> | 2022-06-19 12:47:32 -0700 |
---|---|---|
committer | FChannel <> | 2022-06-19 16:03:29 -0700 |
commit | b02f813e519dc890f2eb4827ff52cff3ff90c828 (patch) | |
tree | d020fbdefda52542aab3f4250bf93533e9f38504 /static/anews.html | |
parent | cd99df8d6781c3f0a191d119ea0ddf8c4a16089f (diff) |
v0.1.0
Diffstat (limited to 'static/anews.html')
-rw-r--r-- | static/anews.html | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/static/anews.html b/static/anews.html deleted file mode 100644 index 355f310..0000000 --- a/static/anews.html +++ /dev/null @@ -1,40 +0,0 @@ -{{ define "header" }} -<title>{{ .Title }}</title> -<meta name="description" content="{{ .PreferredUsername }} is a federated image board based on ActivityPub. The current version of the code running on the server is still a work-in-progress product, expect a bumpy ride for the time being. Get the server code here: https://github.com/FChannel0."> - -<meta property="og:locale" content="en_US" /> -<meta property="og:type" content="website" /> -<meta property="og:url" content="{{ .Board.Domain }}"> -<meta property="og:site_name" content="{{ .Board.Actor.PreferredUsername }}" /> - -<meta property="og:title" content="{{ .Title }}"> -<meta property="og:description" content="{{ .PreferredUsername }} is a federated image board based on ActivityPub. The current version of the code running on the server is still a work-in-progress product, expect a bumpy ride for the time being. Get the server code here: https://github.com/FChannel0."> - -<meta name="twitter:title" content="{{ .Title }}"> -<meta name="twitter:description" content="{{ .PreferredUsername }} is a federated image board based on ActivityPub. The current version of the code running on the server is still a work-in-progress product, expect a bumpy ride for the time being. Get the server code here: https://github.com/FChannel0."> -<meta name="twitter:card" content="summary_large_image"> - -{{ end }} - -{{ define "top" }}{{ end }} -{{ define "content" }} -<div style="text-align: center; max-width: 800px; margin: 0 auto;"> - <h1>{{ .Title }}</h1> - - <div class="newsbox" style="margin-top:50px;padding-top:0;"> - {{ range $i, $e := .NewsItems }} - <div class="newsbox-news"> - <h3><a href="/news/{{.Time}}">{{unixtoreadable $e.Time}} - {{$e.Title}}</a>{{ if $.Board.ModCred }} <a href="/{{ $.Key }}/newsdelete/{{ $e.Time }}">[Delete] </a>{{end}}</h3> - <br> - - <p>{{$e.Content}}</p> - </div> - {{ end }} - </div> - -</div> -{{ end }} -{{ define "bottom" }}{{ end }} - -{{ define "script" }} -{{ end }} |