mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-16 20:49:00 -04:00
17 lines
273 B
HTML
17 lines
273 B
HTML
|
|
{% extends "admin_template.html" %}
|
||
|
|
|
||
|
|
{% block page_title %}
|
||
|
|
Hello world!
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
{% block content %}
|
||
|
|
|
||
|
|
<div class="grid-row">
|
||
|
|
<div class="column-two-thirds">
|
||
|
|
<h1 class="heading-xlarge">Dashboard</h1>
|
||
|
|
|
||
|
|
<p>Insert dashboard here.</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
{% endblock %}
|