mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-07-19 04:35:31 -04:00
preparing for blog integration
This commit is contained in:
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">
|
||||
<img id="me" src="{{ "me.jpg" | relURL }}" alt="Jake Jarvis" title="Jake Jarvis">
|
||||
<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 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>
|
||||
{{ 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">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Jake Jarvis – Web & Mobile Developer in Boston, MA</title>
|
||||
<meta name="description" content="I'm a 26-year-old web and mobile entrepreneur living in Boston, Massachusetts.">
|
||||
<title>{{ .Title }}</title>
|
||||
<meta name="description" content="{{ .Description }}">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<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: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="fb:admins" content="1329090853">
|
||||
<meta property="twitter:account_id" content="229769022">
|
||||
<meta name="twitter:card" content="summary">
|
||||
<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: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 }}">
|
||||
<link rel="canonical" href="{{ .Permalink }}">
|
||||
<link rel="icon" type="image/png" href="{{ "favicon-128.png" | relURL }}" sizes="128x128">
|
||||
|
Reference in New Issue
Block a user