jlelse
/
Indieroad
Archived
1
Fork 0

Fix h-entry to include authorbox

This commit is contained in:
Jan-Lukas Else 2019-09-05 17:01:57 +02:00
parent 35e21af159
commit b092e404c0
3 changed files with 7 additions and 6 deletions

View File

@ -670,6 +670,7 @@ select {
padding-top: 25px;
padding-bottom: 25px;
margin-bottom: 25px;
@include color-border(border-top, 1px, solid, border);
@include color-border(border-bottom, 1px, solid, border);
display: flex;
@media screen and (max-width: $break1) {

View File

@ -1,6 +1,6 @@
{{ define "main" }}
<main class="main">
<article class="h-entry post">
<main class="main h-entry">
<article>
<header class="main-header">
<h1 class="p-name post-title">{{ .Title }}</h1>
{{ with partial "post_meta.html" . -}}
@ -15,8 +15,8 @@
</div>
{{ partial "post_tags.html" . }}
</article>
{{ partial "authorbox.html" . }}
</main>
{{ partial "webmentionform" . }}
{{ partial "authorbox.html" . }}
{{ partial "post_nav.html" . }}
{{ end }}

View File

@ -1,6 +1,6 @@
{{ define "main" }}
<main class="main">
<article class="h-entry post">
<main class="main h-entry">
<article>
<header class="main-header">
<h1 class="p-name post-title">{{ .Title }}</h1>
{{ with partial "post_meta.html" . -}}
@ -13,8 +13,8 @@
</div>
{{ partial "post_tags.html" . }}
</article>
{{ partial "authorbox.html" . }}
</main>
{{ partial "webmentionform" . }}
{{ partial "authorbox.html" . }}
{{ partial "post_nav.html" . }}
{{ end }}