hexo-theme-maple icon indicating copy to clipboard operation
hexo-theme-maple copied to clipboard

现在的 tag 和 category 页面怪怪的

Open hucorz opened this issue 5 months ago • 0 comments

改成这样会不会好点,逻辑也不复杂,判断一下 path 的路径就好了

image
    <% 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>
    <% } %>

hucorz avatar Aug 31 '24 03:08 hucorz