Move plugins to manifest, pin Docker version, add Makefile

- Add plugins.txt listing all plugins for reproducible installs
- Add Makefile with setup/start/stop/install-plugins targets
- Remove user/plugins/ from git tracking
- Pin Docker image to 1.7.49.5-ls244

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-19 00:55:59 +02:00
parent 8f9ac9ca6e
commit 4f52d4d085
2738 changed files with 0 additions and 472444 deletions
@@ -1,20 +0,0 @@
{% if result %}
<div class="alert warning"> Security Scan complete: <strong>{{ result|length }} potential XSS issues found...</strong></div>
<table>
{% for route, results in result %}
<tr>
<td><i class="fa fa-file-text-o"></i> <a href="{{ base_url ~ '/pages' ~ route }}">{{ route }}</a></td>
{% set results_string = [] %}
{% for key, value in results %}
{% set results_string = results_string|merge(['<span class="key">' ~ key ~ '</span>: <span class="value">' ~ value|titleize ~ '</span>']) %}
{% endfor %}
<td class="double">{{ results_string|join(', ')|raw }}</td>
</tr>
{% endfor %}
</table>
{% else %}
<div class="alert info">Security Scan complete: <strong>No issues found...</strong></div>
{% endif %}
@@ -1,31 +0,0 @@
{% if result %}
<div class="alert warning"><strong>YAML Linting:</strong> Found <strong>{{ result|length }}</strong> linting errors</div>
<table>
{% for path, error in result %}
{% set page_url = base_url_simple ~ '/' ~ admin_route %}
{% set bits = path|pathinfo %}
{% if admin.multilang %}
{% set lang = (bits.filename|pathinfo).extension %}
{% set page_url = base_url_simple ~ '/' ~ lang ~ '/' ~ admin_route %}
{% endif %}
{% set page_path = base_path ~ bits.dirname %}
{% set page = grav.pages.get(page_path) %}
<tr>
<td><i class="fa fa-file-text-o"></i>
{% if page.url %}
<a href="{{ page_url ~ '/pages' ~ page.rawRoute }}/mode:expert">{{ page.route }}</a>
{% else %}
{{ path }}
{% endif %}
{% if lang %}
<span class="badge">{{ lang }}</span>
{% endif %}
</td>
<td class="double">{{ error }}</td>
</tr>
{% endfor %}
</table>
{% else %}
<div class="alert info"><strong>YAML Linting:</strong> No errors found.</div>
{% endif %}