diff options
Diffstat (limited to 'examples/blog/layouts/partials/header.html')
-rw-r--r-- | examples/blog/layouts/partials/header.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/blog/layouts/partials/header.html b/examples/blog/layouts/partials/header.html new file mode 100644 index 000000000..edb72dd3f --- /dev/null +++ b/examples/blog/layouts/partials/header.html @@ -0,0 +1,10 @@ +<!doctype html> +<html lang="en"> +<head> + {{ partial "meta.html" . }} + + <title>{{ .Title }} - {{ .Site.BaseUrl }}</title> + <link rel="canonical" href="{{ .Permalink }}"> + {{ partial "header.includes.html" . }} + {{ if .RSSlink }}<link href="{{ .RSSlink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />{{ end }} +</head> |