_config.yml (view raw)
1title: aaoth
2
3plugins:
4 - jekyll-feed
5
6# exclude non-site files
7exclude:
8 - LICENSE
9 - README.md
10 - art/thumbs.sh
11 - aaoth_new_post.sh
12
13# sadly wildcards don't work
14keep_files:
15 - art/photos/thumbs
16 - art/renders/thumbs
17 - art/drawings/thumbs
18 - art/logos/thumbs
19
20excerpt_separator: <!--more-->
21
22defaults:
23 - scope:
24 path: ""
25 values:
26 layout: "default"
27
28 - scope:
29 path: "_posts"
30 values:
31 layout: "post"
32
33 - scope:
34 path: "assets/img"
35 values:
36 image: true
37
38 - scope:
39 path: "art"
40 values:
41 art: true
42
43 - scope:
44 path: "art/*/thumbs"
45 values:
46 thumbnail: true
47