mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-12 18:16:24 +01:00
Move base template
Refactor services urls and templates
Refactor groupmanagement urls and templates
Refactor notifications urls and templates
20 lines
562 B
HTML
20 lines
562 B
HTML
{% extends "allianceauth/base.html" %}
|
|
|
|
{% block title %}Alliance Auth{% endblock %}
|
|
|
|
{% block page_title %}Something something here{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
<div class="col-lg-12">
|
|
|
|
<h1 class="page-header text-center">Help</h1>
|
|
|
|
<div class="container-fluid">
|
|
<div class="embed-responsive embed-responsive-16by9">
|
|
<iframe class="embed-responsive-item" src="https://allianceauth.readthedocs.io/en/latest/features/"></iframe>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|
|
|