personal-website

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

devlog.html (555B)


      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   <title>{{ .Page.Title }}</title>
      9   <link rel="stylesheet" href="/style.css">
     10 </head>
     11 {{template "top.html"}}
     12     <h1>{{ .Title }}</h1>
     13 {{ .Content }}
     14   {{ range .Posts }}
     15   {{ if HasPrefix .Filepath "content/devlog/" }}
     16     <h2>{{ .Title }}</h2>
     17     {{ Content . }}
     18   {{ end }}
     19   {{ end }}
     20 {{template "bottom.html"}}