๐Ÿ“ฆ 0-Chan / 0-Chan.github.io

My old blog... (deprecated)

โ˜… 0 stars โ‘‚ 0 forks ๐Ÿ‘ 0 watching โš–๏ธ MIT License
๐Ÿ“ฅ Clone https://github.com/0-Chan/0-Chan.github.io.git
HTTPS git clone https://github.com/0-Chan/0-Chan.github.io.git
SSH git clone git@github.com:0-Chan/0-Chan.github.io.git
CLI gh repo clone 0-Chan/0-Chan.github.io
0-Chan 0-Chan :sparkles: Add codesoom week-5 retrospective 3dc4191 3 years ago ๐Ÿ“ History
๐Ÿ“‚ main View all commits โ†’
๐Ÿ“ .github
๐Ÿ“ .vscode
๐Ÿ“ assets
๐Ÿ“ content
๐Ÿ“ plugins
๐Ÿ“ src
๐Ÿ“ static
๐Ÿ“„ .eslintrc.js
๐Ÿ“„ .gitignore
๐Ÿ“„ .markdownlint.json
๐Ÿ“„ .prettierrc
๐Ÿ“„ CONTRIBUTING.md
๐Ÿ“„ gatsby-browser.js
๐Ÿ“„ gatsby-config.js
๐Ÿ“„ gatsby-node.js
๐Ÿ“„ LICENSE
๐Ÿ“„ package-lock.json
๐Ÿ“„ package.json
๐Ÿ“„ README.ko.md
๐Ÿ“„ README.md
๐Ÿ“„ SECURITY.md
๐Ÿ“„ README.md

Financial Contributors on Open Collective Greenkeeper badge Total alerts contributions welcome Netlify Status

Twitter: JbeeLjyhanll

ํ•œ๊ตญ์–ด๐Ÿ‡ฐ๐Ÿ‡ท

screenshot

In this template...

  • ๐Ÿ’„ Code highlight with Fira Code font
  • ๐Ÿง™ CLI Tool
  • ๐Ÿ˜„ Emoji (emojione)
  • ๐Ÿ—ฃ Social share feature (Twitter, Facebook)
  • ๐Ÿ’ฌ Comment feature (disqus, utterances)
  • โ˜• 'Buy me a coffee' service
  • ๐Ÿค– GA
  • โญ Enhance UX
  • โš™ Configurable
About this Template

Demo

Use case demo-image
    • JBEE.io: https://jbee.io
    • Rinae's devlog: https://rinae.dev/
    • Seungdols Company: https://seungdols.dev/
    • Kooku's log: https://kooku.netlify.com/
    • SOSOLOG: https://so-so.dev/
    • delivan.dev: https://delivan.dev/
    • Jungin's blog: https://jungin.netlify.com/
    • Zero's blog: https://awesomezero.com/
    • Jonathan's blog: https://www.learningsomethingnew.com/
    • @deveely-log: https://deveely-log.netlify.com/
    • Hanul's blog: https://hanul-dev.netlify.com/
    • Hoons Blog: https://hoons-up.netlify.com/
    • JWN.cool: https://jwn.cool
    • ugaemi's dev note: https://ugaemi.github.io
    • Minsu's Dev Log: https://alstn2468.github.io/
    • Yungi's Dev Blog: https://yungis.dev/
    • < Taenylog />: https://taeny.dev/
    • brouk's devlog: https://brouk-devlog.netlify.com/
    • CoodingPenguin's Repository: https://cooding-penguin.netlify.com/
    • Garima's Tech Blog: https://garimasingh.netlify.app/
    • DevRappers.dev: https://devrappers.dev/
    • Let's doodle: https://duduling-blog.netlify.app/
    • noopy.dev: https://noopy.dev/
    • Hong_Devlog: https://hong-dev.github.io/
    • samsara-ku's devlog: https://samsara-ku.dev/
    • muse.kim: https://muse.kim/
    • cereme.dev: https://cereme.dev
    • taekki.dev: https://taekki.dev
    • kkh913's Developer Blog: https://kkh913.github.io
    • Merrily, Code: https://merrily-code.netlify.app/
    • jeeneee's devlog: https://jeeneee.dev
    • Noah's devlog: https://noah0316.github.io/
    • bobs log: https://undefine.me
    • irosyadi: https://irosyadi.netlify.app
    • yujolog: https://yujo11.github.io/
    • hexdrinker's devlog: https://hexdrinker.dev
    • gparkki.io: https://gparkkii.github.io/
    • BO.LOG: https://b5bo.github.io

If you're using this template, Please Pull Request for Use case!

๐Ÿ˜Ž Quick Start

1. Create a Gatsby site

# create a new Gatsby site using the blog starter
npx gatsby new my-blog-starter https://github.com/JaeYeopHan/gatsby-starter-bee

If you are not using npx, following Gatsby Getting Started

npm install -g gatsby-cli
gatsby new my-blog-starter https://github.com/JaeYeopHan/gatsby-starter-bee

2. Start developing

cd my-blog-starter/
npm start
# open localhost:8000

3. Add your content

You can write...

  • contents to blog in content/blog directory.
  • resume content/__about directory.
With markdown syntax and some meta data

Support script for creating new post

cli-tool-example

npm run post

๐Ÿ‘‰ Use gatsby-post-gen ()

4. Fix meta data

You can fix meta data of blog in /gatsby-meta-config.js file.

5. Publish with netlify

Deploy to Netlify

:bulb: if you want to deploy github pages, add following script to package.json

"scripts": {
    "deploy": "gatsby build && gh-pages -d public -b master -r 'git@github.com:${your github id}/${github page name}.github.io.git'"
}

๐Ÿง Customize

โš™ Gatsby config

/root
โ”œโ”€โ”€ gatsby-browser.js // font, polyfill, onClientRender ...
โ”œโ”€โ”€ gatsby-config.js // Gatsby config
โ”œโ”€โ”€ gatsby-meta-config.js // Template meta config
โ””โ”€โ”€ gatsby-node.js // Gatsby Node config

โ›‘ Structure

src
โ”œโ”€โ”€ components // Just component with styling
โ”œโ”€โ”€ layout // home, post layout
โ”œโ”€โ”€ pages // routing except post: /(home), /about
โ”œโ”€โ”€ styles
โ”‚   โ”œโ”€โ”€ code.scss
โ”‚   โ”œโ”€โ”€ dark-theme.scss
โ”‚   โ”œโ”€โ”€ light-theme.scss
โ”‚   โ””โ”€โ”€ variables.scss
โ””โ”€โ”€ templates
    โ”œโ”€โ”€ blog-post.js
    โ””โ”€โ”€ home.js

๐ŸŽจ Style

You can customize color in src/styles directory.

src/styles
โ”œโ”€โ”€ code.scss
โ”œโ”€โ”€ dark-theme.scss
โ”œโ”€โ”€ light-theme.scss
โ””โ”€โ”€ variables.scss

๐Ÿญ Tips (You can change...)

  • Profile image! (replace file in /content/assets/profile.png)
  • Favicon image! (replace file in /content/assets/felog.png)
  • Header gradient! (\$theme-gradient /styles/variables.scss)
  • Utterances repository! (replace repository address in /gatsby-meta-config.js)
  • โš ๏ธ Please check, this guide()

โ˜• Like it?

Buy Me A Coffee

๐Ÿค” If

If you are currently writing in the Medium, consider migration with medium-to-own-blog!

:bug: Bug reporting

Issue

๐ŸŽ Contributing

Contributing guide

Contributors

Code Contributors

This project exists thanks to all the people who contribute. [Contribute].

Financial Contributors

Become a financial contributor and help us sustain our community. [Contribute]

Individuals

Organizations

Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]

LICENSE

MIT

Project by @JbeeโœŒ