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