/vorote.ch

Personal Blog source files

Primary LanguageJavaScriptMIT LicenseMIT

vorote.ch

This is a Git repo of Dmytro Vorotyntsev personal blog. It is based on minimal, lightweight and mobile-first starter Lumen uses Gatsby. All blog posts and pages content is licensed under a Creative Commons Attribution 4.0 International License.

Features

Local development

Access CMS Locally

To test the CMS locally run a production build of the site:

$ yarn run serve

Start Development

Navigate into your new site’s directory and start it up.

yarnm run develop

Open the source code and start editing!

Your site is now running at http://localhost:8000!

Note: You'll also see a second link: http://localhost:8000/___graphql. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the Gatsby tutorial.

Open the blog directory in your code editor of choice and edit src/templates/index-template.js. Save your changes and the browser will update in real time!

Folder Structure

└── content
    ├── pages
    └── posts
└── static
    ├── admin
    └── media
└── src
    ├── cms
    │   └── preview-templates
    ├── components
    │   ├── Feed
    |   ├── GlobalStyles
    │   ├── Icon
    │   ├── Layout
    │   ├── Page
    │   ├── Pagination
    │   ├── Post
    │   │   ├── Author
    │   │   ├── ColorModeToggler
    │   │   ├── Comments
    │   │   ├── Content
    │   │   ├── Meta
    │   │   └── Tags
    │   ├── Sidebar
    │   │   ├── Author
    │   │   ├── Contacts
    │   │   ├── Copyright
    │   │   └── Menu
    |   └── Theme
    ├── constants
    ├── gatsbyapis
    ├── templates
    └── utils