-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
352 lines (283 loc) · 10.4 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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Github Pages中级教程</title>
<meta name="description" content="">
<meta name="author" content="陈堰平">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootswatch/2.3.1/amelia/bootstrap.min.css">
<link rel="stylesheet" href="./frameworks/revealjs/css/reveal.min.css">
<link rel="stylesheet" href="./frameworks/revealjs/css/theme/moon.css" id="theme">
<link rel="stylesheet" href="./highlighters/highlight.js/css/zenburn.css" id="theme">
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]--> <link rel="stylesheet" href = "assets/css/slidify-reveal.css">
<style type="text/css">
table{background-color: transparent;}
</style>
<!-- mathjax config similar to math.stackexchange -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true
}
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
}
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax(), i;
for(i=0; i < all.length; i += 1) {
all[i].SourceElement().parentNode.className += ' has-jax';
}
});
</script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section class='' data-state='' id='slide-1'>
<h2>Github Pages中级教程</h2>
<p><img src="./figure/cos-logo.png" alt=""></p>
<p><a href="http://weibo.com/rucypchen">陈堰平</a> </p>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
</section>
<section class='' data-state='' id='slide-2'>
<h2>目录</h2>
<ul>
<li>HTML/CSS 初步</li>
<li>markdown介绍</li>
<li>github的使用</li>
<li>github pages网站的搭建</li>
</ul>
</section>
<section class='' data-state='' id='config'>
<h2>幻灯片设置</h2>
<p>Reveal.js的主题设置:</p>
<p><a href="?theme=sky#/config">Sky</a> - <a href="?theme=beige#/config">Beige</a> - <a href="?theme=simple#/config">Simple</a> - <a href="?theme=serif#/config">Serif</a> - <a href="?theme=night#/config">Night</a> - <a href="?theme=default#/config">Default</a> - <a href="?theme=solarized#/config">Solarized</a> - <a href="?theme=moon#/config">Moon</a></p>
<p>选择切换方式: </p>
<p><a href="?transition=cube#/config">Cube</a> - <a href="?transition=page#/config">Page</a> - <a href="?transition=concave#/config">Concave</a> - <a href="?transition=zoom#/config">Zoom</a> - <a href="?transition=linear#/config">Linear</a> - <a href="?transition=fade#/config">Fade</a> - <a href="?transition=none#/config">None</a> - <a href="?transition=default#/config">Default</a></p>
</section>
<section>
<section class='' data-state=''>
<h2>HTML/CSS 初步</h2>
<aside class='notes'>
</aside>
</section>
<section class='' data-state=''>
<h2>HTML 概述</h2>
<ul>
<li> HTML 指的是超文本标记语言 (Hyper Text Markup Language)</li>
<li> HTML 不是一种编程语言,而是一种标记语言 (markup language)</li>
<li> 标记语言是一套标记标签 (markup tag)</li>
<li> HTML 使用标记标签来描述网页</li>
</ul>
<aside class='notes'>
</aside>
</section>
<section class='' data-state=''>
<h2>CSS 概述</h2>
<ul>
<li> CSS 指层叠样式表 (Cascading Style Sheets)</li>
<li> 样式定义如何显示 HTML 元素</li>
<li> 样式通常存储在样式表中</li>
<li> 把样式添加到 HTML 4.0 中,是为了解决内容与表现分离的问题</li>
<li> 外部样式表可以极大提高工作效率</li>
<li> 外部样式表通常存储在 CSS 文件中</li>
<li> 多个样式定义可层叠为一</li>
</ul>
<aside class='notes'>
</aside>
</section>
<section class='' data-state=''>
<h2>学习资源</h2>
<ul>
<li><a href="http://www.w3school.com.cn/">w3school</a> 在线帮助</li>
<li><a href="http://www.codecademy.com/">Codecademy</a> 在线交互式学习网站</li>
<li><a href="http://www.codeschool.com/%E2%80%8E">Code School</a> 同上,一部分课程免费</li>
<li><a href="http://wenku.baidu.com/course/list/9">百度文库视频教程</a></li>
<li><a href="http://zixue.it">自学it网</a> </li>
</ul>
<aside class='notes'>
</aside>
</section>
</section>
<section>
<section class='' data-state=''>
<h2>markdown介绍</h2>
<aside class='notes'>
</aside>
</section>
<section class='' data-state=''>
<h2>语法介绍</h2>
<ul>
<li><a href="http://daringfireball.net/projects/markdown/syntax/">英文教程</a></li>
<li><a href="http://wowubuntu.com/markdown/">中文教程</a></li>
</ul>
<aside class='notes'>
</aside>
</section>
<section class='' data-state=''>
<h2>几种解析markdown的工具</h2>
<ul>
<li>R + markdown包</li>
<li>RStudio</li>
<li>sublime text2 + Markdown Preview插件</li>
<li>pandoc</li>
</ul>
<aside class='notes'>
</aside>
</section>
<section class='' data-state=''>
<h2>用markdown写slides的工具</h2>
<ul>
<li>R + slidify包,参考文章<a href="http://xccds.github.io/2013/04/slides.html">实现可重复的统计slides</a>,<a href="https://github.com/yanping/talk-in-google">示例</a></li>
<li>pandoc,<a href="https://github.com/yanping/reveal.js-with-pandoc">示例</a></li>
<li><a href="https://github.com/jimhester/knitrBootstrap">knitrBoostrap</a>,<a href="https://github.com/yanping/r-training">示例</a></li>
</ul>
<aside class='notes'>
</aside>
</section>
</section>
<section>
<section class='' data-state=''>
<h2>github的使用</h2>
<ul>
<li>代码托管,版本控制</li>
<li>协同作业</li>
<li>程序猿(媛)社区</li>
</ul>
<p><img src="./figure/github.png" alt=""></p>
<aside class='notes'>
</aside>
</section>
<section class='' data-state=''>
<h2>git的设置</h2>
<ul>
<li>Windows: <a href="http://help.github.com/win-set-up-git/">http://help.github.com/win-set-up-git/</a></li>
<li>MacOS: <a href="http://help.github.com/mac-set-up-git/">http://help.github.com/mac-set-up-git/</a></li>
<li>Linux: <a href="http://help.github.com/linux-set-up-git/">http://help.github.com/linux-set-up-git/</a></li>
</ul>
<aside class='notes'>
</aside>
</section>
<section class='' data-state=''>
<h2>git命令</h2>
<table><thead>
<tr>
<th>命令</th>
<th>用途</th>
</tr>
</thead><tbody>
<tr>
<td>git init</td>
<td>初始化本地代码库</td>
</tr>
<tr>
<td>git add</td>
<td>添加要跟踪的文件</td>
</tr>
<tr>
<td>git commit</td>
<td>提交更改</td>
</tr>
<tr>
<td>git push</td>
<td>将本地代码推送到远程代码库</td>
</tr>
</tbody></table>
<h3 class="fragment margin-top-20">还可以做什么?</h3>
<ul class = "build incremental">
<li>代码的穿越</li>
</ul>
<aside class='notes'>
</aside>
</section>
<section class='' data-state=''>
<h2>学习资料</h2>
<ul>
<li><a href="http://www.worldhello.net/gotgithub/">GotGithub</a></li>
<li><a href="http://www.yangzhiping.com/tech/github.html">如何高效使用github</a></li>
<li>GIt权威指南</li>
</ul>
<p><img src="http://www.worldhello.net/images/gotgit.jpg" alt=""></p>
<aside class='notes'>
</aside>
</section>
</section>
<section>
<section class='' data-state=''>
<h2>github pages网站的搭建</h2>
<aside class='notes'>
</aside>
</section>
<section class='' data-state=''>
<h2>静态单页面</h2>
<p><a href="http://pages.github.com/"><img src="./figure/github-pages.png" alt=""></a></p>
<aside class='notes'>
</aside>
</section>
<section class='' data-state=''>
<h2>用jekyll做内容管理系统</h2>
<p><a href="http://jekyllrb.com/"><img src="./figure/jekyll.jpg" alt=""></a></p>
<p>利用现成的博客框架:<a href="http://jekyllbootstrap.com/">jekyllbootstrap</a> - <a href="http://octopress.org">octopress</a></p>
<aside class='notes'>
</aside>
</section>
</section>
<section class='' data-state='' id='slide-8'>
<h2>学习资源介绍</h2>
<ul>
<li><a href="http://www.yangzhiping.com/tech/writing-space.html">理想的写作环境:Git+Github+Markdown+Jekyll</a></li>
<li><a href="http://yihui.name/cn/2011/10/back-into-the-dust/">魂归大地</a></li>
</ul>
</section>
<section class='' data-state='' id='slide-9'>
<h1>谢谢!</h1>
<script>
$('ul.incremental li').addClass('fragment')
</script>
</section>
</div>
</div>
</body>
<script src="./frameworks/revealjs/lib/js/head.min.js"></script>
<script src="./frameworks/revealjs/js/reveal.min.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
theme: Reveal.getQueryHash().theme || 'moon',
transition: Reveal.getQueryHash().transition || 'cube',
dependencies: [
// Cross-browser shim that fully implements classList -
// https://github.com/eligrey/classList.js/
{ src: './frameworks/revealjs/lib/js/classList.js', condition: function() { return !document.body.classList;}},
// Zoom in and out with Alt+click
{ src: './frameworks/revealjs/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
// Speaker notes
{ src: './frameworks/revealjs/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } },
// Remote control your reveal.js presentation using a touch device
//{ src: './frameworks/revealjs/plugin/remotes/remotes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
</script> <!-- LOAD HIGHLIGHTER JS FILES -->
<script src="./highlighters/highlight.js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<!-- DONE LOADING HIGHLIGHTER JS FILES -->
</html>