summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-05-10 20:18:14 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2014-05-10 20:18:14 +0200
commit19ab76234937f330a6c656857e2b3a7541f2f0b0 (patch)
tree48d49205e5f63ee66c30afbd268b1b4bb3c5d7dd
parent0090915a48c8353e2cb3637e59e5a31f6c449fa8 (diff)
downloadwebsite-19ab76234937f330a6c656857e2b3a7541f2f0b0.tar.xz
Separate meta info to head.html and moved includes to partials/
-rw-r--r--blog.html10
-rw-r--r--contact.html10
-rw-r--r--index.html10
-rw-r--r--partials/footer.html (renamed from footer.html)0
-rw-r--r--partials/head.html8
-rw-r--r--partials/header.html (renamed from header.html)0
6 files changed, 17 insertions, 21 deletions
diff --git a/blog.html b/blog.html
index 1184f3e..d222094 100644
--- a/blog.html
+++ b/blog.html
@@ -1,23 +1,19 @@
<!DOCTYPE html>
<html>
<head>
-<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-<meta name="keywords" content="Johannes Löthberg, kyrias, demize, Arch Linux OP" />
-<meta name="description" content="Johannes Löthberg's little home on the Internet" />
-<meta name="author" content="Johannes Löthberg" />
-<link rel="meta" type="application/rdf+xml" title="FOAF" href="foaf.rdf" />
+<!--# include file="partials/head.html" -->
<title>~/blog/</title>
<link href="main.css" rel="stylesheet">
</head>
<body>
-<!--# include file="header.html" -->
+<!--# include file="partials/header.html" -->
<div class="content">
<section id="blog">
<h2>Blog</h2>
<p>These are not the droids you are looking for.</p>
</section>
</div>
-<!--# include file="footer.html" -->
+<!--# include file="partials/footer.html" -->
</body>
</html>
diff --git a/contact.html b/contact.html
index 8b853f3..89c8a8a 100644
--- a/contact.html
+++ b/contact.html
@@ -1,17 +1,13 @@
<!DOCTYPE html>
<html>
<head>
-<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-<meta name="keywords" content="Johannes Löthberg, kyrias, demize, Arch Linux OP" />
-<meta name="description" content="Johannes Löthberg's little home on the Internet" />
-<meta name="author" content="Johannes Löthberg" />
-<link rel="meta" type="application/rdf+xml" title="FOAF" href="foaf.rdf" />
+<!--# include file="partials/head.html" -->
<title>~/contact/</title>
<link href="main.css" rel="stylesheet">
</head>
<body>
-<!--# include file="header.html" -->
+<!--# include file="partials/header.html" -->
<div class="content">
<section id="contact">
<h2>Contact</h2>
@@ -31,6 +27,6 @@
</p>
</section>
</div>
-<!--# include file="footer.html" -->
+<!--# include file="partials/footer.html" -->
</body>
</html>
diff --git a/index.html b/index.html
index 962595a..edf9e9b 100644
--- a/index.html
+++ b/index.html
@@ -1,18 +1,14 @@
<!DOCTYPE html>
<html>
<head>
-<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-<meta name="keywords" content="Johannes Löthberg, kyrias, demize, Arch Linux OP" />
-<meta name="description" content="Johannes Löthberg's little home on the Internet" />
-<meta name="author" content="Johannes Löthberg" />
-<link rel="meta" type="application/rdf+xml" title="FOAF" href="foaf.rdf" />
+<!--# include file="partials/head.html" -->
<title>~/</title>
<link href="main.css" rel="stylesheet">
</head>
<body>
-<!--# include file="header.html" -->
+<!--# include file="partials/header.html" -->
<div class="content">
<section id="about">
<h2>About me</h2>
@@ -42,6 +38,6 @@
</div>
</section>
</div>
-<!--# include file="footer.html" -->
+<!--# include file="partials/footer.html" -->
</body>
</html>
diff --git a/footer.html b/partials/footer.html
index 2ae4f32..2ae4f32 100644
--- a/footer.html
+++ b/partials/footer.html
diff --git a/partials/head.html b/partials/head.html
new file mode 100644
index 0000000..42d2fe6
--- /dev/null
+++ b/partials/head.html
@@ -0,0 +1,8 @@
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<meta name="keywords" content="Johannes Löthberg, kyrias, demize, Arch Linux OP" />
+<meta name="description" content="Johannes Löthberg's little home on the Internet" />
+<meta name="author" content="Johannes Löthberg" />
+
+<link rel="me author" href="https://plus.google.com/+JohannesLothberg" />
+<link rel="publisher" href="https://plus.google.com/+JohannesLothberg" />
+<link rel="meta" type="application/rdf+xml" href="foaf.rdf" />
diff --git a/header.html b/partials/header.html
index 14485bd..14485bd 100644
--- a/header.html
+++ b/partials/header.html