Welcome to mirror list, hosted at ThFree Co, Russian Federation.

head.html « partials « layouts - github.com/the2ne/hugo-frais.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52665cf8e30a64506885f547ce7395c984188aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<html class="no-js" lang="{{ .Site.LanguageCode }}" prefix="og: http://ogp.me/ns#">
<head>
    <meta charset="utf-8">
    <title>{{ if .IsHome }}{{ .Title }}{{ else }}{{ .Title }} | {{ .Site.Title }}{{ end }}</title>
    {{ partial "meta.html" . }}
    {{ partial "meta_opengraph.html" . }}
    {{ partial "meta_twittercard.html" . }}
    <base href="{{ .Site.BaseURL }}">
    {{ .Hugo.Generator }}
    <link rel="canonical" href="{{ .Permalink }}">
    {{ if .RSSLink }}<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Title }}" />{{ end }}
    {{ partial "head_includes.html" . }}
</head>