Files
aether/layouts/partials/head.html
2018-06-08 13:35:58 -04:00

22 lines
1003 B
HTML

<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{{ if ne .URL "/" }}{{ .Title }} &middot; {{ end }}{{ .Site.Title }}</title>
<meta name="description" content="{{if .IsHome}}{{ $.Site.Params.description }}{{else}}{{.Description}}{{end}}" />
<!-- Standard favicon -->
<link rel="icon" type="image/x-icon" href="/img/favicon.ico">
<!-- Recommended favicon format -->
<link rel="icon" type="image/png" href="/img/favicon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css" />
<link rel="stylesheet" href="/css/style.css" />
<link rel="stylesheet" href="/css/xcode.css" />
<link rel="stylesheet" href="/css/latolatinfonts.css" />
{{ if isset $.Site.Params "bgimg" }}
<style>
body {
background: #ecedef url("{{ $.Site.Params.bgimg }}") repeat;
}
</style>
{{ end }}
</head>