mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2026-05-07 05:16:45 +02:00
Broke footer out into a partial
This commit is contained in:
2
themes/grav/css-compiled/template.css
vendored
2
themes/grav/css-compiled/template.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1130,6 +1130,10 @@ body.sidebar-quickopen #admin-main {
|
||||
#footer {
|
||||
text-align: center;
|
||||
padding: 3rem 0 1rem;
|
||||
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
// Chart overrides
|
||||
|
||||
@@ -68,7 +68,7 @@
|
||||
</div>
|
||||
{% block footer %}
|
||||
<footer id="footer">
|
||||
<a href="http://getgrav.org">Grav</a> v<span class="grav-version">{{ constant('GRAV_VERSION') }}</span> - Admin v{{ admin_version }} - {{ "PLUGIN_ADMIN.WAS_MADE_WITH"|tu|lower }} <i class="fa fa-heart-o pulse"></i> {{ "PLUGIN_ADMIN.BY"|tu|lower }} <a href="https://trilby.media">Trilby Media</a>.
|
||||
{% include 'partials/footer.html.twig' %}
|
||||
</footer>
|
||||
{% endblock %}
|
||||
</div>
|
||||
|
||||
5
themes/grav/templates/partials/footer.html.twig
Normal file
5
themes/grav/templates/partials/footer.html.twig
Normal file
@@ -0,0 +1,5 @@
|
||||
{% if custom_admin_footer %}
|
||||
{{ custom_admin_footer|raw }}
|
||||
{% else %}
|
||||
<a href="http://getgrav.org">Grav</a> v<span class="grav-version">{{ constant('GRAV_VERSION') }}</span> - Admin v{{ admin_version }} - {{ "PLUGIN_ADMIN.WAS_MADE_WITH"|tu|lower }} <i class="fa fa-heart-o pulse"></i> {{ "PLUGIN_ADMIN.BY"|tu|lower }} <a href="https://trilby.media">Trilby Media</a>.
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user