all repos — flounder @ fbba2837f74ed229dd1a9fc32a3ddf12d1a397d3

A small site builder for the Gemini protocol

templates/feed.html (view raw)

 1{{$domain := .Host}}
 2{{template "header" .}}
 3<h1>🐟{{.PageTitle}} -- Feeds</h1>
 4{{template "nav.html" .}}
 5<br>
 6<p>
 7For more information on how to format your site to show up here, see <a href="https://admin.flounder.online/gemfeed.gmi">this documentation</a>
 8<h2>Feed:</h2>
 9{{ range .FeedEntries}}
10<p>
11<a href="{{.Url}}" class='person-link'>{{.DateString}} [{{.FeedTitle}}] — {{.Title}}</a>
12</p>
13{{end}}
14{{template "footer" .}}