Skip to content
This repository was archived by the owner on Mar 1, 2022. It is now read-only.

Commit 0595f76

Browse files
committed
Make copyright adjustable
1 parent a125bd2 commit 0595f76

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ FAVICON = 'https://dl.dropboxusercontent.com/u/299446/logo.png'
123123
ICON = 'https://dl.dropboxusercontent.com/u/299446/logo.png'
124124
SHORTCUT_ICON = 'https://dl.dropboxusercontent.com/u/299446/logo.png'
125125
# HEADER_IMAGE = 'Your local or remote URL'
126+
# COPYRIGHT = '2015 © All Rights Reserved.'
126127
# Google fonts can be downloaded with
127128
# https://neverpanic.de/downloads/code/2014-03-19-downloading-google-web-fonts-for-local-hosting-fetch.sh'
128129
# Maybe you need to add missing mime types to your webserver configuration

templates/_includes/footer.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010

1111
<div class="col-md-6 copyright">
1212
{{ SITENAME|e }}
13-
<br />2015 &copy; All Rights Reserved.
13+
{% if COPYRIGHT %}
14+
<br />{{ COPYRIGHT }}
15+
{% else %}
16+
<br />{{ COPYRIGHT }}
17+
{% endif %}
1418
</div>
1519

1620
<div class="col-md-6 text-right">

0 commit comments

Comments
 (0)