Merge pull request #6 from recanman/main
fix: check existence of goal as it is never zero, fix: exclude "Weeklies" entry in RSS feed
This commit is contained in:
commit
2998f1d9bd
2 changed files with 12 additions and 10 deletions
|
@ -12,6 +12,7 @@
|
|||
<atom:link href="{{ .Permalink }}" rel="self" type="application/rss+xml" />
|
||||
|
||||
{{ range where .Site.Pages "Type" "weekly" }}
|
||||
{{ if ne .Title "Weeklies" }}
|
||||
<item>
|
||||
<title>{{ .Title }}</title>
|
||||
<link>{{ .Permalink }}</link>
|
||||
|
@ -23,5 +24,6 @@
|
|||
<media:content medium="image" url="{{ .Permalink }}cover.png" xmlns:media="http://search.yahoo.com/mrss/" />
|
||||
</item>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</channel>
|
||||
</rss>
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
{{ $goal := .Get "goal" }}
|
||||
{{ $raised := .Get "raised" }}
|
||||
{{ with .Get "raised" }}
|
||||
{{ with $goal }}
|
||||
<p>Raised <b>{{ $raised }}</b> of <b>{{ $goal }}</b> XMR ({{ div (.) ($goal) | mul 100 | int }}%)</p>
|
||||
{{ end }}
|
||||
</div>
|
Loading…
Reference in a new issue