Skip to content

Commit 155f263

Browse files
kwiliartybep
authored andcommitted
Fix spf13#47: adds hook_head_end partial
1 parent 5814b3e commit 155f263

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

layouts/partials/head.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,14 @@
1919
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/poole.css">
2020
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/syntax.css">
2121
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/hyde.css">
22-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Abril+Fatface|PT+Sans:400,400i,700">
22+
{{ partial "head_fonts.html" . }}
2323

2424
<!-- Icons -->
2525
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144-precomposed.png">
2626
<link rel="shortcut icon" href="/favicon.png">
2727

2828
<!-- RSS -->
2929
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
30+
31+
{{ partial "hook_head_end.html" . }}
3032
</head>

layouts/partials/head_fonts.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Abril+Fatface|PT+Sans:400,400i,700">

layouts/partials/hook_head_end.html

Whitespace-only changes.

0 commit comments

Comments
 (0)