summaryrefslogtreecommitdiff
path: root/layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..127af83
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,22 @@
+{{- /* HOMEPAGE */ -}}
+{{- define "main" }}
+<div class="homepage">
+ <header class="homepage__hero">
+ <h1 class="homepage__title">
+ {{ with .Title }}{{ . }}{{ else }}{{ site.Title | default "Welcome to my Blog!" }}{{ end }}
+ </h1>
+ {{- with .Content }}
+ <div class="homepage__content">
+ {{ . }}
+ </div>
+ {{- end }}
+ </header>
+
+ {{- partial "list/recent-posts.html" (dict
+ "count" 10
+ "title" (lang.Translate "posts.recent" | default "Recent Articles")
+ "show_view_all" true
+ )
+ -}}
+</div>
+{{- end }}