podcasts
This commit is contained in:
parent
a5cc9a5593
commit
2bcb3f1dc9
|
@ -41,6 +41,9 @@
|
|||
}
|
||||
}
|
||||
|
||||
.related {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
|
||||
.post-meta {
|
||||
|
|
|
@ -25,7 +25,9 @@
|
|||
<img src="{{ print $article $image }}" class="mb-4 post-img" alt="{{ .Title | markdownify }}">
|
||||
{{ end }}
|
||||
|
||||
<div class="content">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
{{ if .Site.Params.Info.related }}
|
||||
<div class="related">{{ partial "related" . }}</div>
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
{{ .Content }}
|
||||
|
||||
{{ range sort .Pages }}
|
||||
{{ range sort .Paginator.Pages }}
|
||||
|
||||
|
||||
<article class="posts featured-post">
|
||||
|
|
|
@ -24,7 +24,10 @@
|
|||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
<div class="content">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
|
||||
{{ if .Site.Params.Info.related }}
|
||||
<div class="related">{{ partial "related" . }}</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue