Ok, I'm not sure if I've missed a trick here. But I can't find anything in the docs or online with the solution. Basically I'm trying to include a big block of javascript with a template block but same goes for styles. I have template structure summarised:
{# base.html.twig %}
<html>
<head>
<title>{% block title %}Base template{% endblock %}</title>
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('bundles/thisBundle/css/theme.css') }}" type="text/css" media="all" />
{% endblock %}
{% block scripts %}{% endblock %}
<head>
<body>
{% block content %}hello from base{% endblock %}
{% block javascripts %}
{% endblock %}
</body>
</html>
{# index.html.twig #}
{% extends 'base.html.twig %}
{% block content %}
{% include 'ThisBundleBundle::templatewithascript.html.twig' %}
<p>Some content here<p>
{% include 'ThisBundleBundle::anothertemplatewithascript.html.twig' %}
{% endblock %}
Now here's my problem. From this template I would like to add to the content of the javascripts/stylesheets block but my include is within the content block and I can't extend index.html.twig in templatewithascript.html.twig, basically I want this to work:
{# templatewithascript.html.twig #}
{% block stylesheets %}
<link href="{{ asset('bundles/thisBundle/css/blockspecificstyle.css') }}" rel="stylesheet" type="text/css" />
{% endblock %}
{% block body %}
<p>Click here and something happens</p>
{% endblock %}
{% block javascripts %}
<script type="text/javascript">
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
</script>
{% endblock %}
Or is this just a limitation and I have to include the style/scripts in the template that includes the content? Thanks. Lu