hexo 标签页不显示标签云

发布于 2022-09-03 23:29:17 字数 3297 浏览 47 评论 0

最近在尝试搭建一个hexo,主题已经搭建好了,就是在处理tag的时候,有点问题。
问题描述:在_post里面已经给.md文件头加上了 tags ,代码如下:


---
title: Android Transition Framework
date: 2016-9-12 22:55:03
categories: Blogs
tags: [Android,Tips]
---

而在预览时,文章页也是可以看到标签存在的

clipboard.png

而在点击标签页时,没有显示所定义的标签们

clipboard.png

下面贴上我主题的_config.yml:


menu:
  home:
    text:
    url: /
  archives:
    url: /archives
  tags:
    url: /tags
  github:
    url: https://github.com/youngkaaa
    target: _blank
  weibo:
    url:
    target: _blank
  link:
    text: 测试
    url: /404

rss: /atom.xml

#你的头像url
avatar: /img/logo.jpg

# email
email: 645326280@qq.com

# 设置 Android L Chrome 浏览器状态栏颜色
color: '#3F51B5'

# Content
tags:
  title: 标签


# 文章截断
excerpt_render: false
excerpt_length: 200
excerpt_link: 阅读全文...
mathjax: false
archive_yearly: true

#是否开启分享
share: true

#是否开启打赏,关闭 reward: false
reward:
  title: 谢谢打赏~
  wechat: /img/wechat.jpg     #微信,关闭设为 false
  alipay: /img/alipay.jpg     #支付宝,关闭设为 false

#是否开启搜索
search: true

#是否大屏幕下文章页隐藏导航
hideMenu: true

#是否开启toc
#toc: false
toc:
  list_number: false  # 是否显示数字排序

#站长统计,如要开启,输入CNZZ站点id,如 cnzz: 1255152447
cnzz: false

# Miscellaneous
google_analytics: ''
favicon: /favicon.ico

# less
less:
  compress: true
  paths:
    - source/css/style.less

整个项目的_config.yml

# Site
title: youngkaaa
subtitle: single dog~single dog?!
description:
author: youngkaaa
language:
timezone:

# URL
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
url: http://yoursite.com
root: /
permalink: :year/:month/:day/:title/
permalink_defaults:

# Directory
source_dir: source
public_dir: public
tag_dir: tags
archive_dir: archives
category_dir: categories
code_dir: downloads/code
i18n_dir: :lang
skip_render:

# Writing
new_post_name: :title.md   # File name of new posts
default_layout: post
titlecase: false    # Transform title into titlecase
external_link: true   # Open external links in new tab
filename_case: 0
render_drafts: false
post_asset_folder: false
relative_link: false
future: true
highlight:
  enable: true
  line_number: true
  auto_detect: false
  tab_replace:

# Category & Tag
default_category: uncategorized
category_map:
tag_map:


# Date / Time format
## Hexo uses Moment.js to parse and display date
## You can customize the date format as defined in
## http://momentjs.com/docs/#/displaying/format/
date_format: YYYY-MM-DD
time_format: HH:mm:ss

# Pagination
## Set per_page to 0 to disable pagination
per_page: 10
pagination_dir: page

# Extensions
## Plugins: https://hexo.io/plugins/
## Themes: https://hexo.io/themes/
theme: indigo

# Deployment
## Docs: https://hexo.io/docs/deployment.html
deploy:
  type: git
  repository: https://github.com/youngkaaa/youngkaaa.github.io.git
  branch: master

附上项目结构图:

clipboard.png

请大神指教。谢谢

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

还不是爱你 2022-09-10 23:29:17

这和你这堆东西都没关系
你得去看你渲染的tags页面模板里面是不是加入了tagcloud

寄居者 2022-09-10 23:29:17

https://mrcxt.github.io/hexo/...

这个文章可以解决问题

请持续率性 2022-09-10 23:29:17

编辑 /tags/index.md
在第二个三横---上面加上以下内容

type: "tags"
layout: "tags"
烙印 2022-09-10 23:29:17

一般主题中开启 tag 是在tag/index.md 中添加字段 type: “tags”,在 indigo 主题中需添加 layout: tags,否则,显示的内容即为tag/index.md 的内容,一般是没有内容的,所以显示文章内容为空白。没有认真看 README

ぇ气 2022-09-10 23:29:17

我也有这个问题 你是怎么解决的啊

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文