Disqus comments are shown by default if enabled
diff --git a/README.md b/README.md
index 14f22ef..fc9bf30 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,6 @@
 - `GOOGLE_PLUS_URL`: A link to your Google+ profile. Used for the [Google Authorship](http://www.google.com/insidesearch/features/authorship/index.html) feature.
 - `USER_LOGO_URL`: The image to display as the profile image. Can be local or a remote URL.
 - `DISQUS_SITENAME`: Set this to enable Disqus comments on articles.
-- `COLLAPSE_COMMENTS`: Set to `True` to have article comments hidden by default. Clicking on the 'comments' link will toggle visibility.
 - `TAGLINE`: The site's tagline. Rendered right below the image.
 - `SCROLL_TO_CONTENT`: If this is set to `True`, when content is below the sidebar (for example, on mobile), the page will be scrolled down to the content when it loads. An exception is made for the home page.
 - `FORCE_PIXELS`: Some screens (mostly mobiles) don't use pixels directly and scale based on the concept of a 'display pixel'. Setting this to `True` tells the device to use actual pixels. Enable with care.
diff --git a/templates/article.html b/templates/article.html
index f0b23fe..57c8d44 100644
--- a/templates/article.html
+++ b/templates/article.html
@@ -42,25 +42,10 @@
       {% endfor %}
     </p>
     {% endif %}
-    {% if DISQUS_SITENAME %}
-      {% if COLLAPSE_COMMENTS %}
-      <p>Comments: <a href="#" onclick="javascript:toggleComments();return false;">toggle</a></p>
-      {% endif %}
-    {% endif %}
   </div>
 
   {% if DISQUS_SITENAME %}
-
-    {% if COLLAPSE_COMMENTS %}
-    <script language="javascript">
-        function toggleComments() {
-            var commentDiv = document.getElementById("article_comments");
-            (commentDiv.style.display == "none") ? commentDiv.style.display = "block" : commentDiv.style.display = "none";
-            return false;
-        }
-    </script>
-    {% endif %}
-    <div id="article_comments" style="display:{%if COLLAPSE_COMMENTS %}none{% else %}block{% endif %}">
+    <div id="article_comments">
         <div id="disqus_thread"></div>
         <script type="text/javascript">
            var disqus_identifier = "{{ article.url }}";