aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2018-08-17 22:30:27 -0600
committerKenny Ballou <kballou@devnulllabs.io>2018-08-19 08:11:29 -0600
commitc818f2b61c75195cf7adb542dd443e37feea7b59 (patch)
tree6f7c89e834e1973209187abd668eaa360cb367a6 /templates
parent28da2aee6b587e751d1ee60d9da80d9c9f200181 (diff)
downloadblog.kennyballou.com-c818f2b61c75195cf7adb542dd443e37feea7b59.tar.gz
blog.kennyballou.com-c818f2b61c75195cf7adb542dd443e37feea7b59.tar.xz
Convert to Org-mode and Pandoc
Create some fairly straight-forward conversion scripts to generate a static site from Emacs Org-mode files using Pandoc to generate HTML files.
Diffstat (limited to 'templates')
-rw-r--r--templates/html_footer.html14
-rw-r--r--templates/html_header.html23
-rw-r--r--templates/html_sub_header.html42
3 files changed, 79 insertions, 0 deletions
diff --git a/templates/html_footer.html b/templates/html_footer.html
new file mode 100644
index 0000000..9a99467
--- /dev/null
+++ b/templates/html_footer.html
@@ -0,0 +1,14 @@
+<footer>
+ <div id="footer">
+ <div class="colleft">
+ <p>&copy; 2015-2018 Kenny Ballou.
+ <a href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Some rights
+ reserved.</a></p>
+ </div>
+ <div class="colright">
+ <p>Powered by <a href="https://gnu.org">GNU/Linux</a></p>
+ </div>
+ </div>
+</footer>
+</body>
+</html>
diff --git a/templates/html_header.html b/templates/html_header.html
new file mode 100644
index 0000000..9357d2d
--- /dev/null
+++ b/templates/html_header.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+
+ <meta name="author" content="Kenny Ballou">
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
+
+ <base href="/" />
+ <title>~kb/blog</title>
+
+ <link rel="canonical" href="" />
+ <link href="/index.xml" rel="alternate" type="application/rss+xml"
+ title="~kb/blog" />
+
+ <link rel="stylesheet"
+ href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
+ <script type="text/javascript" async
+ src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML"></script>
+
+ <link rel="stylesheet" href="/css/site.css" />
+ <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
+</head>
diff --git a/templates/html_sub_header.html b/templates/html_sub_header.html
new file mode 100644
index 0000000..a1f3e03
--- /dev/null
+++ b/templates/html_sub_header.html
@@ -0,0 +1,42 @@
+<div id="header">
+ <div class="colleft">
+ <header>
+ <a class="fade" href="/">~kballou</a>
+ </header>
+ </div>
+ <div class="colright">
+ <header>
+ <div id="author">
+ <a href="https://git.devnulllabs.io"
+ target="_blank"
+ rel="noopener noreferrer">
+ <i class="fade fa fa-git-square fa-1x"></i>
+ </a>
+ <a href="https://github.com/kennyballou"
+ target="_blank"
+ rel="noopener noreferrer">
+ <i class="fade fa fa-github-square fa-1x"></i>
+ </a>
+ <a href="https://bitbucket.org/kballou"
+ target="_blank"
+ rel="noopener noreferrer">
+ <i class="fade fa fa-bitbucket-square fa-1x"></i>
+ </a>
+ <a href="https://plus.google.com/+KennyBallou"
+ target="_blank"
+ rel="noopener noreferrer">
+ <i class="fade fa fa-google-plus-square fa-1x"></i>
+ </a>
+ <a href="https://twitter.com/kennyballou"
+ target="_blank"
+ rel="noopener noreferrer">
+ <i class="fade fa fa-twitter-square fa-1x"></i>
+ </a>
+ <a href="/index.xml" rel="alternate"
+ type="application/rss+xml">
+ <i class="fade fa fa-rss-square fa-1x"></i>
+ </a>
+ </div>
+ </header>
+ </div>
+</div>