I have my blog posts inside content/blog/ directory.
I want to show posts list in my homepage, without having to point to mywebsite . com/blog
How can i do that?
I have my blog posts inside content/blog/ directory.
I want to show posts list in my homepage, without having to point to mywebsite . com/blog
How can i do that?
Two ways I know of to do this:
(1) add an alias to your blog section for your homepage
(2) just list your blog posts from your homepage template
I achieved this by giving my /blog
items a custom type, and then selecting that type for my blog homepage.
<div class="home-column">
{{ range $index, $element := first 20 (where .Site.Pages "Type" "blogPost") }}
{{ partial "home-tile.html" . }}
{{ end }}
</div>