(Grav GitSync) Automatic Commit from GitSync

This commit is contained in:
GitSync
2026-06-14 00:27:27 +00:00
parent a2920f812d
commit 3c1bfda80f
2933 changed files with 491625 additions and 0 deletions
@@ -0,0 +1,9 @@
{% extends "forms/field.html.twig" %}
{% block label %}
{{ label ?: "File" }}
{% endblock %}
{% block input %}
<input name="{{ name }}" type="file" style="width: 100%"/>
{% endblock %}
@@ -0,0 +1,22 @@
<div class="remodal" data-remodal-id="{{remodalId}}" data-remodal-options="hashTracking: false">
<form method="post" onsubmit='return false;'>
{% for name, field in fields %}
{% if field.type %}
{% set value = data.value(name) %}
<div class="block block-{{field.type}}">
{% include ["forms/fields/#{field.type}/#{field.type}.html.twig", 'forms/fields/text/text.html.twig'] %}
</div>
{% endif %}
{% endfor %}
<div class="form-field grid">{{message}}</div>
<div class="button-bar">
<!--<div class="loading">-->
<!--{{ "Moving" }}... <i class="fa fa-spinner fa-spin"></i>-->
<!--</div>-->
<button class="button" style="visibility: visible" name="cancel">{{ "Cancel" }}</button>
<button class="button primary" style="visibility: visible" name="continue">{{ "Continue" }}</button>
</div>
</form>
</div>