Move .call-to-action-bottom out of .testimonials.

It should be its own first level element.
This commit is contained in:
Brock Whittaker 2017-08-30 14:15:06 -07:00
parent 7f46056932
commit 64a629fc77
1 changed files with 16 additions and 16 deletions

View File

@ -598,22 +598,22 @@
</div>
</div>
</div>
<div class="padded-content call-to-action-bottom">
<h1>Experience Zulip today!</h1>
{% if register_link_disabled %}
{% elif only_sso %}
<a href="{{ url('login-sso') }}">
<button href="" type="button"
name="button">{{ _('Log in now!') }}</button>
</a>
{% else %}
<a href="{{ url('register') }}">
<button href="" type="button"
name="button">{{ _('Register now!') }}</button>
</a>
{% endif %}
<div class="zulip-octopus"></div>
</div>
</div>
<div class="padded-content call-to-action-bottom">
<h1>Experience Zulip today!</h1>
{% if register_link_disabled %}
{% elif only_sso %}
<a href="{{ url('login-sso') }}">
<button href="" type="button"
name="button">{{ _('Log in now!') }}</button>
</a>
{% else %}
<a href="{{ url('register') }}">
<button href="" type="button"
name="button">{{ _('Register now!') }}</button>
</a>
{% endif %}
<div class="zulip-octopus"></div>
</div>
</div>
{% endblock %}