1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-18 22:05:29 -04:00

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

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" . -}}

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 }}

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 }}

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 }}

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 }}

View File

@@ -1,5 +1,5 @@
{{ define "main" }}
<main id="home">
<section class="page" id="home">
{{ .Content }}
</main>
</section>
{{ end }}

View File

@@ -1,4 +1,4 @@
{{ $style := resources.Get "sass/main.scss" | resources.ExecuteAsTemplate "sass/main.scss" . | resources.ToCSS (dict "targetPath" "css/main.css") | resources.PostCSS (dict "config" "postcss.config.js") }}
{{ $style := resources.Get "sass/main.scss" | resources.ExecuteAsTemplate "sass/main.scss" . | resources.ToCSS (dict "targetPath" "css/main.css" "includePaths" (slice "node_modules/")) | resources.PostCSS (dict "config" "postcss.config.js") }}
<link rel="stylesheet" href="{{ $style.Permalink }}">
{{/* Page-specific styles set via front matter, scoped via SCSS and inlined */}}