all repos — flounder @ 4a693e0ca95cf0bd28738f79578cc77450d04fbe

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     <link rel="preconnect" href="https://fonts.gstatic.com">
 6    <link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet"> 
 7    <meta charset="utf-8" />
 8    <title>{{.Config.SiteTitle}}</title>
 9    <meta name="viewport" content="width=device-width" />
10    <link rel="stylesheet" type="text/css" href="//{{.Config.Host}}/style.css" />
11    <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>">
12    <meta name="description" content="{{.Config.SiteTitle}} is a simple site and log builder for the Gemini network">
13  </head>
14  <body>
15    <main>
16{{ end }}