12345678910111213141516171819202122 |
- <div class="container bottom-spacer">
- <div class="row up-spacer">
- <div class="col-12">
- <h1 class="display-3">
- Projects
- <small class="text-muted">(<%= project_count(site.posts) %>)</small>
- </h1>
- <hr>
- </div>
- </div>
- <div class="row">
- <% site.posts.each(function(post){ %>
- <% if(post.layout == "project") { %>
- <div class="col-3">
- <%- partial('_partial/content-thumbnail', {post: post, index: true}) %>
- </div>
- <% } %>
- <% }) %>
- </div>
- </div>
- <%- partial('_partial/about-author') %>
- <%- partial('_partial/contact-form') %>
|