all repos — flounder @ 6c814bb3f1ed4320bc0a072caeaaac83fd653673

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="//{{.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    <meta name="description" content="{{.Config.SiteTitle}} is a simple site and log builder for the Gemini network">
11  </head>
12  <body>
13    <main>
14{{ end }}