Allow for both http and https URIs
diff --git a/static/css/style.less b/static/css/style.less
index 360325a..97dfd11 100644
--- a/static/css/style.less
+++ b/static/css/style.less
@@ -7,7 +7,7 @@
@blue: #0e94ec;
@accent: @blue;
-@import (css) "http://fonts.googleapis.com/css?family=Ubuntu|Ubuntu+Mono";
+@import (css) "//fonts.googleapis.com/css?family=Ubuntu|Ubuntu+Mono";
@sans: 'Ubuntu', sans-serif;
@mono: 'Ubuntu Mono', monospace;
diff --git a/templates/article.html b/templates/article.html
index 1525656..e094c52 100644
--- a/templates/article.html
+++ b/templates/article.html
@@ -67,7 +67,7 @@
var disqus_identifier = "{{ article.url }}";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
- dsq.src = 'http://{{ DISQUS_SITENAME }}.disqus.com/embed.js';
+ dsq.src = '//{{ DISQUS_SITENAME }}.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>