diff --git a/src/templates/page.html.jinja b/src/templates/page.html.jinja deleted file mode 100644 index b6c5398..0000000 --- a/src/templates/page.html.jinja +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - Sup - - - - -Page Template -Index -About -{% block body %}{% endblock %} - - - diff --git a/src/templates/page.jinja.html b/src/templates/page.jinja.html new file mode 100644 index 0000000..aee3c40 --- /dev/null +++ b/src/templates/page.jinja.html @@ -0,0 +1,21 @@ + + + + + Sup + + + + + Page Template + + {% block body %}{% endblock %} + + + + diff --git a/src/templates/pages/about.html.jinja b/src/templates/pages/about.jinja.html similarity index 78% rename from src/templates/pages/about.html.jinja rename to src/templates/pages/about.jinja.html index d2a466a..268f7f8 100644 --- a/src/templates/pages/about.html.jinja +++ b/src/templates/pages/about.jinja.html @@ -1,4 +1,4 @@ -{% extends "page.html.jinja" %} +{% extends "page.jinja.html" %} {% block body %}

About

diff --git a/src/templates/pages/index.html.jinja b/src/templates/pages/index.jinja.html similarity index 100% rename from src/templates/pages/index.html.jinja rename to src/templates/pages/index.jinja.html