1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 16:28:28 -04:00

fix breaking changes in Hugo 0.57

This commit is contained in:
Jake Jarvis 2019-08-26 23:29:59 -04:00
parent 9a979a3225
commit 4cb15cbac0
4 changed files with 7 additions and 12 deletions

View File

@ -13,9 +13,9 @@ pygmentsCodeFences = true
# enableGitInfo = true # messed up sitemap.xml timestamps
[taxonomies]
tag = ""
category = ""
[outputs]
home = ["HTML", "RSS"]
section = ["HTML"]
[sitemap]
filename = "sitemap.xml"

View File

@ -2,5 +2,5 @@
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."
type = "home"
date = "2019-08-10"
date = "2019-08-26"
+++

View File

@ -12,7 +12,6 @@
margin: 0;
padding: 0;
}
div#message {
background: #fff;
max-width: 400px;
@ -21,26 +20,22 @@
border-radius: 4px;
box-shadow: 0 1px 3px #e0e0e0, 0 1px 2px #888;
}
div#message h1 {
margin: 16px 0;
font-size: 24px;
font-weight: 300;
}
div#message p {
margin: 16px 0;
font-size: 15px;
line-height: 140%;
}
div#message a {
color: #0077a7;
}
div#message a:hover {
text-decoration: underline;
}
@media (max-width: 600px) {
body, div#message {
background: #fff;
@ -53,7 +48,7 @@
<body id="error">
<div id="message">
<h1>Welp, this is awkward... &#x1F633;</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>
<script>
var _paq = _paq || [];

View File

@ -1,7 +1,7 @@
{{ partial "header.html" . }}
{{ partial "blog-header.html" . }}
<main id="archive">
{{ range .Data.Pages.GroupByDate "2006" }}
{{ range (where .Site.RegularPages "Type" "notes").GroupByDate "2006" }}
<section class="year">
<h2>{{ .Key }}</h2>
<ul>
@ -16,4 +16,4 @@
{{ end }}
</main>
{{ partial "blog-footer.html" . }}
{{ partial "footer.html" . }}
{{ partial "footer.html" . }}