hexo-theme-maple
hexo-theme-maple copied to clipboard
现在的 tag 和 category 页面怪怪的
改成这样会不会好点,逻辑也不复杂,判断一下 path 的路径就好了
<% if(path.indexOf("tag") === 0) { %>
<h1 class="site-title text-4xl leading-relaxed">
Tag - <%= path.split('/')[1] %>
</h1>
<% } else { %>
<h1 class="site-title text-4xl leading-relaxed">
<%= config.title %>
</h1>
<% } %>