blob: 75881211b8b6da9e3ceef897fd3c6a8eeba472a6 (
plain) (
blame)
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
|
title: aaoth
plugins:
- jekyll-feed
# exclude non-site files
exclude:
- LICENSE
- README.md
- art/thumbs.sh
- aaoth_new_post.sh
- post-receive.example
- templates
# sadly wildcards don't work
keep_files:
- visual/photos/thumbs
- visual/renders/thumbs
- visual/drawings/thumbs
- visual/logos/thumbs
collections:
music_releases:
output: true
music_projects:
output: true
permalink: /music/:title/
sort_by: start_date
music_titles:
excerpt_separator: <!--more-->
defaults:
- scope:
path: ""
values:
layout: "default"
- scope:
path: "_posts"
values:
layout: "post"
- scope:
type: "music_projects"
values:
layout: "music-project"
- scope:
path: ""
type: "music_releases"
values:
layout: "music-release"
- scope:
path: "assets/img"
values:
image: true
- scope:
path: "visual"
values:
art: true
- scope:
path: "visual/*/thumbs"
values:
thumbnail: true
|