Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/giancastle/gcastle
https://github.com/giancastle/gcastle
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/giancastle/gcastle
- Owner: GianCastle
- License: mit
- Created: 2019-12-29T03:05:55.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T19:50:05.000Z (almost 2 years ago)
- Last Synced: 2023-03-08T05:38:46.003Z (almost 2 years ago)
- Language: TypeScript
- Size: 7.81 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gatsby-casper
Demo: https://gatsby-casper.netlify.com/
This is a static blog generator and starter gatsby repo. A port of [Casper](https://github.com/TryGhost/Casper) v2 a theme from [Ghost](https://ghost.org/) for [GatsbyJS](https://www.gatsbyjs.org/) using [TypeScript](https://www.typescriptlang.org/).
## Getting Started
Clone this repo.```
git clone https://github.com/scttcper/gatsby-casper.git --depth=1
```Remove .git folder and setup a new one
```
rm -rf .git && git init
```Edit website-config.ts with your website settings.
Either disable subscribe or setup a mailchimp list and add the form action and hidden field input name.Now push to whatever repo you want!
### Progress
- [x] emotion / component styles
- [x] home page
- [x] tag page
- [x] author page
- [x] blog page
- [x] subscribe form - using [mailchimp](https://mailchimp.com)
- [ ] full width images in markdown? - not sure if possible
- [ ] multiple post authors
- [ ] floating reading progress bar
- [x] 404 page
- [x] subscribe modal/overlay
- [x] rss feed (on production build)
- [x] polish ✨
- [x] meta tags
- [x] page titles
- [x] pagination### Deploy to Netlify
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/scttcper/gatsby-casper)
## How to configure Google Analytics
Edit `gatsby-config.js` and add your tracking ID```javascript
{
resolve: `gatsby-plugin-google-analytics`,
options: {
// Here goes your tracking ID
trackingId: 'UA-XXXX-Y',
// Puts tracking script in the head instead of the body
head: true,
// IP anonymization for GDPR compliance
anonymize: true,
// Disable analytics for users with `Do Not Track` enabled
respectDNT: true,
// Avoids sending pageview hits from custom paths
exclude: ['/preview/**'],
// Specifies what percentage of users should be tracked
sampleRate: 100,
// Determines how often site speed tracking beacons will be sent
siteSpeedSampleRate: 10,
},
},
```## How to edit your site title and description
Edit `gatsby-config.js` section `siteMetadata````javascript
siteMetadata: {
title: 'My awesome site name',
description: 'This is a description for my site',
siteUrl: 'https://mysite.com', // full path to blog - no ending slash
},
```## How to adjust pagination
In `gatsby-node.js`, edit the `postsPerPage` constant. The default value is
six posts per page.