##// END OF EJS Templates
Start to organize template folder
Matthias BUSSONNIER -
Show More
@@ -25,12 +25,18 b' from IPython.utils import path'
25 25
26 26 from jinja2 import Environment, FileSystemLoader
27 27 env = Environment(
28 loader=FileSystemLoader('./templates/'),
28 loader=FileSystemLoader([
29 './templates/',
30 './templates/skeleton/',
31 ]),
29 32 extensions=['jinja2.ext.loopcontrols']
30 33 )
31 34
32 35 texenv = Environment(
33 loader=FileSystemLoader('./templates/tex/'),
36 loader=FileSystemLoader([
37 './templates/tex/',
38 './templates/skeleton/tex/',
39 ]),
34 40 extensions=['jinja2.ext.loopcontrols']
35 41 )
36 42
1 NO CONTENT: file renamed from templates/Makefile to templates/skeleton/Makefile
1 NO CONTENT: file renamed from templates/display_priority.tpl to templates/skeleton/display_priority.tpl
1 NO CONTENT: file renamed from templates/null.tpl to templates/skeleton/null.tpl
General Comments 0
You need to be logged in to leave comments. Login now