20 lines
835 B
HTML
20 lines
835 B
HTML
<!-- v2a -->
|
|
|
|
{% extends 'layouts/layout.html' %}
|
|
|
|
{% block page_body %}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='dist/css/core_home.bundle.css') }}">
|
|
|
|
<div class="home-hero">
|
|
<h2 class="home-hero-title">Dog Training!</h2>
|
|
{% if not model.user.get_is_logged_in() %}
|
|
<div class="{{ model.FLAG_CONTAINER }} {{ model.FLAG_ROW }}">
|
|
<a class="{{ model.FLAG_NAV_USER_LOGIN }} {{ model.FLAG_BUTTON }} {{ model.FLAG_BUTTON_PRIMARY }}">Login</a>
|
|
</div>
|
|
{% elif model.user.can_admin_dog %}
|
|
<div class="{{ model.FLAG_CONTAINER }} {{ model.FLAG_ROW }}">
|
|
<a class="{{ model.FLAG_NAV_DOG_HOME }} {{ model.FLAG_BUTTON }} {{ model.FLAG_BUTTON_PRIMARY }}">Dog Home</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %} |