I try to write angular app base on symfony framework
here try this codes in main twig
<div ng:include src="'/Learn/web/bundles/learn/view/test01.html'"></div>
<div ng:include src="/Learn/web/bundles/learn/view/test01.html"></div>
<div ng:include src="'{{ asset("bundles/learn/view/test01.html") }}'"></div>
<div ng:include src="{{ asset("bundles/learn/view/test01.html") }}"></div>
"test01.html" address : Learn/web/bundles/learn/view/test01.html
I cant get answer from any of this code
Also i dont know how set template address for my routes in angular when use symfony
Thanks