This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
spdocker/themes/spd/layout/archive.ejs
2018-03-07 15:58:54 +11:00

51 lines
1.8 KiB
Plaintext

---
layout: page
---
<!-- Main Content -->
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<!-- List -->
<%
var years = {};
site.posts.sort('date').reverse().forEach(function(post){
var year = post.date.year()
if(years[year]===undefined){
years[year] = [];
}
years[year].push(post);
});
%>
<% Object.keys(years).reverse().forEach(function(year){ %>
<div class="one-tag-list">
<span class="fa fa-calendar-times-o listing-seperator" id="<%= year %>">
<span class="tag-text"><%= year %></span>
</span>
<ul>
<% years[year].map(function(post){ %>
<!-- <li class="listing-item">
<time datetime="{{ post.date | date:"%Y-%m-%d" }}">{{ post.date | date:"%Y-%m-%d" }}</time>
<a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a>
</li> -->
<li >
<%= post.date.format('MM-DD') %>
<i class="fa fa-angle-double-right" aria-hidden="true"></i>
<a href="<%- config.root %><%- post.path %>" style="color: #0085a1">
<span>
<%- post.title || "Untitled" %>
</span>
</a>
<!-- <p class="post-meta">{{ post.date | date:"%Y-%m-%d" }}</p> -->
</li>
<% }) %>
</ul>
</div>
<% }) %>
</div>
</div>
</div>