personal-website

source for my personal website regexghost.com
git clone https://git.regexghost.com/personal-website.git
Log | Files | Refs | README

default.html (410B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4 {{ if index .Page.Meta "description"  }}
      5   <meta name="description" content="{{ index .Page.Meta "description" }}">
      6 {{ end }}
      7   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
      8   <link rel="stylesheet" href="/style.css">
      9   <title>{{ .Title }}</title>
     10 </head>
     11 {{template "top.html"}}
     12     <h1>{{ .Title }}</h1>
     13 {{ .Content }}
     14 {{template "bottom.html"}}