aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2014-10-11 01:20:54 -0600
committerkballou <kballou@devnulllabs.io>2017-09-02 19:31:44 -0600
commitb0ccdf8eb059f54a0e8cfad51466f12b8cd76451 (patch)
tree51664a702772ca797c2e5e94dac3bc479105a611 /layouts/partials
downloadblog.kennyballou.com-b0ccdf8eb059f54a0e8cfad51466f12b8cd76451.tar.gz
blog.kennyballou.com-b0ccdf8eb059f54a0e8cfad51466f12b8cd76451.tar.xz
Wobsite and Blag of KennyBallou
Diffstat (limited to 'layouts/partials')
-rw-r--r--layouts/partials/author.html21
-rw-r--r--layouts/partials/footer.html13
-rw-r--r--layouts/partials/head_includes.html4
-rw-r--r--layouts/partials/header.html20
-rw-r--r--layouts/partials/meta.html2
-rw-r--r--layouts/partials/subheader.html5
6 files changed, 65 insertions, 0 deletions
diff --git a/layouts/partials/author.html b/layouts/partials/author.html
new file mode 100644
index 0000000..a1c7939
--- /dev/null
+++ b/layouts/partials/author.html
@@ -0,0 +1,21 @@
+<section>
+ <div id="author">
+ <a class="fade" href="about-me/"><h3 class="fade">Kenny Ballou</h3></a>
+ <h4><code>:(){ :|:&amp; };:</code></h4>
+ <a href="https://github.com/kennyballou">
+ <i class="fade fa fa-github-square fa-2x"></i>
+ </a>
+ <a href="https://bitbucket.org/kballou">
+ <i class="fade fa fa-bitbucket-square fa-2x"></i>
+ </a>
+ <a href="http://www.linkedin.com/pub/kenny-ballou/43/1a9/90">
+ <i class="fade fa fa-linkedin-square fa-2x"></i>
+ </a>
+ <a href="https://plus.google.com/+KennyBallou">
+ <i class="fade fa fa-google-plus-square fa-2x"></i>
+ </a>
+ <a href="https://twitter.com/kennyballou">
+ <i class="fade fa fa-twitter-square fa-2x"></i>
+ </a>
+ </div>
+</section>
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
new file mode 100644
index 0000000..5fb79e9
--- /dev/null
+++ b/layouts/partials/footer.html
@@ -0,0 +1,13 @@
+<footer>
+ <div id="footer">
+ <div class="colleft">
+ <p>&copy; 2014 Kenny Ballou. <a
+ href="http://creativecommons.org/licenses/by/3.0/">Some rights
+ reserved.</a></p>
+ </div>
+ <div class="colright">
+ <p>Powered by <a href="http://gohugo.io/">Hugo.</a></p>
+ </div>
+ </div>
+</footer>
+</html>
diff --git a/layouts/partials/head_includes.html b/layouts/partials/head_includes.html
new file mode 100644
index 0000000..2df69ce
--- /dev/null
+++ b/layouts/partials/head_includes.html
@@ -0,0 +1,4 @@
+<link rel="sytlesheet" href="/css/site.css" />
+<link rel="stylesheet"
+ href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
+<script src="{{ .Site.BaseUrl }}/js/site.js"></script>
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..2dc4d46
--- /dev/null
+++ b/layouts/partials/header.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+
+ {{ partial "meta.html" . }}
+
+ <base href="{{ .Site.BaseUrl }}" />
+ <title>{{ .Site.Title }}</title>
+
+ <link rel="canonical" href="{{ .Permalink }}" />
+ {{ if .RSSlink }}
+ <link href="{{ .RSSlink }}" rel="alternate" type="application/rss+xml"
+ title="{{ .Title }}" />
+ {{ end }}
+
+ {{ partial "head_includes.html" . }}
+ <link rel="stylesheet" href="{{ .Site.BaseUrl }}/css/site.css" />
+ <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
+</head>
diff --git a/layouts/partials/meta.html b/layouts/partials/meta.html
new file mode 100644
index 0000000..ec09d41
--- /dev/null
+++ b/layouts/partials/meta.html
@@ -0,0 +1,2 @@
+<meta name="author" content="Kenny Ballou">
+<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
diff --git a/layouts/partials/subheader.html b/layouts/partials/subheader.html
new file mode 100644
index 0000000..3a4aaae
--- /dev/null
+++ b/layouts/partials/subheader.html
@@ -0,0 +1,5 @@
+<div id="header">
+ <header>
+ <a class="fade" href="{{ .Site.BaseUrl }}">~kballou</a>
+ </header>
+</div>