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 }}
|
{{ end }}
|
||||||
<title>{{ .Title }} - {{ .Site.Title }}</title>
|
<title>{{ .Title }} - {{ .Site.Title }}</title>
|
||||||
{{ $twbssass := resources.Get "styles/millironx.css" }}
|
{{ $twbssass := resources.Get "styles/millironx.css" }}
|
||||||
{{ $twbssass = $twbssass | resources.PostCSS | minify | resources.PostProcess }}
|
{{ $twbssass =
|
||||||
|
$twbssass | minify
|
||||||
|
}}
|
||||||
<link href="{{ $twbssass.RelPermalink }}" rel="stylesheet" />
|
<link href="{{ $twbssass.RelPermalink }}" rel="stylesheet" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -25,11 +27,7 @@
|
||||||
</header>
|
</header>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
{{ partial "sidebar" . }}
|
{{ partial "sidebar" . }}
|
||||||
<main>
|
<main>{{ block "main" . }}{{ .Content }}{{ end }}</main>
|
||||||
{{ block "main" . }}
|
|
||||||
{{ .Content }}
|
|
||||||
{{ end }}
|
|
||||||
</main>
|
|
||||||
</div>
|
</div>
|
||||||
<footer>
|
<footer>
|
||||||
{{ $brandedbull := resources.Get "graphics/brandedbull.svg" }}
|
{{ $brandedbull := resources.Get "graphics/brandedbull.svg" }}
|
||||||
|
@ -48,9 +46,7 @@
|
||||||
</p>
|
</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
{{ with .Params.validation }}
|
{{ with .Params.validation }}{{- partial "form-validation.html" -}}{{ end }}
|
||||||
{{- partial "form-validation.html" -}}
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
|
|
||||||
<!-- GoatCounter -->
|
<!-- GoatCounter -->
|
||||||
|
|
Loading…
Reference in a new issue