From baf5a16a064e2bc0a36dce5aeb4c0760dec11852 Mon Sep 17 00:00:00 2001 From: Jed Ludlow Date: Wed, 26 Aug 2020 09:38:58 -0600 Subject: [PATCH] Place copyright year ahead of copyright name Traditional placement is to have the year precede the name, so modifying standard templates to match this. --- templates/partial/cc_license.html | 2 +- templates/partial/copyright.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/partial/cc_license.html b/templates/partial/cc_license.html index 7e2d443..1e05c7c 100644 --- a/templates/partial/cc_license.html +++ b/templates/partial/cc_license.html @@ -1,5 +1,5 @@

- © {{ COPYRIGHT_NAME }} {{ COPYRIGHT_YEAR }} - This work is licensed under a {{ CC_LICENSE['name'] }} {{ CC_LICENSE['version'] }} International License + © {{ COPYRIGHT_YEAR }} {{ COPYRIGHT_NAME }} - This work is licensed under a {{ CC_LICENSE['name'] }} {{ CC_LICENSE['version'] }} International License

{% include "partial/flex.html" %}

diff --git a/templates/partial/copyright.html b/templates/partial/copyright.html index 5426dfd..5521ef3 100644 --- a/templates/partial/copyright.html +++ b/templates/partial/copyright.html @@ -1,4 +1,4 @@ -

© {{ COPYRIGHT_NAME }} {{ COPYRIGHT_YEAR }}

+

© {{ COPYRIGHT_YEAR }} {{ COPYRIGHT_NAME }}

{% include "partial/flex.html" %} {% if STATUSCAKE %} {% include "partial/statuscake.html" %}