all repos — flounder @ e43213d25ed63fc07fd69f146e79f3360414ffeb

A small site builder for the Gemini protocol

templates/folder.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<h1>{{.PageTitle}}</h1>
13{{range .Files}}
14<p>
15<a href="//{{.Creator}}.{{.Host}}/{{.Name}}">{{.Name}}</a>
16</p>
17{{end}}
18<br>
19<a href="/">home</a>
20<br>
21</main>
22</body>
23</html>