diff options
author | Caio Lente <7017340+clente@users.noreply.github.com> | 2024-03-04 17:16:00 -0300 |
---|---|---|
committer | Caio Lente <7017340+clente@users.noreply.github.com> | 2024-03-04 17:16:00 -0300 |
commit | d0b36f11bd68eb21f7c069179e62035e47253c47 (patch) | |
tree | 73c1d1c02ec5ffd35417d2b646421e51854d5981 /layouts | |
parent | f71c3966872c5f1ff34a7ceb4d9e720b9fad17a5 (diff) | |
download | hugo-bearcub-d0b36f11bd68eb21f7c069179e62035e47253c47.tar.gz hugo-bearcub-d0b36f11bd68eb21f7c069179e62035e47253c47.tar.bz2 |
Choose between original and herman styles
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/_default/baseof.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 475d6f9..294749a 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 := print (default "original" .Site.Params.themeStyle) ".css" | resources.Get | minify }} <link href="{{ $style.RelPermalink }}" rel="stylesheet"> {{ if (.Page.Store.Get "hasCodeBlock") }} |