diff options
author | Justin Mayer <entroP@gmail.com> | 2016-09-10 08:33:53 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-10 08:33:53 -0600 |
commit | a4782a768278b145dcab0171c43214bc07b49f56 (patch) | |
tree | 11f2fbf590e2e0de6c2596d4572c0ae30cbc3959 | |
parent | fd0a6ceb4158701ca63e9b40169d5a1be4ba7772 (diff) | |
parent | cf3d1ed3bd47ec539993135bf193b0bead8abfe2 (diff) | |
download | pelican-themes-a4782a768278b145dcab0171c43214bc07b49f56.tar.gz |
Merge pull request #403 from jeremyn/master
Use HTTPS Creative Commons URLs where appropriate
-rw-r--r-- | backdrop/templates/footer.html | 2 | ||||
-rw-r--r-- | backdrop/templates/sample.html | 4 | ||||
-rw-r--r-- | martyalchin/templates/base.html | 2 | ||||
-rw-r--r-- | pelican-bootstrap3/README.md | 4 | ||||
-rw-r--r-- | pelican-bootstrap3/templates/includes/cc-license.html | 4 | ||||
-rw-r--r-- | photowall/templates/base.html | 2 |
6 files changed, 9 insertions, 9 deletions
diff --git a/backdrop/templates/footer.html b/backdrop/templates/footer.html index b5db695..d57bb34 100644 --- a/backdrop/templates/footer.html +++ b/backdrop/templates/footer.html @@ -35,7 +35,7 @@ <div class="small-12 medium-6 columns"> <p class="small-text-center medium-text-left"> © {{ YEAR }} {{ AUTHOR }} {{ LICENSE }} - <!-- <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="cc.png" /></a>--> + <!-- <a rel="license" href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="cc.png" /></a>--> </p> </div> <div class="small-12 medium-6 columns"> diff --git a/backdrop/templates/sample.html b/backdrop/templates/sample.html index 8ed4640..4514f61 100644 --- a/backdrop/templates/sample.html +++ b/backdrop/templates/sample.html @@ -89,7 +89,7 @@ <hr> <div class="small-12 medium-6 columns"> <p class="small-text-center medium-text-left">© 2015 Chris MacMackin - <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="cc.png" /></a></p> + <a rel="license" href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="cc.png" /></a></p> </div> <div class="small-12 medium-6 columns"> <p class="small-text-center medium-text-right">Proudly powered by @@ -176,7 +176,7 @@ <hr> <div class="small-12 medium-6 columns"> <p class="small-text-center medium-text-left">© 2015 Chris MacMackin - <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="cc.png" /></a></p> + <a rel="license" href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="cc.png" /></a></p> </div> <div class="small-12 medium-6 columns"> <p class="small-text-center medium-text-right">Proudly powered by diff --git a/martyalchin/templates/base.html b/martyalchin/templates/base.html index eea18f9..43aa15d 100644 --- a/martyalchin/templates/base.html +++ b/martyalchin/templates/base.html @@ -10,6 +10,6 @@ {% block content %} {% endblock %} <div class="copyright info vcard">Design by <a class="fn url" - href="http://martyalchin.com">Marty Alchin</a>, <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">some rights reserved</a>. Powered by <a href="http://alexis.notomyidea.org/pelican/">pelican</a></div> + href="http://martyalchin.com">Marty Alchin</a>, <a rel="license" href="https://creativecommons.org/licenses/by-sa/3.0/us/">some rights reserved</a>. Powered by <a href="http://alexis.notomyidea.org/pelican/">pelican</a></div> </body> </html> diff --git a/pelican-bootstrap3/README.md b/pelican-bootstrap3/README.md index cdb9b02..00ed5d3 100644 --- a/pelican-bootstrap3/README.md +++ b/pelican-bootstrap3/README.md @@ -252,7 +252,7 @@ If you're using reStructuredText for writing articles and pages, you can include ### Content license -You can optionally declare a [Creative Commons license](http://creativecommons.org) for the content of your site. It will appear in the site's footer. To enable, use one of the following two ways for configuration. +You can optionally declare a [Creative Commons license](https://creativecommons.org) for the content of your site. It will appear in the site's footer. To enable, use one of the following two ways for configuration. * To choose the license by name, set `CC_LICENSE` to the common abbreviated name of the license: `"CC-BY"` (require attribution), `"CC-BY-SA"` (require ShareAlike), `"CC-BY-ND"` (NoDerivatives) , `"CC-BY-NC"` (require attribution, no commercial reuse), `"CC-BY-NC-SA"` (require ShareAlike, no commercial reuse), or `"CC-BY-NC-ND"` (NoDerivatives, no commercial reuse). * Alternatively, choose the licence by features: @@ -260,7 +260,7 @@ You can optionally declare a [Creative Commons license](http://creativecommons.o * `CC_LICENSE_COMMERCIAL` - `"yes"` if commercial reuse is permitted, and `"no"` otherwise. * Optionally, you can include attribution markup in the license mark by setting `CC_ATTR_MARKUP` to _True_. -The license choice mirrors the [Creative Commons License Chooser](http://creativecommons.org/choose/). Source for the macro that renders the mark is at http://github.com/hlapp/cc-tools. +The license choice mirrors the [Creative Commons License Chooser](https://creativecommons.org/choose/). Source for the macro that renders the mark is at http://github.com/hlapp/cc-tools. Alternatively, if you want to use another license type, you can instead use the `CUSTOM_LICENSE` property to set a license string that will be showed at the bottom of every page. Raw HTML is allowed. diff --git a/pelican-bootstrap3/templates/includes/cc-license.html b/pelican-bootstrap3/templates/includes/cc-license.html index c64f265..a1592e6 100644 --- a/pelican-bootstrap3/templates/includes/cc-license.html +++ b/pelican-bootstrap3/templates/includes/cc-license.html @@ -24,7 +24,7 @@ {# specifying how under which title, to which creator, and #} {# to which URL to attribute the work #} {# The parameters all mirror the Creative Commone license chooser: #} -{# http://creativecommons.org/choose/ #} +{# https://creativecommons.org/choose/ #} {# ------------------------------------------------------------------------ #} {# Copyright (c) 1994 Hilmar Lapp, hlapp@drycafe.net. #} {# Licensed under the terms of the MIT License. #} @@ -53,7 +53,7 @@ {% set cc_title_suffix = cc_title_suffix ~ "-ShareAlike" %} {% endif %} {% endif %} - {% set cc_title, cc_uri, cc_icon = ("Creative Commons AttributionCCSUFFIX 4.0 International License","http://creativecommons.org/licenses/CCNAME/4.0/","//i.creativecommons.org/l/CCNAME/4.0/80x15.png") %} + {% set cc_title, cc_uri, cc_icon = ("Creative Commons AttributionCCSUFFIX 4.0 International License","https://creativecommons.org/licenses/CCNAME/4.0/","//i.creativecommons.org/l/CCNAME/4.0/80x15.png") %} <a rel="license" href="{{ cc_uri|replace('CCNAME',cc_name) }}"><img alt="Creative Commons License" style="border-width:0" src="{{ cc_icon|replace('CCNAME',cc_name) }}" /></a> {% if br_after_img %}<br/>{% endif %} {% if attr_markup %} diff --git a/photowall/templates/base.html b/photowall/templates/base.html index f5c01eb..ed1707a 100644 --- a/photowall/templates/base.html +++ b/photowall/templates/base.html @@ -74,7 +74,7 @@ function greyon(img) </section><!-- /#extras --> <footer id="contentinfo" class="body"> - <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a> + <a rel="license" href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a> </footer><!-- /#contentinfo --> {% include 'analytics.html' %} |