如何搭配一个无与伦比的主题

前言

在这篇文章中您将学到:

  • 如何创建一篇文章
  • 什么是front-matter
  • 如何下载主题
  • 如何启用主题

创建一篇文章

$ hexo new "关于一个人住,享受孤独的一些感受"
INFO Created:

添加博文内容

---
title: 史上最全hexo静
tags:
- hexo
img: https://tellyouwhat-static-1251995834.cos.ap-chongqing.myqcloud.com/blogimg/20190506112309.png

# 启动服务

```powershell
$ hexo s
INFO Start processing
INFO Hexo is running at http://localhost:4000 . Press Ctrl+C to stop.

文章效果

下载主题

https://github.com/ppoffice/hexo-theme-icarus

在您博客的根目录~/tellyou-diary下执行如下克隆命令

$ git clone https://github.com/ppoffice/hexo-theme-icarus.git themes/icarus
Cloning into 'themes/icarus'...
remote: Enumerating objects: 167, done.
remote: Counting objects: 100% (167/167), done.
remote: Compressing objects: 100% (56/56), done.
remote: Total 2857 (delta 77), reused 141 (delta 58), pack-reused 2690
Receiving objects: 100% (2857/2857), 16.44 MiB | 239.00 KiB/s, done.
Resolving deltas: 100% (1450/1450), done.

使用VS code打开当前文件夹

$ code .

编辑博客的_config.yml

# Site
title: 告你日记
subtitle: 阿港的日记
description: A place to tell you diaries about me.
keywords: 日记, 个人博客, diary, blog
author: HarborZeng
language: zh-CN
timezone: Asia/Shanghai
theme: icarus

启动新主题博客

$ hexo s
INFO =======================================
██╗ ██████╗ █████╗ ██████╗ ██╗ ██╗███████╗
██║██╔════╝██╔══██╗██╔══██╗██║ ██║██╔════╝
██║██║ ███████║██████╔╝██║ ██║███████╗
██║██║ ██╔══██║██╔══██╗██║ ██║╚════██║
██║╚██████╗██║ ██║██║ ██║╚██████╔╝███████║
╚═╝ ╚═════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ ╚══════╝
=============================================
INFO Checking dependencies
INFO Validating the configuration file
WARN themes\icarus\_config.yml is not found. We are creating one for you...
INFO themes\icarus\_config.yml is created. Please restart Hexo to apply changes.

初始化配置,会要求您重新启动一遍

$ hexo s
INFO =======================================
██╗ ██████╗ █████╗ ██████╗ ██╗ ██╗███████╗
██║██╔════╝██╔══██╗██╔══██╗██║ ██║██╔════╝
██║██║ ███████║██████╔╝██║ ██║███████╗
██║██║ ██╔══██║██╔══██╗██║ ██║╚════██║
██║╚██████╗██║ ██║██║ ██║╚██████╔╝███████║
╚═╝ ╚═════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ ╚══════╝
=============================================
INFO Checking dependencies
INFO Validating the configuration file
INFO Start processing
INFO Hexo is running at http://localhost:4000 . Press Ctrl+C to stop.

效果图

参考资料


   转载规则


《如何搭配一个无与伦比的主题》 Harbor Zeng 采用 知识共享署名 4.0 国际许可协议 进行许可。
 上一篇
PWA踩坑记-从零到一让你的博客也能离线访问 PWA踩坑记-从零到一让你的博客也能离线访问
前言 这篇文章所采用的chrome浏览器版本为72,如有疑虑,请留言讨论,谢谢。 您将在这篇文章中学习到: 什么是PWA PWA的工作原理 如何给自己的hexo静态博客实现PWA Service worker生命周期 Service worker自动更新 什么是PWA PWA,即Progressive-Web-App,渐进式网络应用,概念有点类似于微信小程序,和MIUI的快应用,但是比
下一篇 
第一个静态博客告你日记 第一个静态博客告你日记
node环境搭建 什么是Node.js node.js不是一个库,也不是一个新的语言,他是一个平台,一个基于JavaScript的运行容器。它被创造出来的目的就是使得浏览器里面才能运行的代码能在电脑,手机上随时运行。 假设这样一个例子:我们想在浏览器里面上传一个文件,JavaScript是不能读取磁盘上的文件的,我们必须通过<input type="file"/&g
  目录