Compare commits
2 Commits
14bf8033b2
...
9a14e93524
Author | SHA1 | Date | |
---|---|---|---|
|
9a14e93524 | ||
|
cbaaad38c9 |
@ -65,7 +65,7 @@ published_posts:
|
|||||||
|
|
||||||
- id: empty-test
|
- id: empty-test
|
||||||
title: Empty Test
|
title: Empty Test
|
||||||
description: A post with no content. Might as well test it.
|
description:
|
||||||
tags:
|
tags:
|
||||||
- foo
|
- foo
|
||||||
- bar
|
- bar
|
||||||
|
@ -61,6 +61,12 @@ html {
|
|||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 800px) {
|
||||||
|
html {
|
||||||
|
font-size: 1.3em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
background: var(--nc-bg-1);
|
background: var(--nc-bg-1);
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
@ -89,6 +95,10 @@ ul {
|
|||||||
list-style: circle;
|
list-style: circle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul li {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
margin: 2rem 0 2rem 0;
|
margin: 2rem 0 2rem 0;
|
||||||
border-color: var(--nc-bg-3);
|
border-color: var(--nc-bg-3);
|
||||||
|
@ -11,28 +11,18 @@
|
|||||||
</p>
|
</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
<table>
|
<ul>
|
||||||
|
{{ range .Payload.Posts }}
|
||||||
<colgroup>
|
<li>
|
||||||
<col span="1" style="width: 7rem;">
|
<a href="{{ PostURL .ID }}">
|
||||||
<col span="1">
|
{{ DateTimeFormat .PublishedAt }} / {{ .Title }}
|
||||||
<col span="1" style="width: 50%;">
|
</a>
|
||||||
</colgroup>
|
{{ if .Description }}
|
||||||
|
<br/><em>{{ .Description }}</em>
|
||||||
{{ range .Payload.Posts }}
|
{{ end }}
|
||||||
<tr>
|
</li>
|
||||||
<td>{{ DateTimeFormat .PublishedAt }}</td>
|
|
||||||
<td><a href="{{ PostURL .ID }}">{{ .Title }}</td>
|
|
||||||
<td><em>{{ .Description }}</em></td>
|
|
||||||
</tr>
|
|
||||||
{{ end }}
|
|
||||||
</table>
|
|
||||||
|
|
||||||
{{ if ge .Payload.NextPage 0 }}
|
|
||||||
<p>
|
|
||||||
<a href="?p={{ .Payload.NextPage}}">Next Page > ></a>
|
|
||||||
</p>
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user