all repos — website @ cdd34e9bfbfa6a23b93cedcffaa8d8f9e862fc84

My website

Merge commit 'd5857f9dbecd498e341c8cb5d0866749c5c554c7'

Alan Pearce
commit

cdd34e9bfbfa6a23b93cedcffaa8d8f9e862fc84

parent

eea42a5b1b05fbbdc9f33df41576de0232fcbd4d

1 file changed, 31 insertions(+), 0 deletions(-)

changed files
A themes/xmin/layouts/_default/baseof.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html> +<html lang="{{ .Site.LanguageCode }}"> + <head profile="//gmpg.org/xfn/11"> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <title>{{ .Title }} | {{ .Site.Title }}</title> + <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}" /> + {{ range .AlternativeOutputFormats -}} + {{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }} + {{ end -}} + </head> + + <body> + <nav> + <ul> + {{ range .Site.Menus.main }} + <li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li> + {{ end }} + </ul> + </nav> + + {{ block "main" . }} + {{ end }} + + <footer> + {{ with .Site.Params.footer }} + {{ . | markdownify }} + {{ end }} + </footer> + </body> +</html>