From 41c7e0cdc3728eeb1aab214aaf2b59b0e089d285 Mon Sep 17 00:00:00 2001 From: David Bailey Date: Wed, 13 Dec 2023 10:22:49 +0100 Subject: [PATCH] feat: use directory's own content field instead of README lookup --- www/templates/post_types/directory.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/www/templates/post_types/directory.html b/www/templates/post_types/directory.html index d8d2c43..5fa62fc 100644 --- a/www/templates/post_types/directory.html +++ b/www/templates/post_types/directory.html @@ -38,8 +38,6 @@ This shouldn't happen, sorry! {% endif %} - {% if post.readme.found %} - {{ post.readme.post_content|markdown_to_html }} - {% endif %} + {{ post.post_content|markdown_to_html }} {%endblock%}