From 3b8b091b70d4549c31f53b25c9cebd692ff837e5 Mon Sep 17 00:00:00 2001 From: jon_nfc Date: Sun, 27 Nov 2022 17:25:54 +0930 Subject: [PATCH] feat: added project template this page is to be used for the projects of nfc. all prohject website pages are to use this template. !5 #2 --- theme-overrides/project.html | 63 ++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 theme-overrides/project.html diff --git a/theme-overrides/project.html b/theme-overrides/project.html new file mode 100644 index 0000000..c3f253e --- /dev/null +++ b/theme-overrides/project.html @@ -0,0 +1,63 @@ +{% extends "base.html" %} + +{% block content %} + +{% if page.edit_url %} + + {% include ".icons/material/pencil.svg" %} + +{% endif %} + + + + +

{{ page.title }}

+ +
+ + + {{ page.content }} + + + + + +
+

About:

+

This page forms part of our Project {{ config.repo_name }}.

+

+

Page Metadata
+ Version: ToDo: place files short git commit here
+ Date Created: {{ page.meta.date.strftime("%Y-%m-%d") }}
+ {% if page.meta.git_revision_date_localized %}Date Edited: {{ page.meta.git_revision_date_localized.replace("\n", "").replace("\r", "") }}
{% endif %} +

+ +
Contribution:
+

Would You like to contribute to our {{ config.repo_name }} project? You can assist in the following ways:

+ +

 

+

ToDo: Add the page list of contributors

+ +
+ +
+ +{% endblock %}