forked from planex/defiance
put first image next to article summary
This commit is contained in:
parent
52e0db9665
commit
c6d9313bcd
1 changed files with 13 additions and 2 deletions
|
@ -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 }}
|
||||
|
|
Loading…
Add table
Reference in a new issue