-
Notifications
You must be signed in to change notification settings - Fork 0
/
metalsmith.json
87 lines (87 loc) · 1.99 KB
/
metalsmith.json
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
86
87
{
"metadata": {
"title": "Maison BK",
"description": "Spread Love, it's the BK Way",
"author": "Maison BK Inc",
"nav": [
{
"name": "About",
"title": "About Us",
"url": "#about"
},
{
"name": "Cards",
"title": "Spread love through cards.",
"url": "#cards"
},
{
"name": "Contact",
"title": "Contact us about anything at all!",
"url": "#contact"
}
],
"social": [
{
"url": "https://www.facebook.com/pages/Maison-BK/1561234794110838",
"icon": "facebook",
"name": "Facebook"
},
{
"url": "http://instagram.com/maisonbk",
"icon": "instagram",
"name": "Instagram"
}
],
"header": [
{
"img": "img/header1.jpg",
"caption": "Send love through cards"
},
{
"img": "img/header2.jpg",
"caption": "Sicker than your average"
},
{
"img": "img/header3.jpg",
"caption": "Digital downloads and ordered prints"
},
{
"img": "img/header4.jpg",
"caption": "It's the BK way"
}
]
},
"plugins": {
"metalsmith-metadata": {
"cards": "cards.yaml"
},
"metalsmith-markdown": {},
"metalsmith-templates": {
"engine": "jade"
},
"metalsmith-assets": {
"source": "./assets",
"destination": "./"
},
"metalsmith-clean-css": {
"files": "*main.css",
"cleanCSS": {
"rebase": true,
"root": "assets"
}
},
"metalsmith-concat": {
"files": [
"vendor/jquery/dist/jquery.min.js",
"vendor/components-bootstrap/js/bootstrap.min.js",
"vendor/jquery.scrollTo/jquery.scrollTo.min.js",
"vendor/matchHeight/jquery.matchHeight-min.js",
"vendor/bootbox/bootbox.js",
"vendor/minicart/dist/minicart.min.js",
"vendor/xor-crypt/xor-crypt.min.js",
"main.js"
],
"output": "main.js"
}
}
}