mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 23:48:27 -04:00
fix breaking changes in Hugo 0.57
This commit is contained in:
parent
9a979a3225
commit
4cb15cbac0
@ -13,9 +13,9 @@ pygmentsCodeFences = true
|
|||||||
|
|
||||||
# enableGitInfo = true # messed up sitemap.xml timestamps
|
# enableGitInfo = true # messed up sitemap.xml timestamps
|
||||||
|
|
||||||
[taxonomies]
|
[outputs]
|
||||||
tag = ""
|
home = ["HTML", "RSS"]
|
||||||
category = ""
|
section = ["HTML"]
|
||||||
|
|
||||||
[sitemap]
|
[sitemap]
|
||||||
filename = "sitemap.xml"
|
filename = "sitemap.xml"
|
||||||
|
@ -2,5 +2,5 @@
|
|||||||
title = "Jake Jarvis – Web & Mobile Developer in Boston, MA"
|
title = "Jake Jarvis – Web & Mobile Developer in Boston, MA"
|
||||||
description = "I'm a full-stack web engineer and mobile developer based in Boston, Massachusetts specializing in modern JavaScript frameworks and iOS apps."
|
description = "I'm a full-stack web engineer and mobile developer based in Boston, Massachusetts specializing in modern JavaScript frameworks and iOS apps."
|
||||||
type = "home"
|
type = "home"
|
||||||
date = "2019-08-10"
|
date = "2019-08-26"
|
||||||
+++
|
+++
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#message {
|
div#message {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
max-width: 400px;
|
max-width: 400px;
|
||||||
@ -21,26 +20,22 @@
|
|||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
box-shadow: 0 1px 3px #e0e0e0, 0 1px 2px #888;
|
box-shadow: 0 1px 3px #e0e0e0, 0 1px 2px #888;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#message h1 {
|
div#message h1 {
|
||||||
margin: 16px 0;
|
margin: 16px 0;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#message p {
|
div#message p {
|
||||||
margin: 16px 0;
|
margin: 16px 0;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
line-height: 140%;
|
line-height: 140%;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#message a {
|
div#message a {
|
||||||
color: #0077a7;
|
color: #0077a7;
|
||||||
}
|
}
|
||||||
div#message a:hover {
|
div#message a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 600px) {
|
@media (max-width: 600px) {
|
||||||
body, div#message {
|
body, div#message {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
@ -53,7 +48,7 @@
|
|||||||
<body id="error">
|
<body id="error">
|
||||||
<div id="message">
|
<div id="message">
|
||||||
<h1>Welp, this is awkward... 😳</h1>
|
<h1>Welp, this is awkward... 😳</h1>
|
||||||
<p>The file you asked for wasn't found in this neck of the woods. Please check the URL for mistakes and try again, or <a href="https://jarv.is/">go home</a>.</p>
|
<p>The file you asked for wasn't found in this neck of the woods. Please check the URL for mistakes and try again, or take your ball and <a href="{{ .Site.BaseURL }}">go home</a>.</p>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
var _paq = _paq || [];
|
var _paq = _paq || [];
|
@ -1,7 +1,7 @@
|
|||||||
{{ partial "header.html" . }}
|
{{ partial "header.html" . }}
|
||||||
{{ partial "blog-header.html" . }}
|
{{ partial "blog-header.html" . }}
|
||||||
<main id="archive">
|
<main id="archive">
|
||||||
{{ range .Data.Pages.GroupByDate "2006" }}
|
{{ range (where .Site.RegularPages "Type" "notes").GroupByDate "2006" }}
|
||||||
<section class="year">
|
<section class="year">
|
||||||
<h2>{{ .Key }}</h2>
|
<h2>{{ .Key }}</h2>
|
||||||
<ul>
|
<ul>
|
||||||
@ -16,4 +16,4 @@
|
|||||||
{{ end }}
|
{{ end }}
|
||||||
</main>
|
</main>
|
||||||
{{ partial "blog-footer.html" . }}
|
{{ partial "blog-footer.html" . }}
|
||||||
{{ partial "footer.html" . }}
|
{{ partial "footer.html" . }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user