aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2023-08-20 14:28:07 -0500
committerMichael Hunteman <michael@huntm.net>2023-08-20 14:28:07 -0500
commitc3fdaeffb6d6fe4f42614f4b4b5e6c14d131bd77 (patch)
treef6b86edcc4c48512c020b0bc4b38287d725e0404 /layouts/_default
parentf8fd31d289f54de5519048992c4a606c38924e44 (diff)
Add avatar
Diffstat (limited to 'layouts/_default')
-rw-r--r--layouts/_default/list.html5
-rw-r--r--layouts/_default/single.html1
2 files changed, 4 insertions, 2 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 7017822..0171579 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -4,6 +4,7 @@
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>{{ .Title }}</title>
+ <link rel="icon" type="image/png" href="/avatar.png">
{{ $style := resources.Get "main.scss" | resources.ToCSS | resources.Minify | resources.Fingerprint }}
<link rel="stylesheet" href="{{ $style.RelPermalink }}"/>
</head>
@@ -13,11 +14,11 @@
<h2>{{ .Title }}</h2>
{{ range .Pages }}
<div class="post">
- <h3>
+ <h2>
<a href="{{ .Permalink }}">
{{ .Title }}
</a>
- </h3>
+ </h2>
<small>
{{ .Date.Format "January 2, 2006" }}
</small>
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index f792e75..d82ed2c 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -4,6 +4,7 @@
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>{{ .Title }}</title>
+ <link rel="icon" type="image/png" href="/avatar.png">
{{ $style := resources.Get "main.scss" | resources.ToCSS | resources.Minify | resources.Fingerprint }}
<link rel="stylesheet" href="{{ $style.RelPermalink }}"/>
</head>