-
Notifications
You must be signed in to change notification settings - Fork 0
/
my-post-3.html
147 lines (94 loc) · 3.49 KB
/
my-post-3.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<title>文章更新流程</title>
<meta charset="utf-8" />
<!-- Mobile viewport optimized: j.mp/bplateviewport -->
<meta name="viewport" content="width=device-width,initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="/theme/gumby.css" />
<link rel="stylesheet" type="text/css" href="/theme/style.css" />
<link rel="stylesheet" type="text/css" href="/theme/pygment.css" />
<script src="/theme/js/libs/modernizr-2.6.2.min.js"></script>
</head>
<body id="index" class="home">
<div class="container">
<div class="row">
<header id="banner" class="body">
<h1><a href="/">WSH's Blog <strong></strong></a></h1>
</header><!-- /#banner -->
<div id="navigation" class="navbar row">
<a href="#" gumby-trigger="#navigation > ul" class="toggle"><i class="icon-menu"></i></a>
<ul class="columns">
<li><a href="/">Home</a></li>
</ul>
</div>
<section id="content" class="body">
<div class="row">
<div class="eleven columns">
<header>
<h2 class="entry-title">
<a href="/my-post-3.html" rel="bookmark"
title="Permalink to 文章更新流程">文章更新流程</a></h2>
</header>
<footer class="post-info">
<abbr class="published" title="2022-01-20T17:10:00+00:00">
Thu 20 January 2022
</abbr>
<address class="vcard author">By
<a class="url fn" href="/author/wsh.html"> wsh</a>
</address>
</footer><!-- /.post-info -->
<div class="entry-content">
<hr>
<h4>步骤:</h4>
<ul>
<li>
<p>1.在content文件夹下新建.md文件,写内容</p>
</li>
<li>
<p>2.在根目录运行 pelican content,这一步pelican会在output目录自动生成网站的静态文件</p>
</li>
<li>
<p>3.在output文件夹下用git添加,然后将更新push上来就可以了</p>
</li>
</ul>
<hr>
</div><!-- /.entry-content -->
</div><!-- /.eleven.columns -->
<div class="three columns">
<h4>Pages</h4>
<ul>
<nav class="widget">
<h4>Social</h4>
<ul class="blank">
<li><a href="https://tiantianw.github.io/">wsh's blog</a></li>
<li><a href="https://github.com/tiantianw">GitHub</a></li>
</ul>
</nav>
</div> </div><!-- /.row -->
</section>
</div><!-- /.row -->
</div><!-- /.container -->
<div class="container.nopad bg">
<footer id="credits" class="row">
<div class="seven columns left-center">
<address id="about" class="vcard body">
Proudly powered by <a href="http://getpelican.com/">Pelican</a>,
which takes great advantage of <a href="http://python.org">Python</a>.
<br />
Based on the <a target="_blank" href="http://gumbyframework.com">Gumby Framework</a>
</address>
</div>
<div class="seven columns">
<div class="row">
<ul class="socbtns">
</ul>
</div>
</div>
</footer>
</div>
<script src="/theme/js/libs/jquery-1.9.1.min.js"></script>
<script src="/theme/js/libs/gumby.min.js"></script>
<script src="/theme/js/plugins.js"></script>
</body>
</html>