HTML标签的一些知识点
a 标签 超链接
跳转页面(HTTP GET 请求)
属性见 MDN:
https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/a
- href:指定链接地址
- target:规定“href”属性中指定的网页或文件以何种方式行进跳转或打开,其值包括:_blank、_self、_parent、_top以及iframe的name属性的值
跳转页面(HTTP GET 请求)
属性见 MDN:
https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/a
该主题的github主页:https://github.com/iissnan/hexo-theme-next
在next的_config.yml文件中修改menu配置,添加tag和categories选项,但点击会出现404页面。
在根目录执行以下命令:1
2hexo new page "tags"
hexo new page "categories"
打开它们并相应添加type: “tags”和type: “categories”,保存