How to create a blog, Part 2: managing content with TinaCMS
In the first part of the series on creating a blog with Hugo, we’ve ended up with a working, albeit empty blog. Now it’s time to add some content to it. Content in Hugo Content of a Hugo blog is just markdown files categorized by directories in your repository. You can create your first blog post by running the following command: hugo new posts/hello_world.md You can see a markdown file hello_world....