Hide join button when registration is closed

This commit is contained in:
Mouse Reeve 2021-01-03 15:41:20 -08:00
parent b50d38d769
commit c0bd0736d3
3 changed files with 10 additions and 9 deletions

View file

@ -8,7 +8,7 @@
<section class="tile is-ancestor">
<div class="tile is-7 is-parent">
<div class="tile is-child block">
<div class="tile is-child box">
{% include 'snippets/about.html' %}
</div>
</div>

View file

@ -117,8 +117,9 @@
</div>
</a>
</div>
{% elif request.path != '/login' and request.path != '/login/' %}
{% else %}
<div class="navbar-item">
{% if request.path != '/login' and request.path != '/login/' %}
<div class="columns">
<div class="column">
<form name="login" method="post" action="/user-login">
@ -137,19 +138,17 @@
</div>
</form>
</div>
{% if site.allow_registration and request.path != '' and request.path != '/' %}
<div class="column is-narrow">
<a href="/login" class="button is-link">
<a href="/" class="button is-link">
Join
</a>
</div>
{% endif %}
</div>
{% endif %}
</div>
{% else %}
<div class="navbar-item">
<a href="/login" class="button is-link">
Join
</a>
{% endif %}
{% endif %}
</div>
</div>
</nav>

View file

@ -10,7 +10,9 @@
{% if book.authors %}
<p class="subtitle is-5">by {% include 'snippets/authors.html' with book=book %}</p>
{% endif %}
{% if book|book_description %}
<blockquote class="content">{{ book|book_description|to_markdown|safe|truncatewords_html:50 }}</blockquote>
{% endif %}
</div>
</div>
{% endif %}