Added basic theme
This commit is contained in:
parent
a085ca6867
commit
8b9afa66ce
42 changed files with 5633 additions and 0 deletions
20
themes/custom/layout/post.ejs
Normal file
20
themes/custom/layout/post.ejs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<div class="main-content meethigher-scroll">
|
||||
<article class="post">
|
||||
<div class="post-title">
|
||||
<h2 class="title"><%= page.title %></h2>
|
||||
</div>
|
||||
<div class="post-media2">
|
||||
<span class="post-time"><%- date(page.date, "YYYY-MM-DD") %></span>
|
||||
<% if (page.tags && page.tags.length){ %>
|
||||
<%- list_tags(page.tags, {
|
||||
show_count: false,
|
||||
class: 'article-tag'
|
||||
}) %>
|
||||
<% } %>
|
||||
</div>
|
||||
<div class="post-content blog-markdown">
|
||||
<%- page.more %>
|
||||
</div>
|
||||
</article>
|
||||
<div class="outline"><span class="fa fa-list"></span></div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue