diff options
author | C. Lente <7017340+clente@users.noreply.github.com> | 2023-02-10 17:32:44 -0300 |
---|---|---|
committer | C. Lente <7017340+clente@users.noreply.github.com> | 2023-02-10 17:32:44 -0300 |
commit | d78444cd19621616ddf8aef87a630e30ca9ee950 (patch) | |
tree | fc8cdc672490a8c4e567b32f9eaebc639ff7a162 /layouts/_default | |
parent | 6e341272f5c3d92be25e1997a8deb44c3f5cd02a (diff) | |
download | hugo-bearcub-d78444cd19621616ddf8aef87a630e30ca9ee950.tar.gz hugo-bearcub-d78444cd19621616ddf8aef87a630e30ca9ee950.tar.bz2 |
Separate sintax from style
Diffstat (limited to 'layouts/_default')
-rw-r--r-- | layouts/_default/baseof.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 1f30b5d..2f06d5a 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -11,8 +11,11 @@ {{- partial "seo_tags.html" . -}} <meta name="referrer" content="no-referrer-when-downgrade" /> - {{ $css := resources.Get "style.css" | minify }} - <link href="{{ $css.RelPermalink }}" rel="stylesheet"> + {{ $style := resources.Get "style.css" | minify }} + <link href="{{ $style.RelPermalink }}" rel="stylesheet"> + + {{ $syntax := resources.Get "syntax.css" | minify }} + <link href="{{ $syntax.RelPermalink }}" rel="stylesheet"> {{ with .OutputFormats.Get "rss" -}} {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} |