-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (64 loc) · 3.14 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<title>Call me Andy</title>
<meta charset="utf-8" />
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" />
<link href="/theme/static/css/style.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
</head>
<body id="index" class="archive">
<div class="container">
<div class="header">
<ul class="nav nav-pills pull-right">
<li class="active"><a href="">Home</a></li>
<li><a href="/archives.html">Archives</a></li>
</ul>
<h3 class="text-muted"><a href="">Call me Andy</a></h3>
<h2 class="text-muted"></h2>
</div>
<section id="content" class="content">
<article class="hentry">
<header> <h2 class="entry-title"><a href="/tong-guo-github-pageda-jian-ge-ren-blog.html" rel="bookmark" title="Permalink to 通过Github Page搭建个人Blog">通过Github Page搭建个人Blog</a></h2> </header>
<div class="entry-content"> <hr />
<p><strong><em>WARMING:本文将介绍介绍如何使用Mac在Github Page上搭建个人Blog</em></strong></p>
<hr />
<p>通过一个晚上的的努力和折腾,终于把Gihub Page的个人Blog搭建好了。所以有了这第一篇Blog。
至于为什么在Github Page上搭建Blog的原因:</p>
<h2>准备阶段</h2>
<ul>
<li>
<h3>Github账号</h3>
<p>因为要在Github Page上搭建Blog,所以你需要一个<a href="https://github.com">Github</a>账号。</p>
</li>
<li>
<h3>Github Page</h3>
<p>在<a href="http://pages.github.com/">Github Page</a>上创建自己的主页,这时候会生成一个<code>your_git_hub_account/your_git_hub_account.github.io</code>的代码库和<code>username.github.io</code>的主页(可能需要等几分钟)。</p>
</li>
<li>
<h3>Ruby</h3>
<p>因为以下所需要的一些工具是由<a href="https://www.ruby-lang.org/">Ruby</a>写的,所以需要安装Ruby。由于本人使用自带Ruby的Mac系统,所以就没有经历这步。</p>
</li>
<li>
<h3>pelican</h3>
<p><a href="http://blog.getpelican.com/">pelican</a>是一个静态网站生成工具,无需数据库以及服务器逻辑,所以拿来做Blog挺合适的。
通过<code>sudo easy-install pelican</code>进行安装 ...</p></li></ul> </div><!-- entry-content -->
</article>
<div class="pager">
<ul>
<li class="previous disabled"><a>← Previous</a></li>
<li class="next disabled"><a>Next →</a></li>
</ul>
</div>
</section><!-- content -->
<footer id="contentinfo" class="footer">
<nav class="pull-right bottom-nav">
<a href="/None">RSS</a>
</nav>
<address id="about" class="vcard body">
© <a href="">Call me Andy</a> Proudly powered by <a href="http://getpelican.com/">Pelican</a>
</address><!-- /#about -->
</footer><!-- /#contentinfo -->
</div><!-- container -->
</body>
</html>