diff options
author | C. Lente <7017340+clente@users.noreply.github.com> | 2023-04-25 17:57:50 -0300 |
---|---|---|
committer | C. Lente <7017340+clente@users.noreply.github.com> | 2023-04-25 17:57:50 -0300 |
commit | f97270c33147199c15718f4b58b68541b824d56a (patch) | |
tree | f1b48373d42f4400a238f1f5e01eb021eef00109 /layouts | |
parent | f26d122b2ad0cd3e3299de776b69e69d31486895 (diff) | |
download | hugo-bearcub-f97270c33147199c15718f4b58b68541b824d56a.tar.gz hugo-bearcub-f97270c33147199c15718f4b58b68541b824d56a.tar.bz2 |
Add Herman style
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/_default/baseof.html | 2 | ||||
-rw-r--r-- | layouts/_default/single.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 7aa0605..0b0cdff 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -11,7 +11,7 @@ {{- partial "seo_tags.html" . -}} <meta name="referrer" content="no-referrer-when-downgrade" /> - {{ $style := resources.Get "style.css" | minify }} + {{ $style := resources.Get "herman.css" | minify }} <link href="{{ $style.RelPermalink }}" rel="stylesheet"> {{ $syntax := resources.Get "syntax.css" | minify }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html index cd6b095..6c6ee69 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -14,7 +14,7 @@ </content> <p> {{ range (.GetTerms "tags") }} - <a class="blog-tags" href="{{ .Permalink }}">#{{ .LinkTitle }}</a> + <a class="blog-tags" href="{{ .Permalink }}">#{{ .LinkTitle }}</a> {{ end }} </p> {{ end }} |