mirror of
https://github.com/gohugoio/hugo.git
synced 2024-12-02 09:49:11 -05:00
efc98a3b1f
- Convert config.yaml to config.toml to follow what "hugo new site /path/to/site" generates - Rename layouts/chrome to layouts/partials - Convert "template" calls to "partial" calls - Minor revisions to the text in example content - Upgrade Bootswatch Yeti theme (3.1.1+1 → to 3.2.0+3) - Upgrade Font Awesome (4.0.3 → 4.2.0) - Upgrade jQuery (1.11.0 → 1.11.1)
10 lines
359 B
HTML
10 lines
359 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" . }}
|
|
{{ if .RSSlink }}<link href="{{ .RSSlink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />{{ end }}
|
|
</head>
|