12 lines
463 B
HTML
12 lines
463 B
HTML
{% extends "yksa/base.html" %}
|
|
{% load i18n %}
|
|
{% comment %}
|
|
The three-line base.html every service is expected to keep. If a service needs
|
|
more than blocks to fit the chrome, the chrome is wrong.
|
|
{% endcomment %}
|
|
{% block title %}{% trans "Test service" %}{% endblock title %}
|
|
{% block navbar_items %}
|
|
<li class="nav-item">
|
|
<a class="nav-link nav-full-height border border-top-0" href="/">{% trans "Home" %}</a>
|
|
</li>
|
|
{% endblock navbar_items %}
|