theme.html.twig 377 B

12345678910111213
  1. {% set theme = admin.themes[admin.route] %}
  2. {% set blueprints = theme.blueprints() %}
  3. <h1>
  4. {{ blueprints.get('name')|e }}
  5. <small>{{ blueprints.get('version') ? 'v' ~ blueprints.get('version')|e }}</small>
  6. </h1>
  7. {% include 'partials/messages.html.twig' %}
  8. <p>{{ blueprints.get('description') }}</p>
  9. {% include 'partials/blueprints.html.twig' with { data: theme } %}