From ae8db768c78818591649c503526be239a4fc3e2b Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Thu, 30 Oct 2025 04:27:53 +0000 Subject: [PATCH] Revert to version 87b7f51 --- core/templates/base.html | 11 +++++++++++ core/templates/core/article_detail.html | 14 ++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 core/templates/base.html create mode 100644 core/templates/core/article_detail.html diff --git a/core/templates/base.html b/core/templates/base.html new file mode 100644 index 0000000..788576e --- /dev/null +++ b/core/templates/base.html @@ -0,0 +1,11 @@ + + + + + {% block title %}Knowledge Base{% endblock %} + {% block head %}{% endblock %} + + + {% block content %}{% endblock %} + + diff --git a/core/templates/core/article_detail.html b/core/templates/core/article_detail.html new file mode 100644 index 0000000..8820990 --- /dev/null +++ b/core/templates/core/article_detail.html @@ -0,0 +1,14 @@ +{% extends 'base.html' %} + +{% block title %}{{ article.title }}{% endblock %} + +{% block content %} +
+

{{ article.title }}

+

Published on {{ article.created_at|date:"F d, Y" }}

+
+
+ {{ article.content|safe }} +
+
+{% endblock %}