Переделана статья про гадалку

This commit is contained in:
2019-06-28 22:35:49 +03:00
parent 843f743258
commit 50e0624c2c
7 changed files with 106 additions and 120 deletions

View File

@ -4,6 +4,9 @@
{% include 'head.twig' %}
<link rel="stylesheet" href="{{ hashed_asset('/static/layout_internal.css') }}">
{% block css %}{% endblock %}
{% for s in page.styles | default([]) %}
<link rel="stylesheet" href="{{ hashed_asset(s) }}">
{% endfor %}
</head>
<body>
@ -25,6 +28,9 @@
<script async src="{{ hashed_asset('/static/layout_internal.js') }}"></script>
{% block js %}{% endblock %}
{% for s in page.scripts | default([]) %}
<script async src="{{ hashed_asset(s) }}"></script>
{% endfor %}
{% include 'font-awesome.twig' %}
</body>