GIT命令的常用方法

记录一下GIT方法push网站的命令
Read more →

GIT添加远程仓库

记录使用visual studio code 添加git远程仓库的方法
Read more →

Hugo的中文博文测试

Description for the featured image, used as the alt text
Read more →

第一个博客内容

Getting started Installation Create a new Hugo site: $ hugo new site [path] Clone this repository into themes/ directory: $ cd [path] $ git clone https://github.com/vaga/hugo-theme-m10c.git themes/m10c Add this line in the config.toml file: theme = "m10c" Configuration In your config.toml file, define the following variables in params: author: Name of the author description: Short description of the author avatar: Path of file containing the author avatar image menu_item_separator: Separator between each menu item. HTML allowed (default: " - “) To add a menu item, add the following lines in menu: [[menu.main]] identifier = “tags” name = “Tags” url = “/tags/” Read Hugo documentations for more informations about menu To add a social link, add the following lines in params: [[params.social]] name = “github” url = “ https://github.com/vaga" To change theme colors, add the following lines in params: [params.style]
Read more →