run initial SCSS refactoring through percy

This commit is contained in:
2020-07-07 08:57:26 -04:00
parent aa3973f570
commit d970c031a5
20 changed files with 112 additions and 53 deletions
+3 -3
View File
@@ -6,11 +6,11 @@
<head>
{{ partial "head/_head" . }}
</head>
<body class="light">
<body class="{{ .Page.Kind }} light">
{{ partialCached "page/header" . }}
<div id="wrap">
<main>
{{ block "main" . }}{{ end }}
</div>
</main>
{{ partial "page/footer" . }}
{{ partial "scripts/_bundle" . -}}
{{ partial "scripts/shortcodes" . -}}
+3 -3
View File
@@ -1,9 +1,9 @@
{{ define "main" }}
<main id="etc">
<section class="page" id="etc">
<h1><a class="no-underline" href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
<div id="content">
{{ .Content }}
{{ .Content }}
</div>
</main>
</section>
{{ end }}
+2 -2
View File
@@ -1,5 +1,5 @@
{{ define "main" }}
<main id="list">
<section class="page" id="list">
{{- with .Pages }}
{{- range .GroupByDate "2006" }}
<section class="year">
@@ -17,5 +17,5 @@
</section>
{{- end }}
{{- end }}
</main>
</section>
{{ end }}
+2 -2
View File
@@ -1,5 +1,5 @@
{{ define "main" }}
<main id="single">
<section class="page" id="single">
<article>
<div id="meta">
<a class="no-underline" href="{{ .Permalink }}" title="{{ .Date.Format "Mon, Jan 2 2006 3:04:05 PM MST" }}">{{ .Date.Format "January 2, 2006" }}</a>{{ with .Scratch.Get "sourceURL" }}<span class="dash"></span><a class="no-underline" href="{{ . | safeURL }}" title="Edit this post on GitHub" target="_blank" rel="noopener">Improve This Post</a>{{ end }}
@@ -11,5 +11,5 @@
{{ .Content }}
</div>
</article>
</main>
</section>
{{ end }}
+2 -2
View File
@@ -1,5 +1,5 @@
{{ define "main" }}
<main id="video">
<section class="page" id="video">
<h1><a class="no-underline" href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
<video
@@ -15,5 +15,5 @@
</video>
{{ .Content }}
</main>
</section>
{{ end }}