personal-website

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

blog.html (652B)


      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     <h2>Posts</h2>
     15     <ul>
     16     {{ range .Posts }}
     17     {{ if HasPrefix .Filepath "content/blog/" }}
     18       <li>{{ .DatePublished.Format "2006-01-02" }} - <a href="{{ .Permalink }}">{{ .Title }}</a></li>
     19 	{{ end }}
     20     {{ end }}
     21     </ul>
     22 {{template "bottom.html"}}