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.

55 lines
1.8 KiB

7 years ago
<% if (is_tag()) { %>
6 years ago
<script>
window.subData= { title:'tag : <%= page.tag %>'}
</script>
7 years ago
<% } else if (is_archive()) { %>
6 years ago
<script>
window.subData= { title:'year : <%= page.year %><%= page.month ? '.' + page.month : '' %>'}
</script>
7 years ago
<% } else if (is_category()) { %>
6 years ago
<script>
window.subData= { title:'category : <%= page.category %>'}
</script>
7 years ago
<% } %>
6 years ago
7 years ago
<section class="post-list">
6 years ago
<% if(!config.materialx){ %>
<div class='post-wrapper'>
<article class="post revealno-title">
6 years ago
<section class="meta">
<h2 class="title" style="color:#EF503A">
6 years ago
<span class="fa fa-exclamation-triangle"></span>
6 years ago
还剩最后一步就成功了
</h2>
<p>
请按照下面的指示进行操作:
</p>
</section>
6 years ago
<iframe frameborder="no" width=100% height=600 src="https://xaoxuu.com/docs/material-x/#/?id=主题配置"></iframe>
</article>
</div>
<% } %>
6 years ago
<% page.posts.each(function(post){ %>
7 years ago
<div class='post-wrapper'>
6 years ago
<%- partial('post', {post: post}) %>
7 years ago
</div>
6 years ago
<% }) %>
7 years ago
</section>
<% if (page.total > 1) { %>
6 years ago
<nav id="page-nav">
<% if (page.prev != 0) { %>
<a class="prev" rel="prev" href="<%= url_for(page.prev_link) %>">
<span class="icon icon-chevron-left"></span>
<span class="text">PREVIOUS</span>
</a>
<% } %>
<% if (page.next != 0) { %>
<a class="next" rel="next" href="<%= url_for(page.next_link) %>">
<span class="text">NEXT</span>
<span class="icon icon-chevron-right"></span>
</a>
<% } %>
</nav>
7 years ago
<% } %>