blog/themes/shockrah.xyz/layouts/partials/head.html
shockrah dea636c3ae + Adding proper index page building
+ 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
2021-08-16 16:12:14 -07:00

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>