build: Remove PostCSS filtering
This commit is contained in:
parent
570091242d
commit
a4eaf8cf69
1 changed files with 5 additions and 9 deletions
|
@ -9,7 +9,9 @@
|
|||
{{ end }}
|
||||
<title>{{ .Title }} - {{ .Site.Title }}</title>
|
||||
{{ $twbssass := resources.Get "styles/millironx.css" }}
|
||||
{{ $twbssass = $twbssass | resources.PostCSS | minify | resources.PostProcess }}
|
||||
{{ $twbssass =
|
||||
$twbssass | minify
|
||||
}}
|
||||
<link href="{{ $twbssass.RelPermalink }}" rel="stylesheet" />
|
||||
</head>
|
||||
|
||||
|
@ -25,11 +27,7 @@
|
|||
</header>
|
||||
<div class="row">
|
||||
{{ partial "sidebar" . }}
|
||||
<main>
|
||||
{{ block "main" . }}
|
||||
{{ .Content }}
|
||||
{{ end }}
|
||||
</main>
|
||||
<main>{{ block "main" . }}{{ .Content }}{{ end }}</main>
|
||||
</div>
|
||||
<footer>
|
||||
{{ $brandedbull := resources.Get "graphics/brandedbull.svg" }}
|
||||
|
@ -48,9 +46,7 @@
|
|||
</p>
|
||||
</footer>
|
||||
|
||||
{{ with .Params.validation }}
|
||||
{{- partial "form-validation.html" -}}
|
||||
{{ end }}
|
||||
{{ with .Params.validation }}{{- partial "form-validation.html" -}}{{ end }}
|
||||
|
||||
|
||||
<!-- GoatCounter -->
|
||||
|
|
Loading…
Reference in a new issue