123456789101112131415161718192021 |
- <% if (page.image){ %>
- <%- partial('_partial/hero', { image : `/images/hero/blog/${page.image.feature}` }) %>
- <% } %>
- <div class="container up-spacer bottom-spacer-lg">
- <div class="row">
- <div class="col-12">
- <% if (page.path){ %>
- <h1>
- <a href="<%- url_for(page.path) %>" itemprop="url"><%= page.title %></a>
- </h1>
- <% } else if (page.title){ %>
- <h1><%= page.title %></h1>
- <% } %>
- <div class="article-content" itemprop="articleBody">
- <%- page.content %>
- </div>
- </div>
- </div>
- </div>
- <%- partial('_partial/about-author') %>
|