summaryrefslogtreecommitdiff
path: root/themes/neonxp/layouts/home.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/neonxp/layouts/home.html')
-rw-r--r--themes/neonxp/layouts/home.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/themes/neonxp/layouts/home.html b/themes/neonxp/layouts/home.html
new file mode 100644
index 0000000..1f26b97
--- /dev/null
+++ b/themes/neonxp/layouts/home.html
@@ -0,0 +1,21 @@
+{{ define "main" }}
+<article>
+ <h1>{{ .Title }}</h1>
+ {{ .Content }}
+</article>
+<div class="h-feed">
+ {{ range .Pages }}
+ <article class="h-entry">
+ <h2 class="p-name"><a class="u-url" href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
+ {{if .Date }}
+ {{ $dateMachine := .Date | time.Format "2006-01-02 15:04:05-07:00" }}
+ {{ $dateHuman := .Date | time.Format ":date_long" }}
+ <time class="dt-published" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
+ {{end}}
+ <div class="p-summary">
+ {{ .Summary }}
+ </div>
+ </article>
+ {{ end }}
+</div>
+{{ end }} \ No newline at end of file