-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.py
42 lines (38 loc) · 1.28 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- coding: utf-8 -*-
import os
current_dir = os.path.dirname(os.path.realpath(__file__))
# REQUIRED: Which templates do you want to generate? (Use relative paths here!)
# Use strings (with single or double quotes), and separate each template in a line terminated with a comma. Such as examples below.
OUTPUT_TEMPLATES = [
'index.html',
'about.html',
'references.html',
'external-impact.html',
'innovation.html',
'coherence.html',
'collaboration.html',
'communication.html',
'competitiveness.html',
'data-security.html',
'dissemination.html',
'education.html',
'effectivity.html',
'efficiency.html',
'external-impact.html',
'funding-perspective.html',
'index.html',
'innovation.html',
'integration.html',
'publications.html',
'relevance.html',
'reputation.html',
'sustainability.html',
'transfer-of-expertise.html',
'transfer-of-knowledge.html',
'transparency.html',
'usage.html'
]
# OPTIONAL: Where are the skeleton (.jinja) templates? - Defaults to 'jinja_templates' folder inside this project
INPUT_FOLDER = current_dir + '/impactomatrix_templates'
# OPTIONAL: Which folder does it dump generated templates? - Defaults to 'html_templates' folder inside this project
OUTPUT_FOLDER = '../docs'