Skip to content

Commit 978bbe2

Browse files
committed
initial commit
1 parent c0ef005 commit 978bbe2

35 files changed

+307
-0
lines changed

.dependencies

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
git:
2+
breadcrumbs:
3+
url: https://github.com/getgrav/grav-plugin-breadcrumbs
4+
path: user/plugins/breadcrumbs
5+
branch: develop
6+
error:
7+
url: https://github.com/getgrav/grav-plugin-error
8+
path: user/plugins/error
9+
branch: develop
10+
problems:
11+
url: https://github.com/getgrav/grav-plugin-problems
12+
path: user/plugins/problems
13+
branch: develop
14+
lightslider:
15+
url: https://github.com/getgrav/grav-plugin-lightslider
16+
path: user/plugins/lightslider
17+
branch: develop
18+
snipcart:
19+
url: https://github.com/getgrav/grav-plugin-snipcart
20+
path: user/plugins/snipcart
21+
branch: develop
22+
antimatter:
23+
url: https://github.com/getgrav/grav-theme-antimatter
24+
path: user/themes/antimatter
25+
branch: develop
26+
links:
27+
breadcrumbs:
28+
src: grav-plugin-breadcrumbs
29+
path: user/plugins/breadcrumbs
30+
scm: github
31+
error:
32+
src: grav-plugin-error
33+
path: user/plugins/error
34+
scm: github
35+
problems:
36+
src: grav-plugin-problems
37+
path: user/plugins/problems
38+
scm: github
39+
lightslider:
40+
src: grav-plugin-lightslider
41+
path: user/plugins/lightslider
42+
scm: github
43+
snipcart:
44+
src: grav-plugin-snipcart
45+
path: user/plugins/snipcart
46+
scm: github
47+
antimatter:
48+
src: grav-theme-antimatter
49+
path: user/themes/antimatter
50+
scm: github

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Sass
2+
.sass-cache
3+
4+
# Grav Specific
5+
data/*
6+
!data/.*
7+
plugins/*
8+
!plugins/.*
9+
themes/*
10+
!themes/.*
11+
12+
# OS Generated
13+
.DS_Store*
14+
ehthumbs.db
15+
Icon?
16+
Thumbs.db
17+
*.swp
18+
19+
# phpstorm
20+
.idea/*

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.8.0

accounts/.gitkeep

Whitespace-only changes.

config/site.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
title: Grav
2+
author:
3+
name: Joe Bloggs
4+
5+
description: 'Grav is an easy to use, yet powerful, open source flat-file CMS'
6+

config/system.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
home:
2+
alias: '/shop'
3+
4+
pages:
5+
theme: antimatter
6+
process:
7+
markdown: true
8+
twig: false
9+
events:
10+
page: false
11+
twig: true
12+
13+
cache:
14+
enabled: true
15+
check:
16+
pages: true
17+
driver: auto
18+
prefix: 'g'
19+
20+
twig:
21+
cache: true
22+
debug: true
23+
auto_reload: true
24+
autoescape: false
25+
26+
debugger:
27+
enabled: true
28+
max_depth: 10
29+
log:
30+
enabled: false
31+
timing: false

data/.gitkeep

Whitespace-only changes.

hebe.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"project":"grav-skeleton-blog-site",
3+
"platforms":{
4+
"grav":{
5+
"nodes":{
6+
"skeleton":[
7+
{
8+
"source":"/",
9+
"destination":"/user"
10+
}
11+
],
12+
"breadcrumbs plugin":[{
13+
"project":"grav-plugin-breadcrumbs"
14+
}],
15+
"error plugin":[{
16+
"project":"grav-plugin-error"
17+
}],
18+
"problems plugin":[{
19+
"project":"grav-plugin-problems"
20+
}],
21+
"lightslider plugin":[{
22+
"project":"grav-plugin-lightslider"
23+
}],
24+
"snipcart plugin":[{
25+
"project":"grav-plugin-snipcart"
26+
}],
27+
"antimatter theme":[{
28+
"project":"grav-theme-antimatter"
29+
}]
30+
}
31+
}
32+
}
33+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: T-Shirts
3+
category: T-Shirts
4+
content:
5+
items: @self.children
6+
order:
7+
by: default
8+
dir: asc
9+
---
10+
11+
# T-Shirts
12+
## We have both **cool** and **funny** t-shirts
47.8 KB
Loading

0 commit comments

Comments
 (0)