This is a repo for Gatsby's timeline theme, with the theme, you can show all your posts, tweets, instagram medias, youtube videos, hacker news, reddit post at one.
- Support Mdx, tweet, instagram medias, youtube videos, hacker news, reddit post
- Support i18n by gatsby-theme-i18n, you can choose your own i18n library
- Support comments disqus or utterances
- Support Tags
- Pagination, even tag page supports pagination
- SEO Optimization
Learn more about the theme information at here
-
Create a Gatsby site.
Use the Gatsby CLI to create a new site, specifying the timeline blog theme starter.
# create a new Gatsby site using the timeline blog theme starter gatsby new my-themed-blog https://github.com/theowenyoung/gatsby-starter-timeline
-
Create twitter credentials
Optional, if you want to add your tweets to blog, create
.env
with the following content:TWITTER_CONSUMER_KEY=xx TWITTER_CONSUMER_SECRET=xx TWITTER_ACCESS_TOKEN=xx TWITTER_ACCESS_SECRET=xx
Then, uncomment
gatsby-config.js
plugingatsby-source-twitter
-
Create instagram credentials
Optional, if you want to add your instagram to blog, create
.env
with the following content:INSTAGRAM_ACCESS_TOKEN=xx
Then, uncomment
gatsby-config.js
plugingatsby-source-instagram
-
Start developing.
Navigate into your new site’s directory and start it up.
cd my-themed-blog/ gatsby develop
-
Open the code and start customizing!
Your site is now running at
http://localhost:8000
!
For exist site or more params, see here
First using Gatsby? check out the guide to using the Gatsby blog theme starter, or the longer, more detailed tutorial.
Here are the top-level files and directories you'll see in a site created using the timeline blog theme starter:
gatsby-starter-timeline
├── content
│ ├── assets
│ │ └── avatar.png
│ └── posts
│ ├── hello-world.mdx
│ └── my-second-post.mdx
├── data
│ ├── tweets
│ ├── 1111.json
│ └── 2222.json
│ ├── reddit
│ ├── 1111.json
│ └── 2222.json
├── src
│ └── gatsby-theme-timeline
│ ├── components
│ │ └── bio-content.js
│ └── gatsby-theme-ui
│ └── colors.js
├── .gitignore
├── .prettierrc
├── gatsby-config.js
├── LICENSE
├── package-lock.json
├── package.json
└── README.md
-
/content
: A content folder holding assets that the theme expects to exist. This will vary from theme to theme -- this starter is set up to get you started with the timeline blog theme, which expects an image asset for your avatar, and blog post content. Replace the avatar image file, delete the demo posts, and add your own! -
/data
: A raw data folder holding raw data like tweets, reddit json. -
/src
: You will probably want to customize your site to personalize it. The files under/src/gatsby-theme-blog
shadow, or override, the files of the same name in thegatsby-theme-blog
package. To learn more about this, check out the guide to getting started with using the timeline blog theme starter. -
.gitignore
: This file tells git which files it should not track / not maintain a version history for. -
.prettierrc
: This file tells Prettier which configuration it should use to lint files. -
gatsby-config.js
: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins you’d like to include, etc. When using themes, it's where you'll include the theme plugin, and any customization options the theme provides. -
LICENSE
: This Gatsby starter is licensed under the 0BSD license. This means that you can see this file as a placeholder and replace it with your own license. -
package-lock.json
(Seepackage.json
below, first). This is an automatically generated file based on the exact versions of your npm dependencies that were installed for your project. (You won’t change this file directly). -
package.json
: A manifest file for Node.js projects, which includes things like metadata (the project’s name, author, etc). This manifest is how npm knows which packages to install for your project. -
README.md
: A text file containing useful reference information about your project.
Looking for more guidance? Full documentation for Gatsby lives on the website.
Here are some places to start:
- To learn more about Gatsby themes specifically, we recommend checking out the theme docs.
-
For most developers, we recommend starting with our in-depth tutorial for creating a site with Gatsby. It starts with zero assumptions about your level of ability and walks through every step of the process.
-
To dive straight into code samples, head to our documentation. In particular, check out the Reference Guides and Gatsby API sections in the sidebar.