From the course: Learning Static Site Building with Hugo

Add a post

From the course: Learning Static Site Building with Hugo

Start my 1-month free trial

Add a post

- [Instructor] Like everything else with Hugo, adding new content to a Hugo site starts in the terminal. Inside of my project folder, I can run Hugo, new post, forward slash hello dash world dot md. This creates a new file, which I can see in my editor in the content folder, post-sub folder, and finally, hello dash world dot md, the file I just created. The file name, hello dash world, becomes the URL of the new post and it typically follows the title of the post. md stands for Markdown, which is the language you'll use to add formatting to your posts and pages. If you're not familiar with Markdown you can visit markdowntutorial.com to get a quick lesson. I'll go ahead and edit the title of this post a little bit and then add some content. Now let's run the Hugo server again to preview the site with this new post. I'll save this file and then in my terminal run Hugo server. When I open up a browser and go to local host the new post does not show up. This isn't a bug. The reason the new post didn't show up is because it's marked as a draft. You can see this at the top of the new file, draft equals true. Drafts let you work on posts and preview posts before they go live on your site. This whole section at the top of the file is called front matter and I'll explain more about it in a bit. For now, we're not going to change anything here. Instead, in my terminal, I'm going to cancel the Hugo server with control C and then run Hugo server again, but this time with the dash D flag. Dash D here tells Hugo to render the drafts as well. So now when I go to the browser and refresh I'll see the new post that I created. Next I'll take a closer look at the front matter section at the top of the file.

Contents