Răsfoiți Sursa

Switch from using .Summary to .Intro

.Summary is just too unpredictable. Added an .Intro param to blog posts
so I can control what displays in the list.
Apis Necros 2 ani în urmă
părinte
comite
3d34b50bef
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      layouts/_default/list.html

+ 1 - 1
layouts/_default/list.html

@@ -7,7 +7,7 @@
 			<span class="image-wrapper w-full h-32 md:w-32 md:h-32">
 			<span class="image-wrapper w-full h-32 md:w-32 md:h-32">
 				<img srcset="/imgs/no-image-new.webp" src="/imgs/no-image-new.png" alt="Filler" />
 				<img srcset="/imgs/no-image-new.webp" src="/imgs/no-image-new.png" alt="Filler" />
 			</span>
 			</span>
-			<p class="m-2 flex-1">{{ .Summary }}</p>
+			<p class="m-2 flex-1">{{ .Params.Intro | markdownify }}</p>
 		</div>
 		</div>
 	</div>
 	</div>
 	{{ end }}
 	{{ end }}