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
|
%YAML 1.2
---
define: &root_path "$HOME/pyssg/pyssg.xyz/"
title: "pyssg"
author: "David Luévano Alvarado"
author_email: "david@luevano.xyz"
description: "PySSG, the python static site generator official website."
lang: "en"
path:
src: !join [*root_path, "src/pyssg.xyz"]
dst: !join [*root_path, "live/pyssg.xyz"]
plt: !join [*root_path, "plt"]
db: !join [*root_path, "db.psv"]
url:
main: "https://pyssg.xyz"
static: "https://static.luevano.xyz"
default_image: "images/default.png"
fmt:
date: "%a, %b %d, %Y @ %H:%M %Z"
list_date: "%b %d"
list_sep_date: "%B %Y"
dirs:
/:
cfg:
plt: "root_page.html"
tags: False
index: False
rss: False
sitemap: True
exclude_dirs: []
exts:
pymdvar:
variables:
SURL: "https://static.luevano.xyz"
enable_env: False
...
---
define: &root_path "$HOME/pyssg/pyssg.xyz/"
title: "pyssg blog"
author: "David Luévano Alvarado"
author_email: "david@luevano.xyz"
description: "PySSG blog, the python static site generator official blog."
lang: "en"
path:
src: !join [*root_path, "src/blog"]
dst: !join [*root_path, "live/blog"]
plt: !join [*root_path, "plt"]
db: !join [*root_path, "db_blog.psv"]
url:
main: "https://blog.pyssg.xyz"
static: "https://static.luevano.xyz"
default_image: "images/default.png"
fmt:
date: "%a, %b %d, %Y @ %H:%M %Z"
list_date: "%b %d"
list_sep_date: "%B %Y"
dirs:
/:
cfg:
plt: "blog/page.html"
tags: "blog/tag.html"
index: "blog/index.html"
rss: True
sitemap: True
exclude_dirs: []
exts:
pymdvar:
variables:
SURL: "https://static.luevano.xyz"
enable_env: False
...
|