all repos — flounder @ 4f3314b9ff2dac956b2e34369bc1bd0bcad1d606

A small site builder for the Gemini protocol

templates/user_page.html (view raw)

 1<!DOCTYPE html>
 2<html lang="en">
 3  <head>
 4    <meta charset="utf-8" />
 5    <title>{{.PageTitle }}</title>
 6    <meta name="viewport" content="width=device-width" />
 7    <link rel="stylesheet" type="text/css" href="/style.css" />
 8    <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>{{.Favicon}}</text></svg>">
 9  </head>
10  <body>
11<main>
12{{.SiteBody}}
13<br>
14<div class="footer">
15  Proxied from the original at <a href="gemini://{{.URI}}">gemini://{{.URI}}</a>  (<a href="https://admin.flounder.online/gemini.gmi">about Gemini</a>)</div>
16</main>
17</body>
18</html>