mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-07-21 00:21:16 -04:00
preparing for blog integration
This commit is contained in:
10
config.toml
10
config.toml
@@ -1,13 +1,3 @@
|
|||||||
baseURL = "https://jarv.is/"
|
baseURL = "https://jarv.is/"
|
||||||
languageCode = "en-us"
|
languageCode = "en-us"
|
||||||
title = "Jake Jarvis"
|
title = "Jake Jarvis"
|
||||||
|
|
||||||
disableKinds = ["taxonomy","taxonomyTerm","sitemap","RSS"]
|
|
||||||
|
|
||||||
[taxonomies]
|
|
||||||
tag = ""
|
|
||||||
category = ""
|
|
||||||
|
|
||||||
[permalinks]
|
|
||||||
post = "/:year/:month/:day/:slug"
|
|
||||||
|
|
||||||
|
4
content/_index.md
Normal file
4
content/_index.md
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
+++
|
||||||
|
title = "Jake Jarvis — Web & Mobile Developer in Boston, MA"
|
||||||
|
description = "I'm a 26-year-old web and mobile entrepreneur living in Boston, Massachusetts."
|
||||||
|
+++
|
8
content/notes/asdf.md
Normal file
8
content/notes/asdf.md
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
title: "Asdf"
|
||||||
|
slug: "asdf-hello-world"
|
||||||
|
date: 2018-08-03T19:04:31-04:00
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
asdfasdfasdf
|
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
title: "First Post"
|
|
||||||
date: 2018-04-28T15:17:14-04:00
|
|
||||||
draft: true
|
|
||||||
---
|
|
||||||
|
|
4
layouts/_default/baseof.html
Normal file
4
layouts/_default/baseof.html
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{{ partial "header.html" . }}
|
||||||
|
{{ block "main" . }}{{ end }}
|
||||||
|
|
||||||
|
{{ partial "footer.html" . }}
|
@@ -1,4 +1,4 @@
|
|||||||
{{ partial "header.html" . }}
|
{{ define "main" }}
|
||||||
<div id="container">
|
<div id="container">
|
||||||
<img id="me" src="{{ "me.jpg" | relURL }}" alt="Jake Jarvis" title="Jake Jarvis">
|
<img id="me" src="{{ "me.jpg" | relURL }}" alt="Jake Jarvis" title="Jake Jarvis">
|
||||||
<h1>Hello! I'm Jake. <span id="wave">👋<!--🏻--></span></h1>
|
<h1>Hello! I'm Jake. <span id="wave">👋<!--🏻--></span></h1>
|
||||||
@@ -19,4 +19,4 @@
|
|||||||
<p>If any of this fits with what you're looking for, I'd love to hear from you via <a href="mailto:jakejarvis@gmail.com" id="email">email</a><sup><a href="https://keybase.io/jakejarvis/pgp_keys.asc?fingerprint=87fb4b6006dd1beb3ed47fabd36cb66f4002b25b" id="pgp" target="_blank" rel="noopener noreferrer nofollow">D36C B66F 4002 B25B</a></sup>, <a href="https://twitter.com/messages/compose?recipient_id=229769022" class="twitter" target="_blank" rel="noopener noreferrer nofollow">DM</a>, or <a href="sms:+1-908-444-6655" id="sms">text</a>!</p>
|
<p>If any of this fits with what you're looking for, I'd love to hear from you via <a href="mailto:jakejarvis@gmail.com" id="email">email</a><sup><a href="https://keybase.io/jakejarvis/pgp_keys.asc?fingerprint=87fb4b6006dd1beb3ed47fabd36cb66f4002b25b" id="pgp" target="_blank" rel="noopener noreferrer nofollow">D36C B66F 4002 B25B</a></sup>, <a href="https://twitter.com/messages/compose?recipient_id=229769022" class="twitter" target="_blank" rel="noopener noreferrer nofollow">DM</a>, or <a href="sms:+1-908-444-6655" id="sms">text</a>!</p>
|
||||||
<p id="copyright"><a href="https://web.archive.org/web/*/jakejarvis.com" id="wayback" target="_blank" rel="noopener noreferrer nofollow">© 1999 –</a> 2018 Jake Jarvis. <span>🐼</span> <a href="https://github.com/jakejarvis/jakejarvis.com" id="source" target="_blank" rel="noopener noreferrer nofollow">View source on GitHub.</a></p>
|
<p id="copyright"><a href="https://web.archive.org/web/*/jakejarvis.com" id="wayback" target="_blank" rel="noopener noreferrer nofollow">© 1999 –</a> 2018 Jake Jarvis. <span>🐼</span> <a href="https://github.com/jakejarvis/jakejarvis.com" id="source" target="_blank" rel="noopener noreferrer nofollow">View source on GitHub.</a></p>
|
||||||
</div>
|
</div>
|
||||||
{{ partial "footer.html" . }}
|
{{ end }}
|
4
layouts/notes/single.html
Normal file
4
layouts/notes/single.html
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
<h1>{{ .Title }}</h1>
|
||||||
|
<p>{{ .Content }}</p>
|
||||||
|
{{ end }}
|
@@ -3,22 +3,22 @@
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Jake Jarvis – Web & Mobile Developer in Boston, MA</title>
|
<title>{{ .Title }}</title>
|
||||||
<meta name="description" content="I'm a 26-year-old web and mobile entrepreneur living in Boston, Massachusetts.">
|
<meta name="description" content="{{ .Description }}">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta property="og:title" content="Jake Jarvis — Web & Mobile Developer in Boston, MA">
|
<meta property="og:title" content="{{ .Title }}">
|
||||||
<meta property="og:type" content="website">
|
<meta property="og:type" content="website">
|
||||||
<meta property="og:url" content="{{ .Permalink }}">
|
<meta property="og:url" content="{{ .Permalink }}">
|
||||||
<meta property="og:description" content="I'm a 26-year-old web and mobile entrepreneur living in Boston, Massachusetts.">
|
<meta property="og:description" content="{{ .Description }}">
|
||||||
<meta property="og:image" content="{{ "me.jpg" | absURL }}">
|
<meta property="og:image" content="{{ "me.jpg" | absURL }}">
|
||||||
<meta property="fb:admins" content="1329090853">
|
<meta property="fb:admins" content="1329090853">
|
||||||
<meta property="twitter:account_id" content="229769022">
|
<meta property="twitter:account_id" content="229769022">
|
||||||
<meta name="twitter:card" content="summary">
|
<meta name="twitter:card" content="summary">
|
||||||
<meta name="twitter:creator" content="@jakejarvis">
|
<meta name="twitter:creator" content="@jakejarvis">
|
||||||
<meta name="twitter:title" content="Jake Jarvis — Web & Mobile Developer in Boston, MA">
|
<meta name="twitter:title" content="{{ .Title }}">
|
||||||
<meta name="twitter:url" content="{{ .Permalink }}">
|
<meta name="twitter:url" content="{{ .Permalink }}">
|
||||||
<meta name="twitter:description" content="I'm a 26-year-old web and mobile entrepreneur living in Boston, Massachusetts.">
|
<meta name="twitter:description" content="{{ .Description }}">
|
||||||
<meta name="twitter:image" content="{{ "me.jpg" | absURL }}">
|
<meta name="twitter:image" content="{{ "me.jpg" | absURL }}">
|
||||||
<link rel="canonical" href="{{ .Permalink }}">
|
<link rel="canonical" href="{{ .Permalink }}">
|
||||||
<link rel="icon" type="image/png" href="{{ "favicon-128.png" | relURL }}" sizes="128x128">
|
<link rel="icon" type="image/png" href="{{ "favicon-128.png" | relURL }}" sizes="128x128">
|
||||||
|
Reference in New Issue
Block a user