baseof.html 682 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>
  6. {{ .Title }}
  7. </title>
  8. <meta name="description" content="{{ .Description }}" />
  9. {{/* styles */}}
  10. {{ $options := dict "inlineImports" true }}
  11. {{ $styles := resources.Get "css/styles.css" }}
  12. {{ $styles = $styles | resources.PostCSS $options }}
  13. {{ if hugo.IsProduction }}
  14. {{ $styles = $styles | minify | fingerprint | resources.PostProcess }}
  15. {{ end }}
  16. <link href="{{ $styles.RelPermalink }}" rel="stylesheet" />
  17. </head>
  18. <body class="my-10">
  19. <div class="container px-4 lg:mx-auto">
  20. {{ block "main" . }}{{ end }}
  21. </div>
  22. </body>
  23. </html>