mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-04-02 00:20:02 -04:00
The heading structure of most pages is incorrect (`<h2>` followed by `<h1>`). The `<h1>` indicates the main purpose of the page, the service name (currently the first `<h2>`) doesn't need to be a heading.
26 lines
779 B
HTML
26 lines
779 B
HTML
{% extends "admin_template.html" %}
|
||
|
||
{% block per_page_title %}
|
||
{% block service_page_title %}{% endblock %} – {{ current_service.name }}
|
||
{% endblock %}
|
||
|
||
{% block fullwidth_content %}
|
||
<div id="content">
|
||
<div class="navigation-service">
|
||
<div class="navigation-service-name">
|
||
{{ current_service.name }}
|
||
</div>
|
||
<a href="{{ url_for('main.choose_service') }}" class="navigation-service-switch">Switch service</a>
|
||
</div>
|
||
<div class="grid-row">
|
||
<div class="column-one-third">
|
||
{% include "main_nav.html" %}
|
||
</div>
|
||
<main role="main" class="column-two-thirds column-main">
|
||
{% include 'flash_messages.html' %}
|
||
{% block maincolumn_content %}{% endblock %}
|
||
</main>
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|