Skip to content

Commit d515f4a

Browse files
committed
Initial version of the new graphene-python.org website
0 parents  commit d515f4a

29 files changed

+20224
-0
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Project dependencies
2+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
3+
node_modules
4+
.cache/
5+
# Build directory
6+
public/
7+
.DS_Store
8+
yarn-error.log

LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 gatsbyjs
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# gatsby-starter-default
2+
The default Gatsby starter
3+
4+
For an overview of the project structure please refer to the [Gatsby documentation - Building with Components](https://www.gatsbyjs.org/docs/building-with-components/)
5+
6+
Install this starter (assuming Gatsby is installed) by running from your CLI:
7+
```
8+
gatsby new gatsby-example-site
9+
```
10+
11+
## Deploy
12+
13+
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/gatsbyjs/gatsby-starter-default)

gatsby-config.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
siteMetadata: {
3+
title: `Graphene-Python.org`
4+
},
5+
plugins: [
6+
`gatsby-plugin-react-helmet`,
7+
`gatsby-plugin-styled-jsx`,
8+
`@jacobmischka/gatsby-plugin-react-svg`
9+
]
10+
};

gatsby-node.js

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
// const ExtractTextPlugin = require(`extract-text-webpack-plugin`);
2+
// const { cssModulesConfig } = require(`gatsby-1-config-css-modules`);
3+
4+
// exports.modifyWebpackConfig = ({ config, stage }, options) => {
5+
// // Pass in plugins regardless of stage.
6+
// // If none specified, fallback to Gatsby default postcss plugins.
7+
// if (options.postCssPlugins) {
8+
// config.merge(current => {
9+
// current.postcss = options.postCssPlugins;
10+
// return current;
11+
// });
12+
// }
13+
14+
// const sassFiles = /\.css$/;
15+
// const sassModulesFiles = /\.module\.css$/;
16+
17+
// switch (stage) {
18+
// case `develop`: {
19+
// config.loader(`sass`, {
20+
// test: sassFiles,
21+
// exclude: sassModulesFiles,
22+
// loaders: [`style`, `postcss`]
23+
// });
24+
25+
// config.loader(`sassModules`, {
26+
// test: sassModulesFiles,
27+
// loaders: [`style`, cssModulesConfig(stage), `postcss`]
28+
// });
29+
// return config;
30+
// }
31+
// case `build-css`: {
32+
// config.loader(`sass`, {
33+
// test: sassFiles,
34+
// exclude: sassModulesFiles,
35+
// loader: ExtractTextPlugin.extract([`css?minimize`, `postcss`])
36+
// });
37+
38+
// config.loader(`sassModules`, {
39+
// test: sassModulesFiles,
40+
// loader: ExtractTextPlugin.extract(`style`, [
41+
// cssModulesConfig(stage),
42+
// `postcss`
43+
// ])
44+
// });
45+
// return config;
46+
// }
47+
// case `develop-html`:
48+
// case `build-html`: {
49+
// config.loader(`sass`, {
50+
// test: sassFiles,
51+
// exclude: sassModulesFiles,
52+
// loader: `null`
53+
// });
54+
55+
// config.loader(`sassModules`, {
56+
// test: sassModulesFiles,
57+
// loader: ExtractTextPlugin.extract(`style`, [
58+
// cssModulesConfig(stage),
59+
// `postcss`
60+
// ])
61+
// });
62+
// return config;
63+
// }
64+
// case `build-javascript`: {
65+
// config.loader(`sass`, {
66+
// test: sassFiles,
67+
// exclude: sassModulesFiles,
68+
// loader: `null`
69+
// });
70+
71+
// config.loader(`sassModules`, {
72+
// test: sassModulesFiles,
73+
// loader: ExtractTextPlugin.extract(`style`, [cssModulesConfig(stage)])
74+
// });
75+
// return config;
76+
// }
77+
// default: {
78+
// return config;
79+
// }
80+
// }
81+
// };

0 commit comments

Comments
 (0)