From e48a9d406fbd5489dc25bcdd92b1df2b0c862105 Mon Sep 17 00:00:00 2001 From: Carlos Sosa Date: Tue, 28 Aug 2018 00:22:45 -0700 Subject: Initial commit --- templates/archive.html | 1 + templates/default.html | 33 +++++++++++++++++++++++++++++++++ templates/post-list.html | 8 ++++++++ templates/post.html | 41 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 83 insertions(+) create mode 100644 templates/archive.html create mode 100644 templates/default.html create mode 100644 templates/post-list.html create mode 100644 templates/post.html (limited to 'templates') diff --git a/templates/archive.html b/templates/archive.html new file mode 100644 index 0000000..58ec89e --- /dev/null +++ b/templates/archive.html @@ -0,0 +1 @@ +$partial("templates/post-list.html")$ diff --git a/templates/default.html b/templates/default.html new file mode 100644 index 0000000..c3dd400 --- /dev/null +++ b/templates/default.html @@ -0,0 +1,33 @@ + + + + + + + My Hakyll Blog - $title$ + + + + + +
+

$title$

+ $body$ +
+ + + + diff --git a/templates/post-list.html b/templates/post-list.html new file mode 100644 index 0000000..32a8d3f --- /dev/null +++ b/templates/post-list.html @@ -0,0 +1,8 @@ + + $for(posts)$ + + + + + $endfor$ +
$date$$title$
diff --git a/templates/post.html b/templates/post.html new file mode 100644 index 0000000..72cbcb0 --- /dev/null +++ b/templates/post.html @@ -0,0 +1,41 @@ + + + +$title$ in gnusosa + + + + + + + + + + + + + +
+

+ Carlos Sosa +

+ + + +
+ +

+ $title$ +

+ +
+ $body$ +
+
+ +
+
+ + -- cgit v1.3-2-g0d8e