hugo/examples/blog/layouts/partials/header.html

11 lines
359 B
HTML
Raw Normal View History

2014-04-12 16:04:17 -04:00
<!doctype html>
<html lang="en">
<head>
{{ partial "meta.html" . }}
2014-04-12 16:04:17 -04:00
<title>{{ .Title }} - {{ .Site.BaseURL }}</title>
2014-04-12 16:04:17 -04:00
<link rel="canonical" href="{{ .Permalink }}">
{{ partial "header.includes.html" . }}
2014-04-12 16:04:17 -04:00
{{ if .RSSlink }}<link href="{{ .RSSlink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />{{ end }}
</head>