put first image next to article summary

This commit is contained in:
ch0ccyra1n 2023-05-10 15:54:48 -07:00
parent 52e0db9665
commit c6d9313bcd

View file

@ -1,4 +1,9 @@
{{ define "main" }}
<style>
img {
max-width: 500px;
}
</style>
<h1>{{ .Title }}</h1>
{{ .Content }}
<ul id="artlist">
@ -8,11 +13,17 @@
{{ partial "metadata.html" . }}
{{ if .Params.cws }}
{{ else }}
<br><br>
<a href="{{ .RelPermalink }}">
<p>{{ .Summary }}</p>
{{ $regex := `<img\s*src="(.+?)">` }}
{{ $matches := findRE $regex .Content 1 }}
{{ range $matches }}
{{ . | safeHTML }}
{{ end }}
<p>{{ .Summary }}</p>
</a>
{{ end }}
</li>
{{ end }}
</ul>
{{ end }}
{{ end }}