13 lines
352 B
HTML
13 lines
352 B
HTML
|
|
{% if site.force-https and jekyll.environment == "production" %}
|
|
|
|
<!-- Force HTTPS Start -->
|
|
<script>
|
|
// Don't force http when serving the website locally
|
|
if (!(window.location.host.startsWith("127.0.0.1")) && (window.location.protocol != "https:"))
|
|
window.location.protocol = "https";
|
|
</script>
|
|
|
|
<!-- Force HTTPS End -->
|
|
|
|
{% endif %}
|