aboutsummaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'layouts')
-rw-r--r--layouts/blog/single.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/layouts/blog/single.html b/layouts/blog/single.html
new file mode 100644
index 0000000..a81ad10
--- /dev/null
+++ b/layouts/blog/single.html
@@ -0,0 +1,34 @@
+{{ define "main" }}
+ <div class="wrap mt post">
+ <div>
+ {{- $date := (dateFormat "02 January 2006" .Date) -}}
+ <p class="post_date">Published on {{ $date }} by {{ .Params.author }}</p>
+ <h1 class="post_title">{{ .Title }}</h1>
+ <div class="post_body">
+ <div class="post_inner">
+ {{ with .Params.image }}
+ {{- $image := absURL (printf "images/%s" .) }}
+ {{ if in . "https://" }}
+ {{- $image = . }}
+ {{ end }}
+ <img src="{{ $image }}" alt="{{ . }}" class="post_thumbnail">
+ {{ end }}
+ {{ .Content }}
+ </div>
+ <div class="post_extra mb-2">
+ {{ partialCached "share" . }}
+ </div>
+ <div>
+ {{ template "_internal/disqus.html" . }}
+ </div>
+ </div>
+ </div>
+ <!-- <a href="{{ $.Site.BaseURL }}" class="post_nav">
+ <span class="post_next">The Latest
+ <svg class="icon icon_scale">
+ <use xlink:href="#double-arrow"></use>
+ </svg>
+ </span>
+ </a> -->
+ </div>
+{{ end }}