From 3423fcab65f42fb5b3a6a670bfd4d1c6a262aadf Mon Sep 17 00:00:00 2001 From: Dominik George <nik@naturalnet.de> Date: Tue, 1 Dec 2020 22:55:26 +0100 Subject: [PATCH] Fix name of template, closes #11 --- templates/author.html | 2 +- templates/{page_default.html => page.html} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename templates/{page_default.html => page.html} (100%) diff --git a/templates/author.html b/templates/author.html index f792cee..187399b 100644 --- a/templates/author.html +++ b/templates/author.html @@ -1,4 +1,4 @@ -{% extends "page_default.html" %} +{% extends "page.html" %} {% block title %}{{ SITENAME }} — Articles by {{ author }}{% endblock %} {% block content_title %} diff --git a/templates/page_default.html b/templates/page.html similarity index 100% rename from templates/page_default.html rename to templates/page.html -- GitLab