Forked from https://github.com/emallson/hexo-theme-tufte
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
484 B
17 lines
484 B
<article class="content" id="<%= post.slug %>">
|
|
<header>
|
|
<% if(link_title) { %>
|
|
<a href="<%= url_for(post.path) %>">
|
|
<% } %>
|
|
<h1 class="title"><%- post.title %></h1>
|
|
<% if(link_title) { %>
|
|
</a>
|
|
<% } %>
|
|
<p style="margin-bottom: 0;">
|
|
<em id="written-by">Written by <%- post.author %></em>
|
|
<br />
|
|
<em id="published-on">Published on <%= post.date.format("DD MMMM YYYY") %></em>
|
|
</p>
|
|
</header>
|
|
<%- post.content %>
|
|
</article>
|