mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
d61bee5e09
The example blog had not been updated for some time and I had to restructure it a little bit. Fixes #6752 Changed tag and category directory structure
13 lines
No EOL
402 B
HTML
13 lines
No EOL
402 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
{{ partial "meta.html" . }}
|
|
|
|
<title>{{ .Title }} - {{ .Site.BaseURL }}</title>
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
{{ partial "header.includes.html" . }}
|
|
{{ with .OutputFormats.Get "RSS" -}}
|
|
{{ printf "<link href=%q rel=\"alternate\" type=%q title=%q />" .Permalink .MediaType $.Site.Title | safeHTML }}
|
|
{{- end }}
|
|
</head> |