File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,25 +3,7 @@ Personal Blog Website(Hugo)
33基于Hugo框架搭建的个人博客系统
44该网站部署在Github上,在公网上可通过csuyzz.com访问
55
6- ### 关键词:Hugo 、Git、Github、域名解析
7-
8- [ TOC]
9-
10- ## 概述
11-
12- #### 1.Hugo简介
13-
14- > Hugo是基于Go语言开发的静态网站生成器,简单、易用、快速部署,主要用于构建个人博客
15-
16- #### 2.Git简介
17-
18- > Git是目前主流的分布式版本控制工具,有关Git的使用请查看Git的来龙去脉这篇文章
19-
20- #### 3.Github简介
21-
22- > Github是在外网环境下的一个代码托管库,有关Github的介绍请查看开始玩起Github这篇文章
23-
24- ## 具体过程
6+ ## 具体搭建过程
257
268#### 1.准备工作
279
9678> 了解根目录下的文件将有助于个性化地定制博客
9779
9880+ config.toml:全局配置文件,结合所用的主题进行配置(后面会讲解)
81+
9982+ themes:主题存放的位置,主题中的文件也可进行个性化定制
83+
10084+ static:存储图片、js、css等静态资源文件
85+
10186+ layouts:存放用来渲染博客内容的模板文件
87+
10288+ data:存放相关数据文件
89+
10390+ contents:所有博客内容(md文件)默认的存放目录
10491
92+
10593#### (3)设置主题
10694
10795> Hugo框架有许多酷炫的主题,可以在[主题官网](themes.gohugo.io)上进行挑选
Original file line number Diff line number Diff line change @@ -91,8 +91,7 @@ MapReduce(离线处理)—–》Spark(高性能批处理技术)&
9191 <pubDate >Tue, 07 Jan 2020 14:08:20 +0800</pubDate >
9292
9393 <guid >https://sin-coder.github.io/post/hugo/</guid >
94- <description >关键词:Hugo 、Git、Github、域名解析 [TOC]
95- 概述 1.Hugo简介 Hugo是基于Go语言开发的静态网站生成器,简单、易用、快速部署,主要用于构建个人博客
94+ <description >关键词:Hugo 、Git、Github、域名解析 概述 1.Hugo简介 Hugo是基于Go语言开发的静态网站生成器,简单、易用、快速部署,主要用于构建个人博客
9695 2.Git简介 Git是目前主流的分布式版本控制工具,有关Git的使用请查看Git的来龙去脉这篇文章
9796 3.Github简介 Github是在外网环境下的一个代码托管库,有关Github的介绍请查看开始玩起Github这篇文章
9897 具体过程 1.准备工作 下载Git并安装、配置环境变量 完成后在终端执行& rdquo;git& rdquo;命令来测试是否安装成功,有关git的安装请看Git的来龙去脉
Original file line number Diff line number Diff line change 1212
1313 < meta name ="twitter:card " content ="summary "/>
1414< meta name ="twitter:title " content ="基于Hugo框架搭建个人博客 "/>
15- < meta name ="twitter:description " content ="关键词:Hugo 、Git、Github、域名解析 [TOC]
16- 概述 1.Hugo简介 Hugo是基于Go语言开发的静态网站生成器,简单、易用、快速部署,主要用于构建个人博客
15+ < meta name ="twitter:description " content ="关键词:Hugo 、Git、Github、域名解析 概述 1.Hugo简介 Hugo是基于Go语言开发的静态网站生成器,简单、易用、快速部署,主要用于构建个人博客
1716 2.Git简介 Git是目前主流的分布式版本控制工具,有关Git的使用请查看Git的来龙去脉这篇文章
1817 3.Github简介 Github是在外网环境下的一个代码托管库,有关Github的介绍请查看开始玩起Github这篇文章
1918 具体过程 1.准备工作 下载Git并安装、配置环境变量 完成后在终端执行”git”命令来测试是否安装成功,有关git的安装请看Git的来龙去脉
2423 C:\Users\Administrator>hugo new site E:\hugo\Sites\myblog Congratulations! Your new Hugo site is created in E:\hugo\Sites\myblog. "/>
2524
2625 < meta property ="og:title " content ="基于Hugo框架搭建个人博客 " />
27- < meta property ="og:description " content ="关键词:Hugo 、Git、Github、域名解析 [TOC]
28- 概述 1.Hugo简介 Hugo是基于Go语言开发的静态网站生成器,简单、易用、快速部署,主要用于构建个人博客
26+ < meta property ="og:description " content ="关键词:Hugo 、Git、Github、域名解析 概述 1.Hugo简介 Hugo是基于Go语言开发的静态网站生成器,简单、易用、快速部署,主要用于构建个人博客
2927 2.Git简介 Git是目前主流的分布式版本控制工具,有关Git的使用请查看Git的来龙去脉这篇文章
3028 3.Github简介 Github是在外网环境下的一个代码托管库,有关Github的介绍请查看开始玩起Github这篇文章
3129 具体过程 1.准备工作 下载Git并安装、配置环境变量 完成后在终端执行”git”命令来测试是否安装成功,有关git的安装请看Git的来龙去脉
@@ -86,8 +84,6 @@ <h1 class ="post-title">基于Hugo框架搭建个人博客</h1>
8684
8785< h3 id ="关键词-hugo-git-github-域名解析 "> 关键词:Hugo 、Git、Github、域名解析</ h3 >
8886
89- < p > [TOC]</ p >
90-
9187< h2 id ="概述 "> 概述</ h2 >
9288
9389< h4 id ="1-hugo简介 "> 1.Hugo简介</ h4 >
Original file line number Diff line number Diff line change @@ -91,8 +91,7 @@ MapReduce(离线处理)&mdash;&ndash;》Spark(高性能批处理技术)&
9191 <pubDate >Tue, 07 Jan 2020 14:08:20 +0800</pubDate >
9292
9393 <guid >https://sin-coder.github.io/post/hugo/</guid >
94- <description >关键词:Hugo 、Git、Github、域名解析 [TOC]
95- 概述 1.Hugo简介 Hugo是基于Go语言开发的静态网站生成器,简单、易用、快速部署,主要用于构建个人博客
94+ <description >关键词:Hugo 、Git、Github、域名解析 概述 1.Hugo简介 Hugo是基于Go语言开发的静态网站生成器,简单、易用、快速部署,主要用于构建个人博客
9695 2.Git简介 Git是目前主流的分布式版本控制工具,有关Git的使用请查看Git的来龙去脉这篇文章
9796 3.Github简介 Github是在外网环境下的一个代码托管库,有关Github的介绍请查看开始玩起Github这篇文章
9897 具体过程 1.准备工作 下载Git并安装、配置环境变量 完成后在终端执行& rdquo;git& rdquo;命令来测试是否安装成功,有关git的安装请看Git的来龙去脉
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ <h1 class ="post-title">消息队列学习笔记</h1>
111111 < title > tag</ title >
112112 < path d ="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z "> </ path > < line x1 ="7 " y1 ="7 " x2 ="7 " y2 ="7 "> </ line >
113113</ svg >
114- < a class ="tag " href ="https://sin-coder.github.io/tags/%E5%88%86%E5%B8%83%E5%BC%8F/ "> “ 分布式” </ a > < a class ="tag " href ="https://sin-coder.github.io/tags/%E5%88%86%E5%B8%83%E5%BC%8F%E7%B3%BB%E7%BB%9F/ "> 分布式系统</ a > < a class ="tag " href ="https://sin-coder.github.io/tags/%E6%B6%88%E6%81%AF%E9%98%9F%E5%88%97/ "> 消息队列</ a > </ div > </ div >
114+ < a class ="tag " href ="https://sin-coder.github.io/tags/%E5%88%86%E5%B8%83%E5%BC%8F/ "> 分布式</ a > < a class ="tag " href ="https://sin-coder.github.io/tags/%E5%88%86%E5%B8%83%E5%BC%8F%E7%B3%BB%E7%BB%9F/ "> 分布式系统</ a > < a class ="tag " href ="https://sin-coder.github.io/tags/%E6%B6%88%E6%81%AF%E9%98%9F%E5%88%97/ "> 消息队列</ a > </ div > </ div >
115115 </ header >
116116 < div class ="post-content ">
117117
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ <h1>Tags</h1>
4545
4646 < li class ="posts-list-item ">
4747 < a class ="posts-list-item-title " href ="https://sin-coder.github.io/tags/%E5%88%86%E5%B8%83%E5%BC%8F/ ">
48- “ 分布式”
48+ 分布式
4949 </ a >
5050 2
5151 </ li >
Original file line number Diff line number Diff line change 1212
1313
1414 <item >
15- <title >“ 分布式” </title >
15+ <title >分布式</title >
1616 <link >https://sin-coder.github.io/tags/%E5%88%86%E5%B8%83%E5%BC%8F/</link >
1717 <pubDate >Tue, 28 Jan 2020 01:22:22 +0800</pubDate >
1818
Original file line number Diff line number Diff line change 11<!doctype html>
22< html lang ="en-us ">
33 < head >
4- < title > “ 分布式” // sin-coder</ title >
4+ < title > 分布式 // sin-coder</ title >
55 < meta charset ="utf-8 " />
66 < meta name ="generator " content ="Hugo 0.59.1 " />
77 < meta name ="viewport " content ="width=device-width, initial-scale=1 " />
1111
1212
1313 < meta name ="twitter:card " content ="summary "/>
14- < meta name ="twitter:title " content ="“ 分布式” "/>
14+ < meta name ="twitter:title " content ="分布式 "/>
1515< meta name ="twitter:description " content ="I always remember that 'Talk is cheap,show me the code' "/>
1616
17- < meta property ="og:title " content ="“ 分布式” " />
17+ < meta property ="og:title " content ="分布式 " />
1818< meta property ="og:description " content ="I always remember that 'Talk is cheap,show me the code' " />
1919< meta property ="og:type " content ="website " />
2020< meta property ="og:url " content ="https://sin-coder.github.io/tags/%E5%88%86%E5%B8%83%E5%BC%8F/ " />
@@ -40,7 +40,7 @@ <h1>sin-coder</h1>
4040 < main class ="app-container ">
4141
4242 < article >
43- < h1 > “ 分布式” </ h1 >
43+ < h1 > 分布式</ h1 >
4444 < ul class ="posts-list ">
4545
4646 < li class ="posts-list-item ">
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" standalone =" yes" ?>
22<rss version =" 2.0" xmlns : atom =" http://www.w3.org/2005/Atom" >
33 <channel >
4- <title >“ 分布式” on sin-coder</title >
4+ <title >分布式 on sin-coder</title >
55 <link >https://sin-coder.github.io/tags/%E5%88%86%E5%B8%83%E5%BC%8F/</link >
6- <description >Recent content in “ 分布式” on sin-coder</description >
6+ <description >Recent content in 分布式 on sin-coder</description >
77 <generator >Hugo -- gohugo.io</generator >
88 <language >en-us</language >
99 <lastBuildDate >Tue, 28 Jan 2020 01:22:22 +0800</lastBuildDate >
Original file line number Diff line number Diff line change 1717 <pubDate >Tue, 07 Jan 2020 14:08:20 +0800</pubDate >
1818
1919 <guid >https://sin-coder.github.io/post/hugo/</guid >
20- <description >关键词:Hugo 、Git、Github、域名解析 [TOC]
21- 概述 1.Hugo简介 Hugo是基于Go语言开发的静态网站生成器,简单、易用、快速部署,主要用于构建个人博客
20+ <description >关键词:Hugo 、Git、Github、域名解析 概述 1.Hugo简介 Hugo是基于Go语言开发的静态网站生成器,简单、易用、快速部署,主要用于构建个人博客
2221 2.Git简介 Git是目前主流的分布式版本控制工具,有关Git的使用请查看Git的来龙去脉这篇文章
2322 3.Github简介 Github是在外网环境下的一个代码托管库,有关Github的介绍请查看开始玩起Github这篇文章
2423 具体过程 1.准备工作 下载Git并安装、配置环境变量 完成后在终端执行& rdquo;git& rdquo;命令来测试是否安装成功,有关git的安装请看Git的来龙去脉
You can’t perform that action at this time.
0 commit comments