aboutsummaryrefslogtreecommitdiff
path: root/themes/terrassa/layouts/_default
diff options
context:
space:
mode:
Diffstat (limited to 'themes/terrassa/layouts/_default')
-rw-r--r--themes/terrassa/layouts/_default/baseof.html11
-rw-r--r--themes/terrassa/layouts/_default/card.html28
-rw-r--r--themes/terrassa/layouts/_default/list.html11
-rw-r--r--themes/terrassa/layouts/_default/single.html31
-rw-r--r--themes/terrassa/layouts/_default/tags.html12
5 files changed, 93 insertions, 0 deletions
diff --git a/themes/terrassa/layouts/_default/baseof.html b/themes/terrassa/layouts/_default/baseof.html
new file mode 100644
index 0000000..6e1a936
--- /dev/null
+++ b/themes/terrassa/layouts/_default/baseof.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="en">
+{{- partial "head.html" . -}}
+
+<body>
+ {{- partial "header.html" . -}}
+ {{- block "main" . }}{{- end }}
+ {{- partial "footer.html" . -}}
+</body>
+
+</html> \ No newline at end of file
diff --git a/themes/terrassa/layouts/_default/card.html b/themes/terrassa/layouts/_default/card.html
new file mode 100644
index 0000000..6a184f1
--- /dev/null
+++ b/themes/terrassa/layouts/_default/card.html
@@ -0,0 +1,28 @@
+<article class="card">
+ <header class="card__header">
+ <h1 class="card__header__title">
+ <a href="{{ .Permalink }}" class="card__header__link" alt="{{ .Title }}.">
+ {{ .Title }}
+ </a>
+ </h1>
+ {{ if ne .Type "page" }}
+ {{ if and $.Site.Params.posts.showDate $.Site.Params.posts.showAuthor }}
+ <p class="card__header__date date">
+ {{ dateFormat $.Site.Params.posts.dateFormat .Date }} By {{ $.Params.author }}.
+ </p>
+ {{ else if $.Site.Params.posts.showDate }}
+ <p class="card__header__date date">{{ dateFormat $.Site.Params.posts.dateFormat .Date }}</p>
+ {{ else if $.Site.Params.posts.showAuthor }}
+ <p class="card__header__author author">By {{ $.Params.author }}.</p>
+ {{ end }}
+ {{ end }}
+ </header>
+
+ <main class="card__body">
+ {{ .Content | truncate 480 }}
+ </main>
+
+ <footer class="card__footer">
+ {{ .Render "tags" }}
+ </footer>
+</article> \ No newline at end of file
diff --git a/themes/terrassa/layouts/_default/list.html b/themes/terrassa/layouts/_default/list.html
new file mode 100644
index 0000000..c01a3b6
--- /dev/null
+++ b/themes/terrassa/layouts/_default/list.html
@@ -0,0 +1,11 @@
+{{ define "main" }}
+<main class="content">
+ {{ $paginator := .Paginate (where .Data.Pages.ByDate.Reverse "Type" "posts") }}
+
+ {{ range $paginator.Pages }}
+ {{ .Render "card" }}
+ {{ end }}
+
+ {{ template "_internal/pagination.html" . }}
+</main>
+{{ end }} \ No newline at end of file
diff --git a/themes/terrassa/layouts/_default/single.html b/themes/terrassa/layouts/_default/single.html
new file mode 100644
index 0000000..f6b15ae
--- /dev/null
+++ b/themes/terrassa/layouts/_default/single.html
@@ -0,0 +1,31 @@
+{{ define "main" }}
+<article class="post">
+ <header class="post__header">
+ <h1 class="post__title">{{ .Title }}</h1>
+ {{ if .Description }}
+ <p class="post__subtitle">{{ .Description }}</p>
+ {{ end }}
+ {{ if ne .Type "page" }}
+ {{ if and $.Site.Params.posts.showDate $.Site.Params.posts.showAuthor }}
+ <p class="post__date date">
+ {{ dateFormat $.Site.Params.posts.dateFormat .Date }} By {{ $.Params.author }}.
+ </p>
+ {{ else if $.Site.Params.posts.showDate }}
+ <p class="post__date date">{{ dateFormat $.Site.Params.posts.dateFormat .Date }}</p>
+ {{ else if $.Site.Params.posts.showAuthor }}
+ <p class="post__author author">By {{ $.Params.author }}.</p>
+ {{ end }}
+ {{ end }}
+ </header>
+
+ <main class="post__body">
+ {{ .Content }}
+ </main>
+
+ {{ if ne .Type "page" }}
+ <footer class="post__footer">
+ {{ .Render "tags" }}
+ </footer>
+ {{ end }}
+</article>
+{{ end }} \ No newline at end of file
diff --git a/themes/terrassa/layouts/_default/tags.html b/themes/terrassa/layouts/_default/tags.html
new file mode 100644
index 0000000..4618ae3
--- /dev/null
+++ b/themes/terrassa/layouts/_default/tags.html
@@ -0,0 +1,12 @@
+{{ if and $.Site.Params.posts.showTags .Params.Tags }}
+<ul class="tags">
+ {{ range .Params.Tags }}
+ {{ $url := printf "%stags/%s/" $.Site.BaseURL . }}
+ <li class="tags__tag">
+ <a href="{{ $url }}" class="tag__link" alt="{{ . }}.">
+ #{{ . }}
+ </a>
+ </li>
+ {{ end }}
+</ul>
+{{ end }}