20 lines
No EOL
571 B
Twig
20 lines
No EOL
571 B
Twig
<!doctype html>
|
|
<head>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css">
|
|
|
|
{% block stylesheets %}
|
|
{{ encore_entry_link_tags('app') }}
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
{{ encore_entry_script_tags('app') }}
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
{% for column in columns %}
|
|
{{ include('kanban/column.html.twig') }}
|
|
{% endfor %}
|
|
</div>
|
|
</body> |