personal-website

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

devlog.html (341B)


      1 <!DOCTYPE html>
      2 <head>
      3   <title>{{ .Page.Title }}</title>
      4   <link rel="stylesheet" href="/style.css">
      5 </head>
      6 {{template "top.html"}}
      7     <h1>{{ .Title }}</h1>
      8 {{ .Content }}
      9   {{ range .Pages }}
     10   {{ if HasPrefix .Filepath "content/devlog" }}
     11     <h2>{{ .Title }}</h2>
     12     {{ Content . }}
     13   {{ end }}
     14   {{ end }}
     15 {{template "bottom.html"}}