Using an h-feed to build a blog with HTML
You do not need fancy coding to blog. HTML works just fine. In fact we will use a microformats property called an h-feed.
Inside the h-feed we add an h-entry for every post
<div class="h-feed wrapper">
<h1 class="p-name"<
My Learning Journies
</h1>
<article class="h-entry">
<a class="u-author h-card" href="/"></a>
<time class="dt-published">2019-06-27 13:22</time>
<h3>
Day one: Digging In
</h3>
<p class="p-summary">
First day working in the field
</p>
<div class="e-content">
<img class="u-featured imgLeft" src="https://cdn.glitch.com/a1310c49-d469-4900-be48-bf31fa4223f3%2FScreenshot_20190804-160552.png?v=1564953983631" alt="screenshot of gps tracker">
<p>
I have long wanted to finish the trail I have been building. #CLMOOC gives me a good opportunity. Today I spent about anhours doing a round of just mapping the next steps. I only walked about 2,038 feet and took 1,226 steps
</p>
<p>
I am looking forward to sharing this journey on my new blog. You can remix this site by clicking on the fish above. There is even a step by step guide.
</p>
<p>
So I am using my field work to help my work in the field. As I dig through the under brush I want to help folks build blogs.
</p>
</div>
</article>
Even though we put all of our posts on the same page we want each article to have it's own url. We will use the id attribute
Share your feed and new blog with the world. You can stop here and have a fully functional blog. In future lessons you will learn to connect with webmentions, style your website with CSS Grid, and design templates for more post types.