Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuyingwu/gatsby-theme-chaton
gatsby-theme-chaton, a Gatsby theme for creating a blog.
https://github.com/yuyingwu/gatsby-theme-chaton
gatsby gatsby-theme gatsbyjs javascript mdx mdx-gatsby
Last synced: 2 months ago
JSON representation
gatsby-theme-chaton, a Gatsby theme for creating a blog.
- Host: GitHub
- URL: https://github.com/yuyingwu/gatsby-theme-chaton
- Owner: YuyingWu
- Created: 2019-11-19T06:06:41.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-15T10:19:28.000Z (over 3 years ago)
- Last Synced: 2024-10-29T23:08:16.487Z (3 months ago)
- Topics: gatsby, gatsby-theme, gatsbyjs, javascript, mdx, mdx-gatsby
- Language: JavaScript
- Homepage:
- Size: 82 KB
- Stars: 2
- Watchers: 1
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
Gatsby Theme ChatonGatsby Theme Chaton, a Gatsby theme for creating a blog.
## Installing the Theme
To install it, run in the root of your site:
```
npm install --save gatsby-theme-chaton
```## Amazing Features
* Customed Navigator
* Page Categories
* Page Tags
* Google Analytics
* Feed rss.xml## Theme options
```js
// gatsby-config.jsmodule.exports = {
pathPrefix: '/',
siteMetadata: {
title: `Yuying Wu's Blog`,
author: `Yuying Wu`,
description: `Personal blog, recording codes, life, growth.`,
copyright: `Powered by Gatsby and gatsby-theme-chaton.`,
siteUrl: `https://wuyuying.com`,
aboutUrl: `/about`,
avatar: 'https://static.wuyuying.com/avatar.jpeg',
social: [{
name: 'twitter',
url: 'https://mobile.twitter.com/wuyuying1128',
}, {
name: 'github',
url: 'https://github.com/YuyingWu',
}],
nav: [{
title: 'Home',
link: '/',
}, {
title: 'Technology',
link: '/categories/tech/',
}]
},
plugins: [
{
resolve: `gatsby-theme-chaton`,
options: {
/*
- basePath defaults to `/`
- contentPath defaults to `content/posts`
- assetPath defaults to `content/assets`
- mdx defaults to `true`
*/
googleAnalytics: 'your-ga-track-id',
},
},
],
}
```