summaryrefslogtreecommitdiff
path: root/blag/layouts/partials/header.html
blob: 329debc6b212d9776a6551abb51e80143745c5e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">

    {{ partial "meta.html" . }}

    <base href="{{ .Site.BaseURL }}" />
    <title>{{ .Site.Title }}</title>

    <link rel="canonical" href="{{ .Permalink }}" />
    {{ if .RSSlink }}
        <link href="{{ .RSSlink }}" rel="alternate" type="application/rss+xml"
              title="{{ .Title }}" />
    {{ end }}

    {{ partial "head_includes.html" . }}
    <link rel="stylesheet" href="{{ .Site.BaseURL }}/css/site.css" />
    <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
</head>