I am trying to display 6 posts over two columns. In column one, I am wanting to display the first 3, which I have managed. However, I now want to display posts 4, 5 & 6 in the second column. I am not sure what the argument is for this part is.
<div class="container">
<div class="row">
<div class="col-md-6 col-xs-12">
<div class="recentposts_simple">
{{- range ( where site.RegularPages "Section" "blog" | first 3 ) }}
<h4>
{{ .Title }}
</h4>
<p>{{ .Summary }} <a href="#">Read More »</a>
</p>
{{ end}}
</div>
</div>
<div class="col-md-6 col-xs-12">
<div class="recentposts_simple">
{{- range ( where site.RegularPages "Section" "blog" | first 3 ) }}
<h4>
{{ .Title }}
</h4>
<p>{{ .Summary }} <a href="#">Read More »</a>
</p>
{{ end}}
</div>
</div>
</div>
</div>
Any help would be appreciated. Thanks.