From 2e2317022a78bb7990d1544bc44e085542aea0b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Forr=C3=B3?= Date: Fri, 22 Mar 2019 12:52:31 +0100 Subject: [PATCH] Add clips template --- templates/clips.html.twig | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 templates/clips.html.twig diff --git a/templates/clips.html.twig b/templates/clips.html.twig new file mode 100644 index 0000000..5e2a355 --- /dev/null +++ b/templates/clips.html.twig @@ -0,0 +1,35 @@ +{% extends 'partials/base.html.twig' %} + +{% block head %} + + + {{ parent() }} + +{% endblock head %} + +{% block stylesheets %} + {% do assets.addCss('/clips/assets/styles.bundle.css') %} + + {{ parent() }} + +{% endblock %} + +{% block bottom %} + {{ parent() }} + + {% do assets.addJs('/clips/assets/inline.bundle.js') %} + {% do assets.addJs('/clips/assets/polyfills.bundle.js') %} + {% do assets.addJs('/clips/assets/main.bundle.js') %} + + {{ assets.js() }} + +{% endblock %} + +{% block content %} + {{ page.content }} + +
+ +
+ +{% endblock %}