Fix to about page
This commit is contained in:
parent
56114c251f
commit
d87ac861ca
|
@ -19,24 +19,26 @@
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="section">
|
<section class="section container">
|
||||||
<div class="level">
|
<p>
|
||||||
<div class="level-left">
|
<a class="button is-primary" href="{% url "login" %}">
|
||||||
<a class="level-item button is-primary" href="{% url "login" %}">
|
Log in
|
||||||
Log in
|
</a>
|
||||||
</a>
|
</p>
|
||||||
</div>
|
{% if request.session.instance %}
|
||||||
<div class="level-right">
|
{% if request.session.username or request.session.access_token %}
|
||||||
<a class="level-item" href="{% url "home" %}">
|
|
||||||
Or continue to your home timeline.
|
<p>
|
||||||
</a>
|
<a href="{% url "home" %}">
|
||||||
</div>
|
Or continue to your home timeline.
|
||||||
</div>
|
</a>
|
||||||
|
</p>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
This is version {{ version }} of brutaldon.
|
This is version {{ version }} of brutaldon.
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue