mirror of
				https://github.com/Wonderfall/hugo-WonderMod.git
				synced 2025-10-30 11:25:26 +01:00 
			
		
		
		
	Add RSS button to Section and Term pages.
				
					
				
			Usage => Params: ShowRssButtonInSectionTermList: true --- ShowRssButtonInSectionTermList: false ---
This commit is contained in:
		| @@ -427,3 +427,7 @@ h6:hover .anchor { | |||||||
| [dir="rtl"] .paginav .next { | [dir="rtl"] .paginav .next { | ||||||
|     text-align: left; |     text-align: left; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | h1>a>svg { | ||||||
|  |     display: inline; | ||||||
|  | } | ||||||
| @@ -7,7 +7,19 @@ | |||||||
| {{- if not .IsHome | and .Title }} | {{- if not .IsHome | and .Title }} | ||||||
| <header class="page-header"> | <header class="page-header"> | ||||||
|   {{- partial "breadcrumbs.html" . }} |   {{- partial "breadcrumbs.html" . }} | ||||||
|   <h1>{{ .Title }}</h1> |   <h1> | ||||||
|  |     {{ .Title }} | ||||||
|  |     {{- if and (or (eq .Kind `term`) (eq .Kind `section`)) (.Param "ShowRssButtonInSectionTermList") }} | ||||||
|  |     <a href="index.xml" title="RSS" aria-label="RSS"> | ||||||
|  |       <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" | ||||||
|  |         stroke-linecap="round" stroke-linejoin="round" height="23"> | ||||||
|  |         <path d="M4 11a9 9 0 0 1 9 9" /> | ||||||
|  |         <path d="M4 4a16 16 0 0 1 16 16" /> | ||||||
|  |         <circle cx="5" cy="19" r="1" /> | ||||||
|  |       </svg> | ||||||
|  |     </a> | ||||||
|  |     {{- end }} | ||||||
|  |   </h1> | ||||||
|   {{- if .Description }} |   {{- if .Description }} | ||||||
|   <div class="post-description"> |   <div class="post-description"> | ||||||
|     {{ .Description | markdownify }} |     {{ .Description | markdownify }} | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Aditya Telange
					Aditya Telange