all repos — clipunk-web @ b4cee6fe825ea183622ef4d68cbeeaa9744092c3

Config files for (futur) CLIPunk/Tile server

template.html (view raw)

 1{{$md := (include .OriginalReq.URL.Path | splitFrontMatter)}}
 2<!DOCTYPE html>
 3<html>
 4  <head>
 5    <title>{{$md.Meta.title}}</title>
 6    <meta charset="UTF-8">
 7    <meta name="viewport" content="width=device-width,initial-scale=1">
 8    <link href="/markdown.css" rel="stylesheet">
 9  </head>
10  <body>
11    <main>
12      <h1>{{$md.Meta.title}}</h1>
13      {{markdown $md.Body}}
14    </main>
15  </body>
16</html>