-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.py
85 lines (70 loc) · 2.19 KB
/
script.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
from markdown2 import markdown
from jinja2 import Environment, FileSystemLoader
from json import load
# Specify how you are going to load the file
template_env = Environment(loader=FileSystemLoader(searchpath='./env'))
with open('config.json', encoding="utf-8") as config_file:
config = load(config_file)
######## INDEX
# tipo: portada, output:index
template = template_env.get_template('portada.html')
with open('index.html', 'w', encoding="utf-8") as output_file:
output_file.write(
template.render(
config=config,
page_name='index',
)
)
######## ARTICULOS
# tipo: lista, output:artículos
template = template_env.get_template('lista.html')
with open('articulos.html', 'w', encoding="utf-8") as output_file:
output_file.write(
template.render(
config=config,
page_name='articulos',
)
)
######## TUTORIALES
# tipo: lista, output:artículos
template = template_env.get_template('tutoriales.html')
with open('tutoriales.html', 'w', encoding="utf-8") as output_file:
output_file.write(
template.render(
config=config,
page_name='tutoriales',
)
)
######## TRADUCCIONES
# tipo: lista, output:artículos
template = template_env.get_template('traducciones.html')
with open('traducciones.html', 'w', encoding="utf-8") as output_file:
output_file.write(
template.render(
config=config,
page_name='traducciones',
)
)
######## OTROS
# tipo: lista, output:artículos
template = template_env.get_template('otros.html')
with open('otros.html', 'w', encoding="utf-8") as output_file:
output_file.write(
template.render(
config=config,
page_name='otros',
)
)
######## SOBREMI
# tipo: cuadro, output:sobremi
template = template_env.get_template('cuadro.html')
with open('sobremi.html', 'w', encoding="utf-8") as output_file:
output_file.write(
template.render(
config=config,
page_name='sobremi',
)
)
# with open('md/article.md') as markdown_file:
# article = markdown(markdown_file.read(),
# extras=['fenced-code-blocks', 'code-friendly'])