1234567891011121314151617 |
- {% extends "base.html" %}
- {% block head %}
- <title>{{ brand.display_name }} on Hogumathi</title>
- {% endblock %}
- {% block content %}
- <div class="w-100" style="height: 80px;">
- {% include "partial/page-nav.html" %}
- </div>
-
- {% if brand %}
- {% include "partial/brand-info.html" %}
- {% endif %}
-
- {% endblock %}
|