aboutsummaryrefslogtreecommitdiff
path: root/site.json
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-12-19 03:21:22 -0300
committerEuAndreh <eu@euandre.org>2020-12-19 03:21:22 -0300
commit58d523e763d37990b84702ef00270707bda51ea7 (patch)
treee43ef96c88f35c9fc9c6176653598ca980bd25d2 /site.json
parentStop considering templates/ in scripts (diff)
downloadeuandre.org-58d523e763d37990b84702ef00270707bda51ea7.tar.gz
euandre.org-58d523e763d37990b84702ef00270707bda51ea7.tar.xz
Fix site.json filtered_* variables usage
Diffstat (limited to 'site.json')
-rw-r--r--site.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/site.json b/site.json
index f4e38d9..0fa59ac 100644
--- a/site.json
+++ b/site.json
@@ -65,7 +65,7 @@
{% assign filtered_tils = filtered_tils | push:til %}
{% endunless %}
{% endfor %}
- {% for til in site.tils %}
+ {% for til in filtered_tils %}
{
"title": "{{ til.title | smartify }}",
"date": "{{ til.date }}",
@@ -84,7 +84,7 @@
{% assign filtered_slides = filtered_slides | push:slide %}
{% endunless %}
{% endfor %}
- {% for slide in site.slides %}
+ {% for slide in filtered_slides %}
{
"title": "{{ slide.title | smartify }}",
"date": "{{ slide.date }}",