You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
567 B
Twig
25 lines
567 B
Twig
{% extends "dash/_frame.twig" %}
|
|
|
|
{% block title %}
|
|
{{ title }}
|
|
{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/dash/start.css">
|
|
{% endblock %}
|
|
|
|
{% block mainContent %}
|
|
<article role="site-restore">
|
|
<section role="restore-fresh">
|
|
{% apply spaceless %}
|
|
{{ include("dash/forms/init-fresh.twig") }}
|
|
{% endapply %}
|
|
</section>
|
|
<section role="restore-backup">
|
|
{% apply spaceless %}
|
|
{{ include("dash/forms/init-backup.twig") }}
|
|
{% endapply %}
|
|
</section>
|
|
</article>
|
|
{% endblock %}
|