Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/allnightgrocery/hugo-theme-blueberry-detox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/li.html')
-rw-r--r--layouts/_default/li.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/layouts/_default/li.html b/layouts/_default/li.html
new file mode 100644
index 0000000..4e00f05
--- /dev/null
+++ b/layouts/_default/li.html
@@ -0,0 +1,22 @@
+<article class="{{ .Type }}">
+ <header class="post-header">
+ <h3 class="post-title"><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
+ <p class="post-time"><time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" | safeHtml }}">{{ .Date.Format "January 2, 2006" }}</time></p>
+ </header>
+
+ <section class="post-excerpt">
+ <p>{{ .Summary }}</p>
+ </section>
+
+ <footer class="post-footer">
+ <span>
+ {{ if .Site.Params.disqusShortname }}
+ <a href="{{ .Permalink }}#comments"><i class="fa fa-comment"></i> Comments</a>
+ {{ end }}
+ {{ with.Params.tags }}
+ &nbsp;&nbsp;<i class="fa fa-tag"></i>
+ {{ delimit . ", " }}
+ {{ end }}
+ </span>
+ </footer>
+</article> \ No newline at end of file