Skip to content

excalidraw/excalidraw-blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

083a427 · Nov 7, 2024
Feb 14, 2021
Jan 13, 2023
Jan 13, 2023
Jan 13, 2023
Mar 9, 2023
Dec 31, 2020
Mar 21, 2020
Mar 22, 2020
Mar 21, 2020
Dec 21, 2020
Dec 14, 2020
Mar 9, 2023
Feb 25, 2021
Nov 6, 2024
Nov 7, 2024
Nov 6, 2024

Repository files navigation

Excalidraw Blog

For news and updates visit: https://blog.excalidraw.com.

Develop

We are using Gatsby and in order to run it locally, execute the following from the root:

yarn
yarn start

Visit localhost:8000 to test it.

Writing a Blog Post

  • Create a new folder inside the content/blog/
    • The folder name should follow kebab-case
    • Use the slug of the title of the post to name it
  • Create index.md inside that folder
  • Create og.png inside that folder for the open graph image
  • Add a frontmatter
    • title: Use Title Case for Titles
    • date: Date in ISO format. Example: 2020-03-12
    • note: Optional. Displayed next to the date when reading a post.
    • image: Filename of the open graph image. Example: og.png
  • The note field is usually used to link to the original post when reposting (example)
  • Add somewhere the <!-- end --> to declare your excerpt (it's used on the front page)