Use templates relative to mixins
This commit is contained in:
parent
f3087dba09
commit
9d445e2d1a
|
@ -1,4 +1,4 @@
|
||||||
{% include 'partials/notify.html' %}
|
{% include 'mixins/partials/notify.html' %}
|
||||||
{% if page_title is not None %}
|
{% if page_title is not None %}
|
||||||
<h1 class="title is-4">{{ page_title }}</h1>
|
<h1 class="title is-4">{{ page_title }}</h1>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% include 'partials/notify.html' %}
|
{% include 'mixins/partials/notify.html' %}
|
||||||
{% if page_title is not None %}
|
{% if page_title is not None %}
|
||||||
<h1 class="title is-4">{{ page_title }}</h1>
|
<h1 class="title is-4">{{ page_title }}</h1>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% include 'partials/notify.html' %}
|
{% include 'mixins/partials/notify.html' %}
|
||||||
{% if page_title is not None %}
|
{% if page_title is not None %}
|
||||||
<h1 class="title is-4">{{ page_title }}</h1>
|
<h1 class="title is-4">{{ page_title }}</h1>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<p class="panel-heading" style="padding: .2em; line-height: .5em;">
|
<p class="panel-heading" style="padding: .2em; line-height: .5em;">
|
||||||
<i class="fa-solid fa-arrows-up-down-left-right has-text-grey-light"></i>
|
<i class="fa-solid fa-arrows-up-down-left-right has-text-grey-light"></i>
|
||||||
{% block close_button %}
|
{% block close_button %}
|
||||||
{% include 'partials/close-window.html' %}
|
{% include 'mixins/partials/close-window.html' %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block heading %}
|
{% block heading %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<p class="panel-heading" style="padding: .2em; line-height: .5em;">
|
<p class="panel-heading" style="padding: .2em; line-height: .5em;">
|
||||||
<i class="fa-solid fa-arrows-up-down-left-right has-text-grey-light"></i>
|
<i class="fa-solid fa-arrows-up-down-left-right has-text-grey-light"></i>
|
||||||
{% block close_button %}
|
{% block close_button %}
|
||||||
{% include 'partials/close-widget.html' %}
|
{% include 'mixins/partials/close-widget.html' %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
<i
|
<i
|
||||||
class="fa-solid fa-arrows-minimize has-text-grey-light float-right"
|
class="fa-solid fa-arrows-minimize has-text-grey-light float-right"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<magnet-block attract-distance="10" align-to="outer|center" class="floating-window">
|
<magnet-block attract-distance="10" align-to="outer|center" class="floating-window">
|
||||||
{% extends 'wm/panel.html' %}
|
{% extends 'mixins/wm/panel.html' %}
|
||||||
{% block heading %}
|
{% block heading %}
|
||||||
{{ title }}
|
{{ title }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue