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" }}
|
{{ 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 }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue