You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
homepage/themes/persona/layouts/index.html

22 lines
742 B
HTML

{{ partial "header.html" . }}
<body vocab="http://schema.org/" typeof="WebPage">
{{ partial "navbar.html" . }}
<div class="main_content_area">
<div id="expand_content_menu"><span class="icon icon-bars"></span></div>
<div id="body_hover"></div>
{{ partial "profile_heading.html" . }}
<section class="home_page_post_area">
<div class="container">
<div class="row">
<div class="col-md-12">
{{ $paginator := .Paginate (where .Data.Pages "Type" "post") }}
{{ range $paginator.Pages }}
{{ .Render "summary" }}
{{ end }}
{{ partial "pagination.html" . }}
</div>
</div>
</section>
</div>
{{ partial "footer.html" . }}