about summary refs log tree commit diff
path: root/layouts/partials/postInfo.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/postInfo.html')
-rw-r--r--layouts/partials/postInfo.html34
1 files changed, 0 insertions, 34 deletions
diff --git a/layouts/partials/postInfo.html b/layouts/partials/postInfo.html
deleted file mode 100644
index f9052b0..0000000
--- a/layouts/partials/postInfo.html
+++ /dev/null
@@ -1,34 +0,0 @@
-{{ $dateFormat := "2006-01-02" }}
-{{ if .Site.Params.dateFormat }}
-    {{ $dateFormat = .Site.Params.dateFormat }}
-{{ end }}
-
-<div class="post-info">
-    {{ if .Params.date }}
-        <div class="post-date dt-published">{{ .Params.date.Format $dateFormat }}</div>
-    {{ end }}
-    
-    <a class="post-hidden-url u-url" href="{{ .Permalink }}">{{ .Permalink }}</a>
-    <a href={{ .Site.BaseURL }} class="p-name p-author post-hidden-author h-card" rel="me">{{ .Params.author | default .Site.Params.author }}</a>
-
-
-    <div class="post-taxonomies">
-        {{ if .Params.categories }}
-        categories:
-        <ul class="post-categories">
-            {{ range .Params.categories }}
-            <li><a href="{{ "categories/" | urlize | absLangURL }}">{{ . }}</a></li>
-            {{ end }}
-        </ul>
-        {{ end }}
-        <br>
-        {{ if .Params.tags }}
-        tagged:
-        <ul class="post-tags">
-            {{ range .Params.tags }}
-            <li><a href="{{ "tags/" | absLangURL }}{{ . | urlize }}">#{{ . }}</a></li>
-            {{ end }}
-        </ul>
-        {{ end }}
-    </div>
-</div>