hexo创建的tags和categories页面为空的解决办法


title: hexo创建的tags和categories页面为空的解决办法
toc: false
date: 2018-04-16 02:26:10


主题:landscape

添加type以及menu后仍然显示空白的解决办法:

打开landscape/_partial/article.ejs,

的div内添加代码:

<% if (page.type === "tags") { %>
  
<%- "TOTAl : " + site.tags.length %>
<%- tagcloud({ min_font: 12, max_font: 30, amount: 200, color: true, start_color: '#555', end_color: '#111' }) %>
<% } else if (page.type === 'categories') { %>
<%- "TOTAL : " + site.categories.length %>
<%- list_categories() %>
<% } %>

重新打开即可看到正常显示的标签和分类页。

修改categories页面样式(也可以自己设计修改):

打开landscape/source/css/_partial/article.styl,在尾部添加:

.category-all-page {
  a:link {
    font-size: 14px;
    color: #333;
    text-decoration: none;
  }
  a:hover {
    font-size: 14px;
    color: #d8d;
    text-decoration: none;
    font-weight: bold;
  }
  .category-all-title { text-align: left; }

  .category-all { 
    margin-top: 20px; 
  }

  .category-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .category-list-item { 
    text-align: center;
    display: inline-block;
    margin: 8px; 
    padding: 8px;
    width: 150px;
    position: relative;
    background-color: rgba(237, 237, 237, 0.53);
    border-radius: 1px;
    box-shadow:0px 0px  0px 1px #ccc;
  }

  .category-list-link {
    color: #333;
  }

  .category-list-count {
    color: #333;
    &:before {
      display: inline;
      content: " ("
    }
    &:after {
      display: inline;
      content: ") "
    }
  }

  .category-list-child { padding-left: 10px; color: #333;}
}

转载于:https://www.cnblogs.com/zmj97/p/10161662.html

你可能感兴趣的:(hexo创建的tags和categories页面为空的解决办法)