initial commit
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<!doctype html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
{% if app.environment == "prod" %}
|
||||
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" />
|
||||
{% endif %}
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>{% block title %}Sprawozdania{% endblock %}</title>
|
||||
|
||||
{% block stylesheets %}
|
||||
{# 'app' must match the first argument to addEntry() in webpack.config.js #}
|
||||
{{ encore_entry_link_tags('app') }}
|
||||
|
||||
<!-- Renders a link tag (if your module requires any CSS)
|
||||
<link rel="stylesheet" href="/build/app.css"> -->
|
||||
{% endblock %}
|
||||
|
||||
{% block javascripts %}
|
||||
{{ encore_entry_script_tags('app') }}
|
||||
|
||||
<!-- Renders app.js & a webpack runtime.js file
|
||||
<script src="/build/runtime.js" defer></script>
|
||||
<script src="/build/app.js" defer></script>
|
||||
See note below about the "defer" attribute -->
|
||||
{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
{% block navigation %}
|
||||
{% include "navigation/top.html.twig" %}
|
||||
{% endblock %}
|
||||
<div class="container-fluid" style="margin: 10px 0;">
|
||||
{% block body %}{% endblock %}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user