12345678910111213141516171819202122232425262728293031323334 |
- <div class="article-entry" itemprop="articleBody">
- <% if (page.type === "tags") { %>
- <div class="tag-cloud">
- <div class="tag-cloud-title">
- <%- _p('counter.tag_cloud', site.tags.length) %>
- </div>
- <div class="tag-cloud-tags">
- <%- tagcloud({
- min_font: 12,
- max_font: 30,
- amount: 200,
- color: true,
- start_color: '#ccc',
- end_color: '#111'
- }) %>
- </div>
- </div>
- <% } else if (page.type === 'categories') { %>
- <div class="category-all-page">
- <div class="category-all-title">
- <%- _p('全部分类', site.categories.length) %>
- </div>
- <div class="category-all">
- <%- list_categories() %>
- </div>
- </div>
- <% } else { %>
- <% if (post.excerpt && index){ %>
- <%- post.excerpt %>
- <% } else { %>
- <%- post.content %>
- <% } %>
- <% } %>
- </div>
|