diff options
author | Kevin Wiliarty | 2018-02-24 23:12:18 -0500 |
---|---|---|
committer | Bjørn Erik Pedersen | 2018-02-27 01:08:00 +0100 |
commit | 155f263d2fb21ef6852826f1e5dd3cb11f12425e (patch) | |
tree | 44f33baaced2128260544e8a791a8db56882e2f8 /layouts/partials | |
parent | 5814b3e80c17336f1b02c3666914fd1445d31378 (diff) | |
download | hyde-155f263d2fb21ef6852826f1e5dd3cb11f12425e.tar.lz hyde-155f263d2fb21ef6852826f1e5dd3cb11f12425e.tar.zst hyde-155f263d2fb21ef6852826f1e5dd3cb11f12425e.zip |
Fix #47: adds hook_head_end partial
Diffstat (limited to 'layouts/partials')
-rw-r--r-- | layouts/partials/head.html | 4 | ||||
-rw-r--r-- | layouts/partials/head_fonts.html | 1 | ||||
-rw-r--r-- | layouts/partials/hook_head_end.html | 0 |
3 files changed, 4 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 99806aa..20baf8f 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -19,7 +19,7 @@ <link rel="stylesheet" href="{{ .Site.BaseURL }}css/poole.css"> <link rel="stylesheet" href="{{ .Site.BaseURL }}css/syntax.css"> <link rel="stylesheet" href="{{ .Site.BaseURL }}css/hyde.css"> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Abril+Fatface|PT+Sans:400,400i,700"> + {{ partial "head_fonts.html" . }} <!-- Icons --> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144-precomposed.png"> @@ -27,4 +27,6 @@ <!-- RSS --> <link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" /> + + {{ partial "hook_head_end.html" . }} </head> diff --git a/layouts/partials/head_fonts.html b/layouts/partials/head_fonts.html new file mode 100644 index 0000000..4729eb2 --- /dev/null +++ b/layouts/partials/head_fonts.html @@ -0,0 +1 @@ + <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Abril+Fatface|PT+Sans:400,400i,700"> diff --git a/layouts/partials/hook_head_end.html b/layouts/partials/hook_head_end.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/layouts/partials/hook_head_end.html |