mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 23:26:27 +03:00
11 lines
321 B
Twig
11 lines
321 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}API Platform Admin{% endblock %}
|
|
|
|
{% block body %}<div id="api-platform-admin"></div>{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
<script type="text/plain" id="api-entrypoint">{{ path('api_entrypoint') }}</script>
|
|
{{ encore_entry_script_tags('admin') }}
|
|
{% endblock %}
|