mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 02:41:08 +00:00
8f57aa5f37
Redoes the UI to remove timelines, promote domains, and a lot of other things to support the refactor.
15 lines
386 B
HTML
15 lines
386 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{% block subtitle %}{% endblock %} - Settings{% endblock %}
|
|
|
|
{% block body_class %}wide{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="settings">
|
|
{% include "settings/_menu.html" %}
|
|
<div class="settings-content">
|
|
{% block settings_content %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|