all repos — flounder @ a378f18ded7aa8cdf4819d53e4d66b5e67d681fa

A small site builder for the Gemini protocol

templates/header.html (view raw)

 1{{ define "header"}}
 2<!DOCTYPE html>
 3<html lang="en">
 4  <head>
 5    <meta charset="utf-8" />
 6    <title>{{.Config.SiteTitle}}</title>
 7    <meta name="viewport" content="width=device-width" />
 8    <link rel="stylesheet" type="text/css" href="https://{{.Config.Host}}/style.css" />
 9    <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>🐟</text></svg>">
10  </head>
11  <body>
12    <main>
13{{ end }}