User's Guidance
This is a Hexo theme. Please make sure you acknowledge the basic usage of Hexo.
You can also refer to the newbie tutorial I wrote Tutorial on how to build your website from scratch-Yunyoujun's small station.
npm install hexo-cli -g
hexo init your-blog
cd your-blog
npm install
hexo server
For more information, please refer to Hexo official website
If you have any questions or suggestions about the use of this theme, you can go ahead to here and initiate an issue.
You can also join Discussions for feedback and discussion.
Quickstart
renderer
If you don’t have renderers for pug
andstylus
, please install: hexo-renderer-pug (This is Hexo official maintenance, but it seems that there are not many stars, or have a diligent update as the one below.) Or hexo-render-pug (The former one does not support frequently update during development, but the latter does.) And hexo-renderer-stylus
npm install hexo-render-pug hexo-renderer-stylus --save
# or
yarn add hexo-render-pug hexo-renderer-stylus
Install Theme
Go to the root directory of your Hexo blog.
npm i hexo-theme-yun@latest
Enable Themes
Modify the Hexo site configuration file _config.yml
# Set the theme to hexo-theme-yun
theme: yun
Configure Theme
Create a new _config.yun.yml
in the Hexo working directory.
With the convention greater than the configuration, you only need to customize the configuration you want to override in _config.yun.yml
, and the rest will be automatically merged with the theme's default configuration. (This is also more convenient for future upgrades)
TIP
Such as:
The complete configuration of avatar
is as follows
avatar:
url: /images/avatar.jpg
rounded: true
opacity: 1
You can just define it in _config.yun.yml
(it is also possible to cover it all)
avatar:
url: /images/avatar.jpg
Upgrade Theme
If you are configuring in _config.yun.yml
, you only need to enter the following command in the Hexo working path:
npm i hexo-theme-yun@latest
If you modify the theme's file, you may encounter conflicts during the upgrade and need to adjust it by yourself.
DANGER
It is best not to modify any of the theme's files unless you have certain development capabilities, or else the theme can not be upgraded afterwards.
If you want to customize the theme, you can include your resources in the head
configuration item.
For example, if you want to add an Aplayer player widget to the website globally...
Not currently recommended. This theme does not yet support PJAX, so when you jump to the page, the concert will be interrupted. PJAX support will be considered in the future (can be configured to decide whether to enable it), but it may not be achieved in the short term. Article internal player, you can use hexo-tag-aplayer directly
You can create a new load-aplayer.js
file under the source/js
folder in the root directory of Hexo.
If the
js
folder does not exist, please create a new one.
DANGER
Hexo may put the folder of source
directory as renderable page, this will cause files be rendered as HTML
.
To solve this issue, you also need to configure skip render
for all js
file in _config.yml
:
skip_render:
- '**/*.js'
See: Configuration | Hexo
Through the createElement
method, append
into the body
container.
document.addEventListener('DOMContentLoaded', () => {
const apContainer = document.createElement('div')
apContainer.id = 'aplayer'
document.body.append(apContainer)
const ap = new APlayer({
container: document.getElementById('aplayer'),
fixed: true,
audio: [
{
name: 'name',
artist: 'artist',
url: 'url.mp3',
cover: 'cover.jpg',
},
],
})
})
And set the head
option in _config.yun.yml
to introduce css or js.
head:
css:
aplayer: https://cdn.jsdelivr.net/npm/aplayer@1.10.1/dist/APlayer.min.css
js:
defer:
aplayer: https://cdn.jsdelivr.net/npm/aplayer@1.10.1/dist/APlayer.min.js
loadAplayer: /js/load-aplayer.js
Auto Update
If you want to update automatically and keep the latest themes at all times, you can use continuous integration (such as GitHub Actions, Travis).
You can refer to my GitHub Action configuration file gh-pages.yml. (Copy the configuration and put it in the corresponding folder. GitHub Actions is a service that comes with GitHub.) If you are not using algolia_search
, please delete the relevant part of algolia
.
New file .github/workflows/gh-pages.yml
:
name: GitHub Pages
on:
push:
branches:
- hexo
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Install Dependencies
run: npm i
- run: npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
publish_branch: master
force_orphan: true
Extend Markdown Style
- Colorful Blockquote