-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub.html
125 lines (90 loc) · 4.44 KB
/
github.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<!-- Set the viewport width to device width for mobile -->
<meta name="viewport" content="width=device-width" />
<title>Programming Journey - Github</title>
<link rel="stylesheet" href="http://hsiangholin.github.io/blog/theme/css/normalize.css" />
<link rel="stylesheet" href="http://hsiangholin.github.io/blog/theme/css/foundation.min.css" />
<link rel="stylesheet" href="http://hsiangholin.github.io/blog/theme/css/style.css" />
<link rel="stylesheet" href="http://hsiangholin.github.io/blog/theme/css/pygments.css" />
<script src="http://hsiangholin.github.io/blog/theme/js/custom.modernizr.js"></script>
</head>
<body>
<!-- Nav Bar -->
<nav>
<div class="top-bar">
<div class="row">
<div class="large-9 large-centered columns">
<h1><a href="http://hsiangholin.github.io/blog">Programming Journey</a></h1>
</div>
</div>
</div>
<!-- Show menu items and pages -->
<div class="row">
<div class="large-9 columns">
<ul class="button-group navigation">
</ul>
</div>
</div>
</nav>
<!-- End Nav -->
<!-- Main Page Content and Sidebar -->
<div class="row">
<!-- Main Blog Content -->
<div class="large-9 columns">
<article>
<a href="http://hsiangholin.github.io/blog/posts/2013/09/my-first-pelican.html"><h3 class="article-title">My First Pelican Post</h3></a>
<h6 class="subheader" title="2013-09-12T14:42:00">Thu 12 September 2013
</h6>
<p>I basically followed these posts:</p>
<p><a href="http://martinbrochhaus.com/pelican2.html">http://martinbrochhaus.com/pelican2.html</a></p>
<p><a href="https://gist.github.com/josefjezek/6053301">https://gist.github.com/josefjezek/6053301</a></p>
<p>But I got this error message when starting the Pelican developer server by "make devserver". The error message is "'bool' object is not callable". Turns out I need to install markdown by "pip install markdown".</p>
<p>You should also notice that the site url variable should be padded with "/RepoNameHere" for hosting in github to work. For example, in my templates/index.html, I have to replace "{{ SITEURL }}/" with "{{ SITEURL }}/blog".</p>
<p>Now I need to learn some markdown syntaxes.</p><p class="subheader">Category: <a href="http://hsiangholin.github.io/blog/category/misc.html">MISC</a>
Tagged:
<a href="http://hsiangholin.github.io/blog/tag/pelican.html">Pelican </a>
<a href="http://hsiangholin.github.io/blog/tag/github.html">Github </a>
</p>
<p><a href="http://hsiangholin.github.io/blog/posts/2013/09/my-first-pelican.html#disqus_thread">comments</a></p> </article>
<div class="pagination-centered">
<h6 class="subheader">Page 1 of 1</h6>
<p>
</p>
</div>
<!-- /#posts-list -->
</div>
<!-- End Main Content -->
<!-- Sidebar -->
<aside class="large-3 columns">
<h5 class="sidebar-title">Site</h5>
<ul class="side-nav">
<li><a href="http://hsiangholin.github.io/blog/archives.html">Archives</a>
<li><a href="http://hsiangholin.github.io/blog/tags.html">Tags</a>
</ul>
<h5 class="sidebar-title">Categories</h5>
<ul class="side-nav">
<li><a href="http://hsiangholin.github.io/blog/category/misc.html">MISC</a></li>
<li><a href="http://hsiangholin.github.io/blog/category/c-language.html">C Language</a></li>
<li><a href="http://hsiangholin.github.io/blog/category/algorithm.html">Algorithm</a></li>
<li><a href="http://hsiangholin.github.io/blog/category/about.html">About</a></li>
</ul>
<h5 class="sidebar-title">Links</h5>
<ul class="side-nav">
<li><a href="http://github.com">Github</a></li>
<li><a href="http://www.ntu.edu.tw">National Taiwan University</a></li>
</ul>
</aside> <!-- End Sidebar -->
</div> <!-- End Main Content and Sidebar -->
<!-- Footer -->
<footer class="row">
<div class="large-12 columns">
<hr />
<div class="row">
<div class="large-6 columns">
<p>Programming Journey by Hsiang-Ho Lin</p>
</div>
</div>
</div>
</footer>