Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Quincy Larson committed Jun 9, 2017
1 parent 987505b commit 9947bb7
Show file tree
Hide file tree
Showing 25 changed files with 6,406 additions and 333 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# gatsby-starter-documentation
Starter for building documentation site with GatsbyJS
# freeCodeCamp Guides

Install this starter (assuming Gatsby is installed) by running from your CLI:
`gatsby new gatsby-documentation-site https://github.com/gatsbyjs/gatsby-starter-documentation`
Technology guides that are as easy to understand as possible.
8 changes: 2 additions & 6 deletions config.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
siteTitle="FreeCodeCamp"
siteLogo="freecodecamp_logo.svg"
siteLogo="https://s3.amazonaws.com/freecodecamp/freecodecamp_logo.svg"
baseColor = "darkgreen"
linkPrefix = "/gatsby-starter-documentation"
docPages = [
"/docs/",
"/docs/getting-started/",
"/docs/how-to-run/",
"/docs/some-react-code/",
"/docs/the-next-step/",
"/docs/conclusion/",
"/docs/security/",
]
6,375 changes: 6,375 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dependencies": {
"chroma-js": "^0.7.2",
"color-pairs-picker": "^1.3.5",
"gatsby": "^0.12.45",
"gatsby": "^1.0.0",
"lodash": "^4.17.2",
"react-document-title": "^2.0.3",
"react-motion": "^0.1.0",
Expand Down
40 changes: 3 additions & 37 deletions pages/_template.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ module.exports = React.createClass({
color: colors.fg,
}}
>
<img src={"assets/img/" + config.siteLogo} alt={config.siteTitle}/>
<img src={config.siteLogo} alt={config.siteTitle}/>
</Link>
</Span>
<Span columns={8} last>
Expand All @@ -70,44 +70,10 @@ module.exports = React.createClass({
textDecoration: 'none',
marginLeft: rhythm(1/2),
}}
href="https://github.com/gatsbyjs/gatsby"
href="https://freecodecamp.com/"
>
Github
Learn to code for free
</a>
<Link
to={prefixLink('/examples/')}
style={{
background: examplesActive ? activeColors.bg : colors.bg,
color: examplesActive ? activeColors.fg : colors.fg,
float: 'right',
textDecoration: 'none',
paddingLeft: rhythm(1/2),
paddingRight: rhythm(1/2),
paddingBottom: rhythm(1/2),
marginBottom: rhythm(-1),
paddingTop: rhythm(1),
marginTop: rhythm(-1),
}}
>
Examples
</Link>
<Link
to={prefixLink('/docs/')}
style={{
background: docsActive ? activeColors.bg : colors.bg,
color: docsActive ? activeColors.fg : colors.fg,
float: 'right',
textDecoration: 'none',
paddingLeft: rhythm(1/2),
paddingRight: rhythm(1/2),
paddingBottom: rhythm(1/2),
marginBottom: rhythm(-1),
paddingTop: rhythm(1),
marginTop: rhythm(-1),
}}
>
Documentation
</Link>
</Span>
</Grid>
</Container>
Expand Down
101 changes: 0 additions & 101 deletions pages/assets/img/freecodecamp_logo.svg

This file was deleted.

7 changes: 0 additions & 7 deletions pages/docs/conclusion/index.md

This file was deleted.

11 changes: 0 additions & 11 deletions pages/docs/getting-started/index.md

This file was deleted.

8 changes: 0 additions & 8 deletions pages/docs/how-to-run/index.md

This file was deleted.

6 changes: 3 additions & 3 deletions pages/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
title: Introduction
---

**AlphabetJS** is the latest and greatest Javascript Framework. It's
amazing and wonderful and you'll probably love it more than all of the
other ones.
# freeCodeCamp Guides

Technology guides that even a beginner can understand.
6 changes: 6 additions & 0 deletions pages/docs/security/encryption-schemes/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Encryption Schemes
---

- [SHA-1](./sha-1/)
- [MD5](./md5/)
4 changes: 4 additions & 0 deletions pages/docs/security/encryption-schemes/md5/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: MD5
---

4 changes: 4 additions & 0 deletions pages/docs/security/encryption-schemes/sha-1/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: SHA-1
---

5 changes: 5 additions & 0 deletions pages/docs/security/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: Security
---

- [Encryption Schemes](./encryption-schemes/)
Binary file removed pages/docs/some-react-code/0.jpg
Binary file not shown.
Binary file removed pages/docs/some-react-code/1.jpg
Binary file not shown.
Binary file removed pages/docs/some-react-code/2.jpg
Binary file not shown.
Binary file removed pages/docs/some-react-code/3.jpg
Binary file not shown.
Binary file removed pages/docs/some-react-code/4.jpg
Binary file not shown.
Binary file removed pages/docs/some-react-code/5.jpg
Binary file not shown.
76 changes: 0 additions & 76 deletions pages/docs/some-react-code/_Demo.jsx

This file was deleted.

Loading

0 comments on commit 9947bb7

Please sign in to comment.