Skip to content

Commit 1c204d1

Browse files
committed
changes footer
1 parent 07ee421 commit 1c204d1

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Gatsby + Netlify (CMS) blog template
22

3+
Preview the template: [Github Pages]
4+
35
### Quick start
46

57
#### Download it and run it on your local machine
@@ -28,7 +30,7 @@ gatsby develop
2830
First, in Netlify, go to the `Identity` section and click `Enable Identity`, allowing you to sign in to the CMS.
2931
The CMS editor is located at `[YOUR_NETLIFY_SITE].netlify.com/admin/` where you can now sign up for a login.
3032

31-
### About
33+
## About
3234
This is a simple blog template based on [Gatsby](https://www.gatsbyjs.org/), and [Netlify CMS](https://www.netlifycms.org)
3335

3436
It follows the [JAMstack architecture](https://jamstack.org) by using Git as a single source of truth, and [Netlify](https://www.netlify.com) for continuous deployment, and CDN distribution.
@@ -46,3 +48,14 @@ Some notable structural changes:
4648
* **Gatsby documentation** (v1, not v2): <https://www.gatsbyjs.org/docs/netlify-cms/>
4749
* **Netlify documentation** (sans CMS): <https://www.netlify.com/blog/2016/02/24/a-step-by-step-guide-gatsby-on-netlify/>
4850
* **[Netlify CMS Quick Start Guide]** (https://www.netlifycms.org/docs/quick-start/#authentication)
51+
52+
## Advanced
53+
54+
### Add comments
55+
Even though it's a static site, you can take advantage of the continuous deployment: [https://jamstack-comments.netlify.com/](https://jamstack-comments.netlify.com/)
56+
57+
### Paginate front page
58+
TODO
59+
60+
### Add a subscribe form
61+
Using lambdas hosted on Netlify

src/components/footer.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ const FinePrint = styled.div`
2424
color: white;
2525
`;
2626

27+
const StyledLink = styled.a`
28+
color: white;
29+
`
30+
2731

2832

2933
const Footer = () => {
@@ -36,9 +40,9 @@ const Footer = () => {
3640
lgOffset={1} lg={4}
3741
>
3842
<FinePrint>
39-
This is the footer. A place for a quick about + navigation.
43+
This site was built with <StyledLink href="https://github.com/cjimmy/gatsby-netlify-cms-blog">a Gatsby + Netlify CMS starter</StyledLink> by @cjimmy. Please star the repo on Github if you found it useful.
4044
<br/>
41-
All rights reserved &copy;
45+
All rights reserved &copy;
4246
</FinePrint>
4347
</Col>
4448

0 commit comments

Comments
 (0)