mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
post-cover-image : add support for cover image for post
usage with post params => cover = "<absolute image url>"
This commit is contained in:
parent
ea94a8bd77
commit
ab451ef89c
@ -90,6 +90,13 @@
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.entry-cover img {
|
||||
border-radius: var(--radius);
|
||||
margin-bottom: var(--gap);
|
||||
pointer-events: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.social-icons a {
|
||||
margin: 2px;
|
||||
padding: 6px;
|
||||
|
@ -32,6 +32,11 @@
|
||||
{{- $class = "post-entry tag-entry" }}
|
||||
{{- end }}
|
||||
<article class="{{ $class }}">
|
||||
{{ if .Params.cover }}
|
||||
<figure class="entry-cover">
|
||||
<img src="{{ .Params.cover | absURL }}" alt="cover image for {{ .Title }}">
|
||||
</figure>
|
||||
{{ end }}
|
||||
<header class="entry-header">
|
||||
<h2>
|
||||
{{ .Title }}
|
||||
|
@ -14,6 +14,11 @@
|
||||
</div>
|
||||
{{end}}
|
||||
</header>
|
||||
{{ if .Params.cover }}
|
||||
<figure class="entry-cover">
|
||||
<img src="{{ .Params.cover | absURL }}" alt="cover image for {{ .Title | plainify }}">
|
||||
</figure>
|
||||
{{ end }}
|
||||
{{ if .Params.ShowToc }}
|
||||
<div class="toc">
|
||||
<details>
|
||||
|
Loading…
Reference in New Issue
Block a user