Initial commit: Grav CMS setup with HTML reference material

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-18 23:38:26 +02:00
commit a9be15caf3
2261 changed files with 418989 additions and 0 deletions
@@ -0,0 +1,33 @@
{% extends 'partials/base.html.twig' %}
{% set scope = form.scope %}
{% set field_layout = 'admin' %}
{% block messages %}{% endblock %}
{% block body %}
<body id="admin-login-wrapper">
<section id="admin-login" class="login-box-shadow {{ classes }}">
{% include 'partials/login-logo.html.twig' %}
{% include 'partials/messages.html.twig' %}
{% block instructions %}{% endblock %}
{% block integration %}{% endblock %}
<form method="post" action="">
<div class="padding">
{% block form %}{% endblock %}
{{ nonce_field(form.getNonceAction(), form.getNonceName())|raw }}
</div>
</form>
<script>
$(document).ready( function() {
$('#messages').delay(5000).animate({ height: 'toggle', opacity: 'toggle' }, 'slow');
});
</script>
</section>
</body>
{% endblock %}