/me/profile2.jpg

使用 Hugo + Github Pages 搭建个人博客

Hugo: 一个静态网页生成器,将markdown格式的博文编译为HTML,CSS,JavaScript Github Pages: 静态网页托管服务,将hugo转化后的博客公开给读者访问 reference: Mogeko博客《使用 Hugo + GitHub Pages 搭建个人博客》 Step 1 - 创建Github Pages对应的repo repo name: [username].github.io reference: Github Pages official page Step 2 - 安装Hugo (Mac系统) 1 brew install hugo reference: Hugo official quickstart Step 3 - 使用Hugo创建本地博客文件夹 1 2 hugo new site myBlog cd myBlog 创建myBlog文件夹来存放博客站点。其中: content存放markdown博文 themes存放皮肤主题 config.toml配置站点 Step 4 - 安装皮肤主题 此博客使用mogege主题,原repo 安装主题至themes下 1 git clone https://github.