Skip to content

Commit 2abcbba

Browse files
committed
0 parents  commit 2abcbba

File tree

35 files changed

+19489
-0
lines changed

35 files changed

+19489
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.cache
2+
.DS_Store
3+
node_modules
4+
/public

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Gatsby Theme: Sky Lite Starter
2+
3+
A lightweight GatsbyJS starter with Material-UI and MDX Markdown support. This starter uses the `gatsby-theme-sky-lite` theme available at: https://github.com/vim-labs/gatsby-theme-sky-lite
4+
5+
**View demo:**
6+
https://gatsby-theme-sky-lite.netlify.com
7+
8+
## Install dependencies
9+
10+
```bash
11+
yarn # Or, npm install
12+
```
13+
14+
## Start development server
15+
16+
```bash
17+
gatsby develop
18+
```
19+
20+
## Empty cache
21+
22+
```bash
23+
gatsby clean
24+
```
25+
26+
## Build static site
27+
28+
```bash
29+
gatsby build
30+
```
31+
32+
## Screenshots
33+
34+
![Screenshot 01](https://user-images.githubusercontent.com/25379378/69492728-f6e0e200-0e5a-11ea-9601-4d76414a792e.png)
35+
![Screenshot 02](https://user-images.githubusercontent.com/25379378/69492729-f6e0e200-0e5a-11ea-9508-94c69dff22e8.png)

gatsby-config.js

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
module.exports = {
2+
siteMetadata: {
3+
title: `Sky Lite`,
4+
siteUrl: `https://yoursite.com`,
5+
description: `A lightweight GatsbyJS starter base with Material-UI and MDX Markdown support.`,
6+
components: {
7+
appbar: {
8+
position: "sticky",
9+
links: [
10+
{
11+
title: "Doc 1",
12+
url: "/doc1"
13+
},
14+
{
15+
title: "Doc 2",
16+
url: "/doc2"
17+
}
18+
]
19+
},
20+
footer: {
21+
copyright: "yoursite.com",
22+
columns: [
23+
{
24+
heading: "Column 1",
25+
links: [
26+
{
27+
title: "Link 1",
28+
url: "#"
29+
},
30+
{
31+
title: "Link 2",
32+
url: "#"
33+
},
34+
{
35+
title: "Link 3",
36+
url: "#"
37+
}
38+
]
39+
},
40+
{
41+
heading: "Column 2",
42+
links: [
43+
{
44+
title: "Link A",
45+
url: "#"
46+
},
47+
{
48+
title: "Link B",
49+
url: "#"
50+
},
51+
{
52+
title: "Link C",
53+
url: "#"
54+
}
55+
]
56+
},
57+
{
58+
heading: "Column 3",
59+
links: [
60+
{
61+
title: "Link x",
62+
url: "#"
63+
},
64+
{
65+
title: "Link y",
66+
url: "#"
67+
},
68+
{
69+
title: "Link z",
70+
url: "#"
71+
}
72+
]
73+
}
74+
]
75+
}
76+
},
77+
templates: {
78+
home: {
79+
totalPosts: 3,
80+
template: "home"
81+
},
82+
pages: {
83+
path: "/content/pages/",
84+
template: "page"
85+
},
86+
posts: {
87+
path: "/content/posts/",
88+
pathPrefix: "posts",
89+
template: "post",
90+
filters: {
91+
tag: {
92+
pathPrefix: "tag",
93+
template: "tag",
94+
totalPosts: 3,
95+
pagination: {
96+
template: "resultsTag",
97+
resultsPerPage: 6
98+
}
99+
}
100+
},
101+
pagination: {
102+
template: "resultsAll",
103+
resultsPerPage: 6
104+
}
105+
}
106+
}
107+
},
108+
plugins: [
109+
{ resolve: `gatsby-theme-sky-lite` },
110+
{
111+
resolve: `gatsby-plugin-manifest`,
112+
options: {
113+
name: `Sky Lite`,
114+
short_name: `SkyLite`,
115+
start_url: `/`,
116+
background_color: `#eff2f6`,
117+
theme_color: `#1f55ff`,
118+
display: `standalone`,
119+
icon: `src/images/favicon.png`
120+
}
121+
}
122+
]
123+
};

0 commit comments

Comments
 (0)