diff --git a/reader/templates/reader/browse.html b/reader/templates/reader/browse.html
index 0ffb7b60ba68822258c6417fb3f8ad7955229638..fc76be36c5eb0adfe2e9d1d7556088e382d3212c 100644
--- a/reader/templates/reader/browse.html
+++ b/reader/templates/reader/browse.html
@@ -12,5 +12,11 @@
         </p>
     </div>
     <br>
+    <h2 class="subtitle">Public Books</h2>
     {% include "reader/book_list_widget.html" with books=books %}
+
+    {% if books_private %}
+        <h2 class="subtitle">Private Books You Can Access</h2>
+        {% include "reader/book_list_widget.html" with books=books_private %}
+    {% endif %}
 {% endblock %}
\ No newline at end of file