]> zackmdavis.net Git - An_Algorithmic_Lucidity.git/commitdiff
with context
authorZack M. Davis <code@zackmdavis.net>
Thu, 16 Jul 2026 01:02:09 +0000 (18:02 -0700)
committerZack M. Davis <code@zackmdavis.net>
Thu, 16 Jul 2026 01:02:09 +0000 (18:02 -0700)
theme/templates/article.html
theme/templates/index.html
theme/templates/period_archives.html

index 0cc75f6ce65c6d8a57ba502cd5f137e18e2dd150..017a343cbeb4c0799589755e6e3267726f7cf4c8 100644 (file)
@@ -1,5 +1,5 @@
 {% extends "base.html" %}
-{% import "includes/post_card.html" as post_card %}
+{% import "includes/post_card.html" as post_card with context %}
 
 {% block title %}{{ article.title }} - {{ SITENAME }}{% endblock %}
 
index 1adbc5c9d802ac8a345ac8284f9f1c60b18b932e..2a2a3922ba62261059f3d558a1ab055a36168d2b 100644 (file)
@@ -1,6 +1,6 @@
 {% extends "base.html" %}
-{% import "includes/post_card.html" as post_card %}
-{% import "includes/pagination.html" as pagination %}
+{% import "includes/post_card.html" as post_card with context %}
+{% import "includes/pagination.html" as pagination with context %}
 
 {% block content %}
     {% block content_title %}{% endblock %}
index efa79a572c2f74605bffa5c497989c8f5118993f..5301d62c5dc6e343f59f6733000cf4806f3300ca 100644 (file)
@@ -1,5 +1,5 @@
 {% extends "base.html" %}
-{% import "includes/post_card.html" as post_card %}
+{% import "includes/post_card.html" as post_card with context %}
 
 {% block title %}{{ SITENAME }} - {{ period|reverse|join(' ') }} archives{% endblock %}