diff options
author | C. Lente <7017340+clente@users.noreply.github.com> | 2023-02-01 15:06:05 -0300 |
---|---|---|
committer | C. Lente <7017340+clente@users.noreply.github.com> | 2023-02-01 15:06:05 -0300 |
commit | 3ec95503252645b87c625df10a8ac44d04563166 (patch) | |
tree | 0304691be8b7859d7e5b525807d6c0e082873553 /layouts/_default/baseof.html | |
parent | 76ca2f889f35035484482bf7f9715149a5b40127 (diff) | |
download | hugo-bearcub-3ec95503252645b87c625df10a8ac44d04563166.tar.gz hugo-bearcub-3ec95503252645b87c625df10a8ac44d04563166.tar.bz2 |
Bring files from personal blog
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r-- | layouts/_default/baseof.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 6bce2dc..1f30b5d 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -11,12 +11,13 @@ {{- partial "seo_tags.html" . -}} <meta name="referrer" content="no-referrer-when-downgrade" /> + {{ $css := resources.Get "style.css" | minify }} + <link href="{{ $css.RelPermalink }}" rel="stylesheet"> + {{ with .OutputFormats.Get "rss" -}} {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} {{ end -}} - {{- partial "style.html" . -}} - <!-- A partial to be overwritten by the user. Simply place a custom_head.html into your local /layouts/partials-directory --> |