mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-09 10:40:34 -05:00
956 B
956 B
title | date | draft | tags | medium_enabled | ||
---|---|---|---|---|---|---|
Blog Workflow | 2019-10-28T00:16:44-04:00 | false |
|
true |
You may be curious on how I create content for this blog. There's pros and cons to my approach. One pro is that it's relatively easy for me to crank something out and upload it to my site. The downside is that it's not as easily customizable.
I use Hugo as my static site generator. It works with Markdown files. I begin every blog post by typing
hugo new blog/title.md
This creates a file called title.md
in content/blog
with front-matter yaml information such as the title and the datetime that I created the post.
I then use my favorite Markdown editor typora
to open up the file in the background.
typora content/blog/title.md &
Write some great words down, compile the website, then sync it to my site!
hugo
rsync -Paz --delete public/ brandonrozek.com:/path/to/site/folder