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 %}