nsume 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +7 -0
- data/LICENSE.txt +22 -0
- data/README.md +51 -0
- data/Rakefile +7 -0
- data/bin/nsume +6 -0
- data/lib/generators/_data/navbar.yml +12 -0
- data/lib/generators/_includes/navbar.liquid +31 -0
- data/lib/generators/_layouts/default.html +43 -0
- data/lib/generators/_layouts/post.html +7 -0
- data/lib/generators/assets/ico/favicon.ico +0 -0
- data/lib/generators/assets/img/octonsume.png +0 -0
- data/lib/generators/assets/themes/github/github.css +714 -0
- data/lib/generators/blog/index.html +11 -0
- data/lib/generators/changelog/index.html +11 -0
- data/lib/generators/index.html +14 -0
- data/lib/generators/vendor/autodoc/document.md.erb +16 -0
- data/lib/generators/vendor/autodoc/footer.md.erb +11 -0
- data/lib/generators/vendor/autodoc/header.md.erb +11 -0
- data/lib/nsume/cli.rb +91 -0
- data/lib/nsume/dev_helper.rb +23 -0
- data/lib/nsume/prepare.rb +119 -0
- data/lib/nsume/version.rb +3 -0
- data/lib/nsume.rb +44 -0
- data/lib/templates/_config.yml.erb +14 -0
- data/lib/templates/post.md.erb +6 -0
- data/nsume.gemspec +26 -0
- data/spec/nsume/version_spec.rb +7 -0
- metadata +130 -0
@@ -0,0 +1,714 @@
|
|
1
|
+
.body-classic{
|
2
|
+
color:#444;
|
3
|
+
font-family:Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', "Hiragino Sans GB", "STXihei", "微软雅黑", serif;
|
4
|
+
font-size:16px;
|
5
|
+
line-height:1.5em;
|
6
|
+
background:#fefefe;
|
7
|
+
width: 45em;
|
8
|
+
margin: 10px auto;
|
9
|
+
padding: 1em;
|
10
|
+
outline: 1300px solid #FAFAFA;
|
11
|
+
}
|
12
|
+
|
13
|
+
body>:first-child
|
14
|
+
{
|
15
|
+
margin-top:0!important;
|
16
|
+
}
|
17
|
+
|
18
|
+
body>:last-child
|
19
|
+
{
|
20
|
+
margin-bottom:0!important;
|
21
|
+
}
|
22
|
+
|
23
|
+
blockquote,dl,ol,p,pre,table,ul {
|
24
|
+
border: 0;
|
25
|
+
margin: 15px 0;
|
26
|
+
padding: 0;
|
27
|
+
}
|
28
|
+
|
29
|
+
body a {
|
30
|
+
color: #4183c4;
|
31
|
+
text-decoration: none;
|
32
|
+
}
|
33
|
+
|
34
|
+
body a:hover {
|
35
|
+
text-decoration: underline;
|
36
|
+
}
|
37
|
+
|
38
|
+
body a.absent
|
39
|
+
{
|
40
|
+
color:#c00;
|
41
|
+
}
|
42
|
+
|
43
|
+
body a.anchor
|
44
|
+
{
|
45
|
+
display:block;
|
46
|
+
padding-left:30px;
|
47
|
+
margin-left:-30px;
|
48
|
+
cursor:pointer;
|
49
|
+
position:absolute;
|
50
|
+
top:0;
|
51
|
+
left:0;
|
52
|
+
bottom:0
|
53
|
+
}
|
54
|
+
|
55
|
+
.octicon{
|
56
|
+
font:normal normal 16px sans-serif;
|
57
|
+
width: 1em;
|
58
|
+
height: 1em;
|
59
|
+
line-height:1;
|
60
|
+
display:inline-block;
|
61
|
+
text-decoration:none;
|
62
|
+
-webkit-font-smoothing:antialiased
|
63
|
+
}
|
64
|
+
|
65
|
+
.octicon-link {
|
66
|
+
background: url("data:image/svg+xml;utf8,<?xml version='1.0' standalone='no'?> <!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'> <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 832'> <metadata>Copyright (C) 2013 by GitHub</metadata> <!-- scale(0.01565557729941) --> <path transform='' d='M768 64h-192s-254 0-256 256c0 22 3 43 8 64h137c-11-19-18-41-18-64 0-128 128-128 128-128h192s128 0 128 128-128 128-128 128 0 64-64 128h64s256 0 256-256-256-256-256-256z m-72 192h-137c11 19 18 41 18 64 0 128-128 128-128 128h-192s-128 0-128-128 128-128 128-128-4-65 66-128h-66s-256 0-256 256 256 256 256 256h192s256 0 256-256c0-22-4-44-8-64z'/> </svg>");
|
67
|
+
background-size: contain;
|
68
|
+
background-repeat: no-repeat;
|
69
|
+
background-position: bottom;
|
70
|
+
}
|
71
|
+
|
72
|
+
.octicon-link:before{
|
73
|
+
content:'\a0';
|
74
|
+
}
|
75
|
+
|
76
|
+
body h1,body h2,body h3,body h4,body h5,body h6{
|
77
|
+
margin:1em 0 15px;
|
78
|
+
padding:0;
|
79
|
+
font-weight:bold;
|
80
|
+
line-height:1.7;
|
81
|
+
cursor:text;
|
82
|
+
position:relative
|
83
|
+
}
|
84
|
+
|
85
|
+
body h1 .octicon-link,body h2 .octicon-link,body h3 .octicon-link,body h4 .octicon-link,body h5 .octicon-link,body h6 .octicon-link{
|
86
|
+
display:none;
|
87
|
+
color:#000
|
88
|
+
}
|
89
|
+
|
90
|
+
body h1:hover a.anchor,body h2:hover a.anchor,body h3:hover a.anchor,body h4:hover a.anchor,body h5:hover a.anchor,body h6:hover a.anchor{
|
91
|
+
text-decoration:none;
|
92
|
+
line-height:1;
|
93
|
+
padding-left:0;
|
94
|
+
margin-left:-22px;
|
95
|
+
top:15%
|
96
|
+
}
|
97
|
+
|
98
|
+
body h1:hover a.anchor .octicon-link,body h2:hover a.anchor .octicon-link,body h3:hover a.anchor .octicon-link,body h4:hover a.anchor .octicon-link,body h5:hover a.anchor .octicon-link,body h6:hover a.anchor .octicon-link{
|
99
|
+
display:inline-block
|
100
|
+
}
|
101
|
+
|
102
|
+
body h1 tt,body h1 code,body h2 tt,body h2 code,body h3 tt,body h3 code,body h4 tt,body h4 code,body h5 tt,body h5 code,body h6 tt,body h6 code{
|
103
|
+
font-size:inherit
|
104
|
+
}
|
105
|
+
|
106
|
+
body h1{
|
107
|
+
font-size:2.5em;
|
108
|
+
border-bottom:1px solid #ddd
|
109
|
+
}
|
110
|
+
|
111
|
+
body h2{
|
112
|
+
font-size:2em;
|
113
|
+
border-bottom:1px solid #eee
|
114
|
+
}
|
115
|
+
|
116
|
+
body h3{
|
117
|
+
font-size:1.5em
|
118
|
+
}
|
119
|
+
|
120
|
+
body h4{
|
121
|
+
font-size:1.2em
|
122
|
+
}
|
123
|
+
|
124
|
+
body h5{
|
125
|
+
font-size:1em
|
126
|
+
}
|
127
|
+
|
128
|
+
body h6{
|
129
|
+
color:#777;
|
130
|
+
font-size:1em
|
131
|
+
}
|
132
|
+
|
133
|
+
body p,body blockquote,body ul,body ol,body dl,body table,body pre{
|
134
|
+
margin:15px 0
|
135
|
+
}
|
136
|
+
|
137
|
+
body h1 tt,body h1 code,body h2 tt,body h2 code,body h3 tt,body h3 code,body h4 tt,body h4 code,body h5 tt,body h5 code,body h6 tt,body h6 code
|
138
|
+
{
|
139
|
+
font-size:inherit;
|
140
|
+
}
|
141
|
+
|
142
|
+
body li p.first
|
143
|
+
{
|
144
|
+
display:inline-block;
|
145
|
+
}
|
146
|
+
|
147
|
+
body ul,body ol
|
148
|
+
{
|
149
|
+
padding-left:30px;
|
150
|
+
}
|
151
|
+
|
152
|
+
body ul.no-list,body ol.no-list
|
153
|
+
{
|
154
|
+
list-style-type:none;
|
155
|
+
padding:0;
|
156
|
+
}
|
157
|
+
|
158
|
+
body ul ul,body ul ol,body ol ol,body ol ul
|
159
|
+
{
|
160
|
+
margin-bottom:0;
|
161
|
+
margin-top:0;
|
162
|
+
}
|
163
|
+
|
164
|
+
body dl
|
165
|
+
{
|
166
|
+
padding:0;
|
167
|
+
}
|
168
|
+
|
169
|
+
body dl dt
|
170
|
+
{
|
171
|
+
font-size:14px;
|
172
|
+
font-style:italic;
|
173
|
+
font-weight:700;
|
174
|
+
margin-top:15px;
|
175
|
+
padding:0;
|
176
|
+
}
|
177
|
+
|
178
|
+
body dl dd
|
179
|
+
{
|
180
|
+
margin-bottom:15px;
|
181
|
+
padding:0 15px;
|
182
|
+
}
|
183
|
+
|
184
|
+
body blockquote
|
185
|
+
{
|
186
|
+
border-left:4px solid #DDD;
|
187
|
+
color:#777;
|
188
|
+
padding:0 15px;
|
189
|
+
}
|
190
|
+
|
191
|
+
body blockquote>:first-child
|
192
|
+
{
|
193
|
+
margin-top:0;
|
194
|
+
}
|
195
|
+
|
196
|
+
body blockquote>:last-child
|
197
|
+
{
|
198
|
+
margin-bottom:0;
|
199
|
+
}
|
200
|
+
|
201
|
+
body table
|
202
|
+
{
|
203
|
+
display:block;
|
204
|
+
overflow:auto;
|
205
|
+
width:100%;
|
206
|
+
border-collapse: collapse;
|
207
|
+
border-spacing: 0;
|
208
|
+
padding: 0;
|
209
|
+
}
|
210
|
+
|
211
|
+
body table th
|
212
|
+
{
|
213
|
+
font-weight:700;
|
214
|
+
}
|
215
|
+
|
216
|
+
body table th,body table td
|
217
|
+
{
|
218
|
+
border:1px solid #ddd;
|
219
|
+
padding:6px 13px;
|
220
|
+
}
|
221
|
+
|
222
|
+
body table tr
|
223
|
+
{
|
224
|
+
background-color:#fff;
|
225
|
+
border-top:1px solid #ccc;
|
226
|
+
}
|
227
|
+
|
228
|
+
body table tr:nth-child(2n)
|
229
|
+
{
|
230
|
+
background-color:#f8f8f8;
|
231
|
+
}
|
232
|
+
|
233
|
+
body img
|
234
|
+
{
|
235
|
+
-moz-box-sizing:border-box;
|
236
|
+
box-sizing:border-box;
|
237
|
+
max-width:100%;
|
238
|
+
}
|
239
|
+
|
240
|
+
body span.frame
|
241
|
+
{
|
242
|
+
display:block;
|
243
|
+
overflow:hidden;
|
244
|
+
}
|
245
|
+
|
246
|
+
body span.frame>span
|
247
|
+
{
|
248
|
+
border:1px solid #ddd;
|
249
|
+
display:block;
|
250
|
+
float:left;
|
251
|
+
margin:13px 0 0;
|
252
|
+
overflow:hidden;
|
253
|
+
padding:7px;
|
254
|
+
width:auto;
|
255
|
+
}
|
256
|
+
|
257
|
+
body span.frame span img
|
258
|
+
{
|
259
|
+
display:block;
|
260
|
+
float:left;
|
261
|
+
}
|
262
|
+
|
263
|
+
body span.frame span span
|
264
|
+
{
|
265
|
+
clear:both;
|
266
|
+
color:#333;
|
267
|
+
display:block;
|
268
|
+
padding:5px 0 0;
|
269
|
+
}
|
270
|
+
|
271
|
+
body span.align-center
|
272
|
+
{
|
273
|
+
clear:both;
|
274
|
+
display:block;
|
275
|
+
overflow:hidden;
|
276
|
+
}
|
277
|
+
|
278
|
+
body span.align-center>span
|
279
|
+
{
|
280
|
+
display:block;
|
281
|
+
margin:13px auto 0;
|
282
|
+
overflow:hidden;
|
283
|
+
text-align:center;
|
284
|
+
}
|
285
|
+
|
286
|
+
body span.align-center span img
|
287
|
+
{
|
288
|
+
margin:0 auto;
|
289
|
+
text-align:center;
|
290
|
+
}
|
291
|
+
|
292
|
+
body span.align-right
|
293
|
+
{
|
294
|
+
clear:both;
|
295
|
+
display:block;
|
296
|
+
overflow:hidden;
|
297
|
+
}
|
298
|
+
|
299
|
+
body span.align-right>span
|
300
|
+
{
|
301
|
+
display:block;
|
302
|
+
margin:13px 0 0;
|
303
|
+
overflow:hidden;
|
304
|
+
text-align:right;
|
305
|
+
}
|
306
|
+
|
307
|
+
body span.align-right span img
|
308
|
+
{
|
309
|
+
margin:0;
|
310
|
+
text-align:right;
|
311
|
+
}
|
312
|
+
|
313
|
+
body span.float-left
|
314
|
+
{
|
315
|
+
display:block;
|
316
|
+
float:left;
|
317
|
+
margin-right:13px;
|
318
|
+
overflow:hidden;
|
319
|
+
}
|
320
|
+
|
321
|
+
body span.float-left span
|
322
|
+
{
|
323
|
+
margin:13px 0 0;
|
324
|
+
}
|
325
|
+
|
326
|
+
body span.float-right
|
327
|
+
{
|
328
|
+
display:block;
|
329
|
+
float:right;
|
330
|
+
margin-left:13px;
|
331
|
+
overflow:hidden;
|
332
|
+
}
|
333
|
+
|
334
|
+
body span.float-right>span
|
335
|
+
{
|
336
|
+
display:block;
|
337
|
+
margin:13px auto 0;
|
338
|
+
overflow:hidden;
|
339
|
+
text-align:right;
|
340
|
+
}
|
341
|
+
|
342
|
+
body code,body tt
|
343
|
+
{
|
344
|
+
background-color:#f8f8f8;
|
345
|
+
border:1px solid #ddd;
|
346
|
+
border-radius:3px;
|
347
|
+
margin:0 2px;
|
348
|
+
padding:0 5px;
|
349
|
+
}
|
350
|
+
|
351
|
+
body code
|
352
|
+
{
|
353
|
+
white-space:nowrap;
|
354
|
+
}
|
355
|
+
|
356
|
+
|
357
|
+
code,pre{
|
358
|
+
font-family:Consolas, "Liberation Mono", Courier, monospace;
|
359
|
+
font-size:12px
|
360
|
+
}
|
361
|
+
|
362
|
+
body pre>code
|
363
|
+
{
|
364
|
+
background:transparent;
|
365
|
+
border:none;
|
366
|
+
margin:0;
|
367
|
+
padding:0;
|
368
|
+
white-space:pre;
|
369
|
+
}
|
370
|
+
|
371
|
+
body .highlight pre,body pre
|
372
|
+
{
|
373
|
+
background-color:#f8f8f8;
|
374
|
+
border:1px solid #ddd;
|
375
|
+
font-size:13px;
|
376
|
+
line-height:19px;
|
377
|
+
overflow:auto;
|
378
|
+
padding:6px 10px;
|
379
|
+
border-radius:3px
|
380
|
+
}
|
381
|
+
|
382
|
+
body pre code,body pre tt
|
383
|
+
{
|
384
|
+
background-color:transparent;
|
385
|
+
border:none;
|
386
|
+
margin:0;
|
387
|
+
padding:0;
|
388
|
+
}
|
389
|
+
|
390
|
+
body .task-list{
|
391
|
+
list-style-type:none;
|
392
|
+
padding-left:10px
|
393
|
+
}
|
394
|
+
|
395
|
+
.task-list-item{
|
396
|
+
padding-left:20px
|
397
|
+
}
|
398
|
+
|
399
|
+
.task-list-item label{
|
400
|
+
font-weight:normal
|
401
|
+
}
|
402
|
+
|
403
|
+
.task-list-item.enabled label{
|
404
|
+
cursor:pointer
|
405
|
+
}
|
406
|
+
|
407
|
+
.task-list-item+.task-list-item{
|
408
|
+
margin-top:5px
|
409
|
+
}
|
410
|
+
|
411
|
+
.task-list-item-checkbox{
|
412
|
+
float:left;
|
413
|
+
margin-left:-20px;
|
414
|
+
margin-top:7px
|
415
|
+
}
|
416
|
+
|
417
|
+
|
418
|
+
.highlight{
|
419
|
+
background:#ffffff
|
420
|
+
}
|
421
|
+
|
422
|
+
.highlight .c{
|
423
|
+
color:#999988;
|
424
|
+
font-style:italic
|
425
|
+
}
|
426
|
+
|
427
|
+
.highlight .err{
|
428
|
+
color:#a61717;
|
429
|
+
background-color:#e3d2d2
|
430
|
+
}
|
431
|
+
|
432
|
+
.highlight .k{
|
433
|
+
font-weight:bold
|
434
|
+
}
|
435
|
+
|
436
|
+
.highlight .o{
|
437
|
+
font-weight:bold
|
438
|
+
}
|
439
|
+
|
440
|
+
.highlight .cm{
|
441
|
+
color:#999988;
|
442
|
+
font-style:italic
|
443
|
+
}
|
444
|
+
|
445
|
+
.highlight .cp{
|
446
|
+
color:#999999;
|
447
|
+
font-weight:bold
|
448
|
+
}
|
449
|
+
|
450
|
+
.highlight .c1{
|
451
|
+
color:#999988;
|
452
|
+
font-style:italic
|
453
|
+
}
|
454
|
+
|
455
|
+
.highlight .cs{
|
456
|
+
color:#999999;
|
457
|
+
font-weight:bold;
|
458
|
+
font-style:italic
|
459
|
+
}
|
460
|
+
|
461
|
+
.highlight .gd{
|
462
|
+
color:#000000;
|
463
|
+
background-color:#ffdddd
|
464
|
+
}
|
465
|
+
|
466
|
+
.highlight .gd .x{
|
467
|
+
color:#000000;
|
468
|
+
background-color:#ffaaaa
|
469
|
+
}
|
470
|
+
|
471
|
+
.highlight .ge{
|
472
|
+
font-style:italic
|
473
|
+
}
|
474
|
+
|
475
|
+
.highlight .gr{
|
476
|
+
color:#aa0000
|
477
|
+
}
|
478
|
+
|
479
|
+
.highlight .gh{
|
480
|
+
color:#999999
|
481
|
+
}
|
482
|
+
|
483
|
+
.highlight .gi{
|
484
|
+
color:#000000;
|
485
|
+
background-color:#ddffdd
|
486
|
+
}
|
487
|
+
|
488
|
+
.highlight .gi .x{
|
489
|
+
color:#000000;
|
490
|
+
background-color:#aaffaa
|
491
|
+
}
|
492
|
+
|
493
|
+
.highlight .go{
|
494
|
+
color:#888888
|
495
|
+
}
|
496
|
+
|
497
|
+
.highlight .gp{
|
498
|
+
color:#555555
|
499
|
+
}
|
500
|
+
|
501
|
+
.highlight .gs{
|
502
|
+
font-weight:bold
|
503
|
+
}
|
504
|
+
|
505
|
+
.highlight .gu{
|
506
|
+
color:#800080;
|
507
|
+
font-weight:bold
|
508
|
+
}
|
509
|
+
|
510
|
+
.highlight .gt{
|
511
|
+
color:#aa0000
|
512
|
+
}
|
513
|
+
|
514
|
+
.highlight .kc{
|
515
|
+
font-weight:bold
|
516
|
+
}
|
517
|
+
|
518
|
+
.highlight .kd{
|
519
|
+
font-weight:bold
|
520
|
+
}
|
521
|
+
|
522
|
+
.highlight .kn{
|
523
|
+
font-weight:bold
|
524
|
+
}
|
525
|
+
|
526
|
+
.highlight .kp{
|
527
|
+
font-weight:bold
|
528
|
+
}
|
529
|
+
|
530
|
+
.highlight .kr{
|
531
|
+
font-weight:bold
|
532
|
+
}
|
533
|
+
|
534
|
+
.highlight .kt{
|
535
|
+
color:#445588;
|
536
|
+
font-weight:bold
|
537
|
+
}
|
538
|
+
|
539
|
+
.highlight .m{
|
540
|
+
color:#009999
|
541
|
+
}
|
542
|
+
|
543
|
+
.highlight .s{
|
544
|
+
color:#d14
|
545
|
+
}
|
546
|
+
|
547
|
+
.highlight .n{
|
548
|
+
color:#333333
|
549
|
+
}
|
550
|
+
|
551
|
+
.highlight .na{
|
552
|
+
color:#008080
|
553
|
+
}
|
554
|
+
|
555
|
+
.highlight .nb{
|
556
|
+
color:#0086B3
|
557
|
+
}
|
558
|
+
|
559
|
+
.highlight .nc{
|
560
|
+
color:#445588;
|
561
|
+
font-weight:bold
|
562
|
+
}
|
563
|
+
|
564
|
+
.highlight .no{
|
565
|
+
color:#008080
|
566
|
+
}
|
567
|
+
|
568
|
+
.highlight .ni{
|
569
|
+
color:#800080
|
570
|
+
}
|
571
|
+
|
572
|
+
.highlight .ne{
|
573
|
+
color:#990000;
|
574
|
+
font-weight:bold
|
575
|
+
}
|
576
|
+
|
577
|
+
.highlight .nf{
|
578
|
+
color:#990000;
|
579
|
+
font-weight:bold
|
580
|
+
}
|
581
|
+
|
582
|
+
.highlight .nn{
|
583
|
+
color:#555555
|
584
|
+
}
|
585
|
+
|
586
|
+
.highlight .nt{
|
587
|
+
color:#000080
|
588
|
+
}
|
589
|
+
|
590
|
+
.highlight .nv{
|
591
|
+
color:#008080
|
592
|
+
}
|
593
|
+
|
594
|
+
.highlight .ow{
|
595
|
+
font-weight:bold
|
596
|
+
}
|
597
|
+
|
598
|
+
.highlight .w{
|
599
|
+
color:#bbbbbb
|
600
|
+
}
|
601
|
+
|
602
|
+
.highlight .mf{
|
603
|
+
color:#009999
|
604
|
+
}
|
605
|
+
|
606
|
+
.highlight .mh{
|
607
|
+
color:#009999
|
608
|
+
}
|
609
|
+
|
610
|
+
.highlight .mi{
|
611
|
+
color:#009999
|
612
|
+
}
|
613
|
+
|
614
|
+
.highlight .mo{
|
615
|
+
color:#009999
|
616
|
+
}
|
617
|
+
|
618
|
+
.highlight .sb{
|
619
|
+
color:#d14
|
620
|
+
}
|
621
|
+
|
622
|
+
.highlight .sc{
|
623
|
+
color:#d14
|
624
|
+
}
|
625
|
+
|
626
|
+
.highlight .sd{
|
627
|
+
color:#d14
|
628
|
+
}
|
629
|
+
|
630
|
+
.highlight .s2{
|
631
|
+
color:#d14
|
632
|
+
}
|
633
|
+
|
634
|
+
.highlight .se{
|
635
|
+
color:#d14
|
636
|
+
}
|
637
|
+
|
638
|
+
.highlight .sh{
|
639
|
+
color:#d14
|
640
|
+
}
|
641
|
+
|
642
|
+
.highlight .si{
|
643
|
+
color:#d14
|
644
|
+
}
|
645
|
+
|
646
|
+
.highlight .sx{
|
647
|
+
color:#d14
|
648
|
+
}
|
649
|
+
|
650
|
+
.highlight .sr{
|
651
|
+
color:#009926
|
652
|
+
}
|
653
|
+
|
654
|
+
.highlight .s1{
|
655
|
+
color:#d14
|
656
|
+
}
|
657
|
+
|
658
|
+
.highlight .ss{
|
659
|
+
color:#990073
|
660
|
+
}
|
661
|
+
|
662
|
+
.highlight .bp{
|
663
|
+
color:#999999
|
664
|
+
}
|
665
|
+
|
666
|
+
.highlight .vc{
|
667
|
+
color:#008080
|
668
|
+
}
|
669
|
+
|
670
|
+
.highlight .vg{
|
671
|
+
color:#008080
|
672
|
+
}
|
673
|
+
|
674
|
+
.highlight .vi{
|
675
|
+
color:#008080
|
676
|
+
}
|
677
|
+
|
678
|
+
.highlight .il{
|
679
|
+
color:#009999
|
680
|
+
}
|
681
|
+
|
682
|
+
.highlight .gc{
|
683
|
+
color:#999;
|
684
|
+
background-color:#EAF2F5
|
685
|
+
}
|
686
|
+
|
687
|
+
.type-csharp .highlight .k{
|
688
|
+
color:#0000FF
|
689
|
+
}
|
690
|
+
|
691
|
+
.type-csharp .highlight .kt{
|
692
|
+
color:#0000FF
|
693
|
+
}
|
694
|
+
|
695
|
+
.type-csharp .highlight .nf{
|
696
|
+
color:#000000;
|
697
|
+
font-weight:normal
|
698
|
+
}
|
699
|
+
|
700
|
+
.type-csharp .highlight .nc{
|
701
|
+
color:#2B91AF
|
702
|
+
}
|
703
|
+
|
704
|
+
.type-csharp .highlight .nn{
|
705
|
+
color:#000000
|
706
|
+
}
|
707
|
+
|
708
|
+
.type-csharp .highlight .s{
|
709
|
+
color:#A31515
|
710
|
+
}
|
711
|
+
|
712
|
+
.type-csharp .highlight .sc{
|
713
|
+
color:#A31515
|
714
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
title: Changelog
|
4
|
+
---
|
5
|
+
|
6
|
+
{% for post in site.posts %}
|
7
|
+
<strong><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a> </strong>
|
8
|
+
<smale class="text-muted">( {{ post.date | date: "%B %-d, %Y" }} )</smale>
|
9
|
+
{{ post.content }}
|
10
|
+
<hr>
|
11
|
+
{% endfor %}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<div class="row">
|
6
|
+
<div class="col-lg-4">
|
7
|
+
<h2>Leverage the power of {{ site.name }} in your app</h2>
|
8
|
+
<p>Getting started guides.</p>
|
9
|
+
<p><a href="{{ site.baseurl }}{{ site.data.navbar.last.path }}" class="btn btn-info">Browse the documentation</a></p>
|
10
|
+
</div>
|
11
|
+
<div class="col-lg-4">
|
12
|
+
<img src="{{ site.baseurl }}/assets/img/octonsume.png">
|
13
|
+
</div>
|
14
|
+
</div>
|