Compare commits

..

No commits in common. "6f140f096b229b54cd31ea72ceccae0853869ea0" and "1caa7acdc9c0bf00ea38524538d295a6c179ae6d" have entirely different histories.

12 changed files with 32 additions and 13 deletions

View File

@ -175,18 +175,15 @@ pre > code {
.page-list .post,
.series-taxonomy-list .series-taxonomy,
.series-taxonomy .post {
padding: 24px;
padding-top: 8px;
padding-left: 24px;
padding-right: 24px;
padding-bottom: 24px;
border-radius: 12px;
background-color: var(--background-1);
color: var(--text-1);
}
.post > .post-title,
.series-taxonomy > .post-title,
.author > .author-name {
margin-top: 0;
}
.post-series-position {
position: relative;
float: right;

View File

@ -1,4 +1,4 @@
{{ i18n "credit_comment" | safeHTML }}
{{ partial "credit.html" }}
<!DOCTYPE html>
<html lang="{{ .Language.Lang }}">
{{ partial "head.html" . }}

View File

@ -13,7 +13,7 @@
{{ with .Sections }}
<div class="sections">
{{ range . }}
{{ .Render "summary" }}
{{ .Render "summary/section" }}
{{ end }}
</div>
{{ end }}

View File

@ -0,0 +1,21 @@
<h2 class="post-title">
{{ with .Parent.Params.icon }}{{ partial "icon.html" . }}{{ end }}
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
{{ if .Draft }}{{ partial "icon.html" "write" }}{{ end }}
</h2>
{{ partial "post-metadata/short.html" . }}
{{ with .Resources.GetMatch "feature" }}
<div class="post-media">
{{ partial "figure.html" (dict "src" .) }}
</div>
{{ end }}
<div class="post-description">
{{ partial "description-or-summary.html" . }}
</div>
<div class="readmore">
<a href="{{ .Permalink }}">{{ i18n "read_more" }} &rarr;</a>
</div>

View File

@ -18,7 +18,7 @@
{{ .Scratch.Set "series_position" $i }}
{{ .Scratch.Set "series_total" $total }}
<article class="post">
{{ .Render "summary" }}
{{ .Render "summary/series_post" }}
</article>
{{ end }}
</div>

View File

@ -12,7 +12,7 @@
{{ with .Paginator.Pages }}
{{ range . }}
<article class="post">
{{ .Render "summary" }}
{{ .Render "summary/author" }}
</article>
{{ end }}
{{ else }}

View File

@ -0,0 +1 @@
{{ i18n "credit_comment" | safeHTML }}

View File

@ -2,7 +2,7 @@
{{ with . }}
{{ range . }}
<article class="post">
{{ .Render "summary" }}
{{ .Render "summary/post" }}
</article>
{{ end }}
{{ else }}

View File

@ -12,7 +12,7 @@
{{ with .Pages }}
{{ range . }}
<article class="series-taxonomy">
{{ .Render "summary" }}
{{ .Render "summary/series" }}
</article>
{{ end }}
{{ else }}