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

github.com/alexandrevicenzi/soho.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/list.html')
-rw-r--r--layouts/_default/list.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 752b805..917ca38 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -3,12 +3,12 @@
<h1>{{ .Title }}</h1>
{{ range .Data.Pages -}}
<li>
- <span>
- <a href="{{ .Permalink }}">{{ .Title }}</a>
- {{ if eq .Kind "page" }}
- <time class="pull-right post-list" datetime="{{ .Date.Format "2006-01-02T15:04:05Z0700" }}">{{ .Date.Format "Jan 2, 2006" }}</time>
- {{ end }}
- </span>
+ <div class="flex">
+ <a href="{{ .Permalink }}" class="truncate">{{ .Title }}</a>
+ {{ if eq .Kind "page" }}
+ <time class="nowrap" datetime="{{ .Date.Format "2006-01-02T15:04:05Z0700" }}">{{ .Date.Format "Jan 2, 2006" }}</time>
+ {{ end }}
+ </div>
</li>
{{- end }}
</ul>