added proper default config file

This commit is contained in:
Trevor Bentley
2023-01-12 03:00:35 +01:00
parent d30d031728
commit 871ff0a30e
4 changed files with 45 additions and 25 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
<html>
<head>
{% block html_head -%}
<title>{{site_name}}</title>
<title>{{site_name | default(value="Itsy-Gitsy")}}</title>
{% block html_head_extra -%}
{% endblock html_head_extra -%}
{% endblock html_head -%}
+2 -2
View File
@@ -1,3 +1,3 @@
Site: {{site_name}}<br/>
Description: {{site_description}}<br/>
Site: {{site_name | default(value="Itsy-Gitsy") }}<br/>
Description: {{site_description | default(value="A collection of Git repositories")}}<br/>
<hr/>