hexowebsiteblog

Asset Folders

Global Asset FolderAssets are non-post files in the source folder, such as images, CSS or JavaScript files. For instance, If you are only going to have a few images in the Hexo project, then the easiest way is to keep them in a source/images directory. Then, you can access them using something like ![](/images/image.jpg). Post Asset Folder For users who e..

Read more
hexowebsiteblog

commands

This is a repost from hexo’s website. init$ hexo init [folder] Initializes a website. If no folder is provided, Hexo will set up a website in the current directory. This command is a shortcut that runs the following steps: Git clone hexo-starter including hexo-theme-landscape into the current directory or a target folder if specified. Install dependencie..

Read more
hexowebsiteblog

Configuration

You can modify site settings in _config.yml or in an alternate config file. Site Setting Description title The title of your website subtitle The subtitle of your website description The description of your website keywords The keywords of your website. Supports multiple values. author Your name language The language of your website. Use a 2..

Read more
hexowebsiteblog

Contributing

We welcome you to join the development of Hexo. 🤗 DevelopmentWe welcome you to join the development of Hexo. This document will help you through the process. Before You StartPlease read Contributor Covenant Code of Conduct first. Please follow the coding style: Follow Google JavaScript Style Guide. Use soft-tabs with a two space indent. Don’t put commas ..

Read more
hexowebsiteblog

Data Files

Sometimes you may need to use some data in templates which is not directly available in your posts, or you want to reuse the data elsewhere. For such use cases, Hexo 3 introduced the new Data files. This feature loads YAML or JSON files in source/_data folder so you can use them in your site. For example, add menu.yml in source/_data folder. Home: / Gall..

Read more
1235