diff options
Diffstat (limited to 'layouts/blog/li.html')
-rw-r--r-- | layouts/blog/li.html | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/layouts/blog/li.html b/layouts/blog/li.html deleted file mode 100644 index cb44e71..0000000 --- a/layouts/blog/li.html +++ /dev/null @@ -1,24 +0,0 @@ -<style> - #cat-category { - font-size: small; - color: red; - } - #vim-category { - font-size: small; - color: #2abb01; - } -</style> - -<li> - <a href="{{ .Permalink }}"> - {{ .Title }} - {{ if isset .Params "category" }} - {{ if eq .Params.Category "cats" }} - <span id="cat-category">[{{ lower .Params.Category }}]</span> - {{ else if (eq .Params.Category "vim") }} - <span id="vim-category">[{{ lower .Params.Category }}]</span> - {{ end }} - {{ end }} - <small><time>{{ .Date.Format "2 Jan, 2006" }}</time></small> - </a> -</li> |