improved style of simple post list
This commit is contained in:
parent
1011211a04
commit
9413a77498
|
@ -282,6 +282,10 @@ ul.list {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
min-width: 100px;
|
min-width: 100px;
|
||||||
}
|
}
|
||||||
|
> li > div {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 100px auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#commento {
|
#commento {
|
||||||
|
|
|
@ -17,9 +17,14 @@
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ range .Pages }}
|
{{ range .Pages }}
|
||||||
<li>
|
<li>
|
||||||
<span class="date">
|
<div>
|
||||||
{{ .Date.Format "2006-01-02" }}
|
<span class="date">
|
||||||
</span> <a href="{{ .Permalink }}">{{ .Title }}</a>
|
{{ .Date.Format "2006-01-02" }}
|
||||||
|
</span>
|
||||||
|
<span>
|
||||||
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in New Issue