mirror of
				https://github.com/Wonderfall/hugo-WonderMod.git
				synced 2025-10-30 19:35:26 +01:00 
			
		
		
		
	post-cover: use new format
usage => in page-vars front-matter cover: image: '<image path/url>' alt: '<alt text>'
This commit is contained in:
		| @@ -31,13 +31,13 @@ | ||||
| {{- $class = "post-entry tag-entry" }} | ||||
| {{- end }} | ||||
| <article class="{{ $class }}"> | ||||
|   {{- if .Params.cover }} | ||||
|   {{- if .Params.cover.image }} | ||||
|   <figure class="entry-cover"> | ||||
|     {{ if (or (fileExists (path.Join "static" .Params.cover)) (hasPrefix .Params.cover "http://") (hasPrefix .Params.cover "https://")) }} | ||||
|     <img src="{{ .Params.cover | absURL }}" alt="cover image for {{ .Title | plainify }}"> | ||||
|     {{else}} | ||||
|     <img src="{{ .Permalink -}} {{- .Params.cover }}" alt="cover image for {{ .Title | plainify }}"> | ||||
|     {{end}} | ||||
|     {{- if (or (fileExists (path.Join "static" .Params.cover.image)) (hasPrefix .Params.cover.image "http://") (hasPrefix .Params.cover.image "https://")) }} | ||||
|     <img src="{{ .Params.cover.image | absURL }}" alt="{{ .Params.cover.alt | plainify }}"> | ||||
|     {{- else}} | ||||
|     <img src="{{ .Permalink -}} {{- .Params.cover.image }}" alt="{{ .Params.cover.alt | plainify }}"> | ||||
|     {{- end}} | ||||
|   </figure> | ||||
|   {{- end }} | ||||
|   <header class="entry-header"> | ||||
|   | ||||
| @@ -26,13 +26,13 @@ | ||||
|     </div> | ||||
|     {{- end}} | ||||
|   </header> | ||||
|   {{- if .Params.cover }} | ||||
|   {{- if .Params.cover.image }} | ||||
|   <figure class="entry-cover"> | ||||
|     {{ if (or (fileExists (path.Join "static" .Params.cover)) (hasPrefix .Params.cover "http://") (hasPrefix .Params.cover "https://")) }} | ||||
|     <img src="{{ .Params.cover | absURL }}" alt="cover image for {{ .Title | plainify }}"> | ||||
|     {{else}} | ||||
|     <img src="{{ .Permalink -}} {{- .Params.cover }}" alt="cover image for {{ .Title | plainify }}"> | ||||
|     {{end}} | ||||
|     {{- if (or (fileExists (path.Join "static" .Params.cover.image)) (hasPrefix .Params.cover.image "http://") (hasPrefix .Params.cover.image "https://")) }} | ||||
|     <img src="{{ .Params.cover.image | absURL }}" alt="{{ .Params.cover.alt | plainify }}"> | ||||
|     {{- else}} | ||||
|     <img src="{{ .Permalink -}} {{- .Params.cover.image }}" alt="{{ .Params.cover.alt | plainify }}"> | ||||
|     {{- end}} | ||||
|   </figure> | ||||
|   {{- end }} | ||||
|   {{- if .Params.ShowToc }} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Aditya Telange
					Aditya Telange