diff --git a/layouts/_default/index.rss.xml b/layouts/_default/index.rss.xml
index b67fd9c..9238133 100644
--- a/layouts/_default/index.rss.xml
+++ b/layouts/_default/index.rss.xml
@@ -12,16 +12,18 @@
{{ range where .Site.Pages "Type" "weekly" }}
- -
- {{ .Title }}
- {{ .Permalink }}
- {{ .Permalink }}
- {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}
+ {{ if ne .Title "Weeklies" }}
+
-
+ {{ .Title }}
+ {{ .Permalink }}
+ {{ .Permalink }}
+ {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}
- {{ .Content | truncate 350 | html }}
-
-
-
+ {{ .Content | truncate 350 | html }}
+
+
+
+ {{ end }}
{{ end }}
\ No newline at end of file
diff --git a/layouts/shortcodes/ccs_item.html b/layouts/shortcodes/ccs_item.html
index 2cfa50b..7941d88 100644
--- a/layouts/shortcodes/ccs_item.html
+++ b/layouts/shortcodes/ccs_item.html
@@ -7,7 +7,7 @@
{{ $goal := .Get "goal" }}
{{ $raised := .Get "raised" }}
- {{ with .Get "raised" }}
+ {{ with $goal }}
Raised {{ $raised }} of {{ $goal }} XMR ({{ div (.) ($goal) | mul 100 | int }}%)
{{ end }}
\ No newline at end of file