summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--src/index.html26
2 files changed, 28 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ebf6efb..d64c7e7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-HTML := journal.html about.html
+HTML := index.html journal.html about.html
CSS := style.css
RESOURCES := glider.png
@@ -10,7 +10,7 @@ FILES := $(HTML) $(CSS) sitemap.xml pgp-key.txt \
site: $(addprefix build/, $(FILES))
clean:
- rm -rf build/*
+ -rm $(addprefix build/, $(FILES))
build/%.html: src/%.html $(PARTIALS)
@./scripts/awink $< $@
diff --git a/src/index.html b/src/index.html
new file mode 100644
index 0000000..a848742
--- /dev/null
+++ b/src/index.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <title>~kyrias/</title>
+%include partials/meta.html
+</head>
+<body itemscope itemtype="http://schema.org/WebPage">
+ <header>
+%include partials/nav.html
+ <h1>~kyrias/</h1>
+ </header>
+
+ <article id="about" class="botborder">
+ <p>
+ Hello there, welcome to my empty corner of the Internet. There isn't really anything up here yet, and there likely never will be either for that matter, but feel free to check out my <a href="journal.html">journal</a> where I guess I’m supposed to actually write entries, and my <a href="about.html">about</a> page if you for some reason want to read more about me.
+ </p>
+
+ <p id="last-upd">Last updated <time itemprop="dateModified" datetime="2014-10-10">2014-10-10</time></p>
+ <p id="author"><a rel="author" href="about.html">Johannes Löthberg</a></p>
+
+ </article>
+
+%include partials/footer.html
+</body>
+</html>