diff options
author | eatradish <[email protected]> | 2023-04-06 14:46:21 +0800 |
---|---|---|
committer | eatradish <[email protected]> | 2023-04-06 14:46:21 +0800 |
commit | 797487a55f33a37080809398309f59dfa648e694 (patch) | |
tree | f605054643e289ab77efaff922a494c3022896ef /templates | |
parent | 3426d73c865761918886381b34c2f6bfe0cc95fd (diff) | |
download | Seje2-797487a55f33a37080809398309f59dfa648e694.tar.gz Seje2-797487a55f33a37080809398309f59dfa648e694.tar.bz2 Seje2-797487a55f33a37080809398309f59dfa648e694.zip |
feat: move license field to extra field
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index 31623a7..793efad 100644 --- a/templates/base.html +++ b/templates/base.html @@ -65,7 +65,7 @@ {% endblock %} </main> {% block footer %} - <p class="license">{{ config.license | default(value='') }}</p> + <p class="license">{{ config.extra.license | default(value='') }}</p> {% endblock %} </body> </html> |