dea636c3ae
+ Favicon to head section of pages * Fixed date formatting in multiple places + Skeleton for posts which I don't think is being used but I could be wrong
11 lines
538 B
HTML
11 lines
538 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" href="/css/style.css">
|
|
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css" integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">
|
|
<link rel="shortcut icon" type="image/png" href="/favicon.png"/>
|
|
{{ $title := print .Title }}
|
|
{{ if .IsHome }}{{ $title = .Site.Title}}{{end}}
|
|
<title>{{ $title }}</title>
|
|
</head>
|