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