Created
January 27, 2020 09:12
-
-
Save inwardmovement/186cd4eb5cc468fde4a2347fbb003349 to your computer and use it in GitHub Desktop.
Inline styles with Hugo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ with .Site.IsServer }} | |
<!-- Do not inline styles --> | |
<link rel="stylesheet" href="{{ $mainCSS.RelPermalink }}"> | |
{{ end }} | |
<style> | |
{{ with or (getenv "PREVIEW") (getenv "PRODUCTION") }} | |
<!-- Inline styles --> | |
{{ $mainCSS.Content | safeCSS }} | |
{{ end }} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment