mirror of https://github.com/snachodog/mybuddy.git
14 lines
447 B
HTML
14 lines
447 B
HTML
{% extends "babyblotter/base.html" %}
|
|
{% load static widget_tweaks %}
|
|
|
|
{% block page %}
|
|
<div id="view-{{ request.resolver_match.view_name }}" class="container">
|
|
<div class="text-center mb-4">
|
|
<h1 class="display-3 mb-3"><span class="text-info">Baby</span> Blotter</h1>
|
|
</div>
|
|
<div class="bg-light p-4 rounded text-dark">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|