diff --git a/frontend/templates/work.html b/frontend/templates/work.html index b7b50e3e..6a40d939 100644 --- a/frontend/templates/work.html +++ b/frontend/templates/work.html @@ -229,6 +229,9 @@ LibraryThing +
+ {% include "explore.html" %} +

Comments

diff --git a/static/scss/bookview.scss b/static/scss/bookview.scss index 0f794579..6caa515e 100644 --- a/static/scss/bookview.scss +++ b/static/scss/bookview.scss @@ -39,6 +39,10 @@ .book-sidebar-item span { display: none; } + + .book-sidebar-explore { + display: none; + } .bookRead { flex: 100%; @@ -137,3 +141,43 @@ .description-more-content { padding-top: 20px; } + +.book-sidebar-explore { + width: 150px; + .jsmodule { + margin: 0; + padding: 0; + + h3 { + background-color: $pale-blue; + border-radius: 0; + height: auto; + span { + text-align: center; + padding: 4px; + } + margin-bottom: 4px; + } + + .menu { + + li { + > span { + display: none; + } + a { + padding: 0; + padding-bottom: 4px; + } + a:hover { + text-decoration: underline; + } + } + + .level3 { + padding-left: 10px; + } + } + } + +}