├── README.md ├── sass └── screen.scss └── source ├── _includes ├── after_footer.html ├── archive_post.html ├── article.html ├── asides │ ├── delicious.html │ ├── github.html │ ├── googleplus.html │ ├── pinboard.html │ ├── recent_posts.html │ └── twitter.html ├── custom │ ├── after_footer.html │ ├── asides │ │ └── about.html │ ├── category_feed.xml │ ├── footer.html │ ├── head.html │ ├── header.html │ └── navigation.html ├── disqus.html ├── facebook_like.html ├── footer.html ├── google_analytics.html ├── google_plus_one.html ├── head.html ├── header.html ├── navigation.html ├── post │ ├── author.html │ ├── categories.html │ ├── date.html │ ├── disqus_thread.html │ └── sharing.html └── twitter_sharing.html ├── _layouts ├── category_index.html ├── default.html ├── page.html └── post.html ├── assets └── jwplayer │ ├── glow │ ├── controlbar │ │ ├── background.png │ │ ├── blankButton.png │ │ ├── divider.png │ │ ├── fullscreenButton.png │ │ ├── fullscreenButtonOver.png │ │ ├── muteButton.png │ │ ├── muteButtonOver.png │ │ ├── normalscreenButton.png │ │ ├── normalscreenButtonOver.png │ │ ├── pauseButton.png │ │ ├── pauseButtonOver.png │ │ ├── playButton.png │ │ ├── playButtonOver.png │ │ ├── timeSliderBuffer.png │ │ ├── timeSliderCapLeft.png │ │ ├── timeSliderCapRight.png │ │ ├── timeSliderProgress.png │ │ ├── timeSliderRail.png │ │ ├── unmuteButton.png │ │ └── unmuteButtonOver.png │ ├── display │ │ ├── background.png │ │ ├── bufferIcon.png │ │ ├── muteIcon.png │ │ └── playIcon.png │ ├── dock │ │ └── button.png │ ├── glow.xml │ ├── playlist │ │ ├── item.png │ │ ├── itemOver.png │ │ ├── sliderCapBottom.png │ │ ├── sliderCapTop.png │ │ ├── sliderRail.png │ │ └── sliderThumb.png │ └── sharing │ │ ├── embedIcon.png │ │ ├── embedScreen.png │ │ ├── shareIcon.png │ │ └── shareScreen.png │ └── player.swf ├── atom.xml ├── blog └── archives │ └── index.html ├── favicon.png ├── images ├── bird_32_gray.png ├── bird_32_gray_fail.png ├── code_bg.png ├── dotted-border.png ├── email.png ├── line-tile.png ├── noise.png ├── rss.png └── search.png ├── index.html ├── javascripts ├── ender.js ├── github.js ├── libs │ ├── ender.js │ ├── jXHR.js │ ├── jquery.min.js │ └── swfobject-dynamic.js ├── modernizr-2.0.js ├── octopress.js ├── pinboard.js └── twitter.js └── robots.txt /README.md: -------------------------------------------------------------------------------- 1 | Mewpassant 2 | ========== 3 | 4 | An Octopress theme called 'Mewpassant'. 5 | 6 | ![template preview](https://ddydeg.by3302.livefilestore.com/y2p1ZgHER4eIFaEHhwaf96MvZH4_iLufEIDj7o8acDgI1GXFDtPI-eRAgvokFoR9irbz738gMmWc_N7yexG6uhB1Dcmelb0cXg8HexpiAdZ5HQ/m.png "Maupassant template preview") 7 | 8 | 9 | With the following steps you can install this theme on your Octopress: 10 | 11 | ``` 12 | $ cd octopress 13 | $ git clone https://github.com/pagecho/Mewpassant.git .themes/mewpassant 14 | $ rake install['mewpassant'] 15 | $ rake generate 16 | ``` 17 | 18 | DO REMEMBER to back up the current template before installing. 19 | 20 | 21 | ###Maupassant on different platform: 22 | 23 | + Typecho:https://github.com/pagecho/maupassant/ 24 | + Octopress:https://github.com/pagecho/mewpassant/ 25 | + Farbox:https://github.com/pagecho/Maupassant-farbox/ 26 | + Wordpress:https://github.com/iMuFeng/maupassant/ (by iMuFeng) 27 | + Ghost: https://github.com/LjxPrime/maupassant (by LjxPrime) 28 | + Hexo: https://github.com/tufu9441/maupassant-hexo (by tufu9441) 29 | -------------------------------------------------------------------------------- /sass/screen.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * @package Mewpassant 3 | * @author cho 4 | * @version 1.2 5 | * @link http://pagecho.com 6 | */ 7 | 8 | article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { 9 | display:block 10 | } 11 | audio, canvas, video { 12 | display:inline-block 13 | } 14 | audio:not([controls]) { 15 | display:none; 16 | height:0 17 | } 18 | [hidden], template { 19 | display:none 20 | } 21 | html { 22 | font-family:sans-serif; 23 | -ms-text-size-adjust:100%; 24 | -webkit-text-size-adjust:100% 25 | } 26 | a { 27 | background:transparent 28 | } 29 | a:focus { 30 | outline:thin dotted 31 | } 32 | a:active, a:hover { 33 | outline:0 34 | } 35 | h1 { 36 | font-size:2em; 37 | margin:.67em 0 38 | } 39 | abbr[title] { 40 | border-bottom:1px dotted 41 | } 42 | b, strong { 43 | font-weight:700 44 | } 45 | dfn { 46 | font-style:italic 47 | } 48 | hr { 49 | -moz-box-sizing:content-box; 50 | box-sizing:content-box; 51 | height:0 52 | } 53 | mark { 54 | background:#ff0; 55 | color:#000 56 | } 57 | code, kbd, pre, samp { 58 | font-family:monospace, serif; 59 | font-size:1em 60 | } 61 | pre { 62 | white-space:pre-wrap 63 | } 64 | q { 65 | quotes:\201C \201D \2018 \2019 66 | } 67 | small { 68 | font-size:80% 69 | } 70 | sub, sup { 71 | font-size:75%; 72 | line-height:0; 73 | position:relative; 74 | vertical-align:baseline 75 | } 76 | sup { 77 | top:-.5em 78 | } 79 | sub { 80 | bottom:-.25em 81 | } 82 | img { 83 | border:0 84 | } 85 | svg:not(:root) { 86 | overflow:hidden 87 | } 88 | fieldset { 89 | border:1px solid silver; 90 | margin:0 2px; 91 | padding:.35em .625em .75em 92 | } 93 | button, input, select, textarea { 94 | font-family:inherit; 95 | font-size:100%; 96 | margin:0 97 | } 98 | button, input { 99 | line-height:normal 100 | } 101 | button, select { 102 | text-transform:none 103 | } 104 | button, html input[type=button], input[type=reset], input[type=submit] { 105 | -webkit-appearance:button; 106 | cursor:pointer 107 | } 108 | button[disabled], html input[disabled] { 109 | cursor:default 110 | } 111 | input[type=checkbox], input[type=radio] { 112 | box-sizing:border-box; 113 | padding:0 114 | } 115 | input[type=search] { 116 | -webkit-appearance:textfield; 117 | -moz-box-sizing:content-box; 118 | -webkit-box-sizing:content-box; 119 | box-sizing:content-box 120 | } 121 | input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration { 122 | -webkit-appearance:none 123 | } 124 | textarea { 125 | overflow:auto; 126 | vertical-align:top 127 | } 128 | table { 129 | border-collapse:collapse; 130 | border-spacing:0 131 | } 132 | body, figure { 133 | margin:0 134 | } 135 | legend, button::-moz-focus-inner, input::-moz-focus-inner { 136 | border:0; 137 | padding:0 138 | } 139 | ::selection { 140 | background:#F6F6F3; 141 | color:#555 142 | } 143 | body { 144 | background-color:#FFF; 145 | color:#444; 146 | font-family:"TIBch", "Classic Grotesque W01", "Helvetica Neue", Arial, "Hiragino Sans GB", "STHeiti", "Microsoft YaHei", "WenQuanYi Micro Hei", SimSun, sans-serif; 147 | -webkit-font-smoothing:antialiased; 148 | font-size:14px 149 | } 150 | a, button.submit { 151 | color:#6E7173; 152 | text-decoration:none; 153 | -webkit-transition:all .1s ease-in; 154 | -moz-transition:all .1s ease-in; 155 | -o-transition:all .1s ease-in; 156 | transition:all .1s ease-in 157 | } 158 | a:hover, a:active { 159 | color:#6E7173 160 | } 161 | pre, code { 162 | padding:2px 4px; 163 | background:#F8F8F8; 164 | font-family:Menlo, Monaco, Consolas, "Lucida Console", "Courier New", monospace; 165 | font-size:.92857em 166 | } 167 | pre { 168 | padding:8px; 169 | overflow:auto; 170 | max-height:400px 171 | } 172 | pre code { 173 | padding:0 174 | } 175 | blockquote { 176 | margin:2em 1.5em; 177 | padding-left:1.5em; 178 | border-left:4px solid #ddd; 179 | color:#777 180 | } 181 | h1, h2, h3 { 182 | font-family:"Helvetica Neue", Helvetica, Arial, sans-serif 183 | } 184 | input[type="text"], input[type="email"], input[type="url"], input[type="password"], textarea { 185 | padding:5px; 186 | border:1px solid #ddd; 187 | width:100%; 188 | border-radius:2px; 189 | -webkit-box-sizing:border-box; 190 | -moz-box-sizing:border-box; 191 | box-sizing:border-box; 192 | outline:none 193 | } 194 | textarea { 195 | resize:vertical 196 | } 197 | .clear { 198 | clear:both 199 | } 200 | .clearfix, .col-group { 201 | zoom:1 202 | } 203 | .clearfix:before, .col-group:before, .clearfix:after, .col-group:after { 204 | content:" "; 205 | display:table 206 | } 207 | .clearfix:after, .col-group:after { 208 | clear:both 209 | } 210 | .post-content a, .comment-content a { 211 | border-bottom:1px solid #ddd 212 | } 213 | .post-meta a:hover, .post-content a:hover, .widget a:hover, .comment-content a { 214 | border-bottom-color:transparent 215 | } 216 | #header { 217 | padding:32px 0 0; 218 | text-align:left 219 | } 220 | #header .container .col-group { 221 | border-bottom:1px solid #ddd 222 | } 223 | #logo { 224 | font:bold 50px/2"ff-tisa-web-pro", Cambria, "Times New Roman", Georgia, Times, sans-serif; 225 | color:#555 226 | } 227 | #logo span { 228 | color:#777 229 | } 230 | #logo:hover { 231 | color:#777 232 | } 233 | .description { 234 | margin:-22px 0 0; 235 | color:#999; 236 | font-style:italic 237 | } 238 | #nav-menu { 239 | margin:10px 0 -1px; 240 | padding:0; 241 | float:right 242 | } 243 | #nav-menu a { 244 | display:inline-block; 245 | margin-right:-1px; 246 | padding:0 20px; 247 | height:32px; 248 | line-height:32px; 249 | color:#444 250 | } 251 | #nav-menu a:first-child { 252 | border:none 253 | } 254 | #nav-menu a.current { 255 | border:1px solid #ddd; 256 | border-bottom:1px solid #fff 257 | } 258 | .site-search { 259 | display:none 260 | } 261 | #search { 262 | position:relative; 263 | margin-top:15px 264 | } 265 | #search input { 266 | padding:15px 30px 15px 15px; 267 | line-height:1 268 | } 269 | #search .text { 270 | background:transparent url(http://x.papaapp.com/farm1/a571d2/232aa4ce/icon-search.png) no-repeat 210px center 271 | } 272 | .col-8 { 273 | width:800px 274 | } 275 | .container { 276 | width:1150px; 277 | padding:0 60px; 278 | margin:0 auto 279 | } 280 | #secondary { 281 | float:right; 282 | width:245px; 283 | border-left:1px solid #ddd; 284 | padding-left:35px; 285 | word-wrap:break-word; 286 | display:block; 287 | padding-top:25px 288 | } 289 | #main { 290 | padding:32px 0 0; 291 | float:left; 292 | width:800px 293 | } 294 | .post { 295 | padding:10px 0 30px; 296 | } 297 | .post-title { 298 | margin:0; 299 | color:#555; 300 | text-align:left; 301 | font:bold 25px/1.2"ff-tisa-web-pro", Cambria, "Times New Roman", Georgia, Times, sans-serif 302 | } 303 | .post-title a { 304 | color:#555 305 | } 306 | .post-meta { 307 | padding:0; 308 | margin:9px 0 0; 309 | color:#999; 310 | text-align:left 311 | } 312 | .post-meta li { 313 | display:inline-block 314 | } 315 | .post-footer{ 316 | border-top: 1px solid #ddd; 317 | float: left; 318 | margin-top:27px; 319 | padding-top:.6em; 320 | } 321 | .post-footer .meta{ 322 | line-height:1.7em; 323 | } 324 | .comment-count { 325 | float:right; 326 | margin-top:-30px 327 | } 328 | .post-content { 329 | font-size:15px; 330 | line-height:1.715; 331 | color:#444; 332 | padding-top:25px 333 | } 334 | .post-content pre, code, .comment-content pre, code { 335 | padding:11px 4px; 336 | margin-bottom:22px; 337 | display:block 338 | } 339 | .post-content p { 340 | margin:0 0 1.234em 341 | } 342 | .post-content img { 343 | padding:1em 0 344 | } 345 | .post-content ul { 346 | background-color:#f8f8f8; 347 | border:1px solid #ddd; 348 | overflow:auto; 349 | padding:.5em 2.4em; 350 | border-radius:3px; 351 | margin:1.8em 0 352 | } 353 | .archive-title { 354 | padding-top:20px; 355 | color:#999; 356 | font-size:1em 357 | } 358 | .more { 359 | padding:10px 0 0 360 | } 361 | .more a { 362 | border:none 363 | } 364 | .protected .text { 365 | width:50% 366 | } 367 | .nav-center{ 368 | text-align: center; 369 | width: 100%; 370 | display: block; 371 | } 372 | .page-navigator .prev{ 373 | position: absolute; 374 | left: 0; 375 | } 376 | .page-navigator .next{ 377 | position: absolute; 378 | right: 0; 379 | } 380 | .page-navigator { 381 | border-top:1px solid #ddd; 382 | list-style:none; 383 | padding:22px 0 15px; 384 | font-size:16px; 385 | position:relative; 386 | } 387 | .page-navigator li { 388 | display:inline-block; 389 | margin:0 5px 5px 0 390 | } 391 | .page-navigator a { 392 | display:inline-block; 393 | padding:0 10px; 394 | height:25px; 395 | line-height:25px; 396 | padding:5px 9px; 397 | border:1px solid #DDD 398 | } 399 | .page-navigator a:hover { 400 | background:#F8F8F8; 401 | border-bottom-color:#D26911 402 | } 403 | .page-navigator .current a { 404 | background:#F8F8F8; 405 | border-bottom-color:#D26911 406 | } 407 | .widget { 408 | margin-bottom:30px 409 | } 410 | .widget-title, h3#response { 411 | color:#6E7173; 412 | line-height:2.7; 413 | margin-top:0; 414 | font-size:16px; 415 | border-bottom:1px solid #ddd 416 | } 417 | .widget-list { 418 | list-style:none; 419 | padding:0 420 | } 421 | .widget-list li { 422 | margin:5px 0; 423 | line-height:1.5 424 | } 425 | #footer { 426 | padding:1.4em 0 3.6em; 427 | line-height:1.5; 428 | color:#999 429 | } 430 | .error-page { 431 | margin-top:100px; 432 | margin-bottom:100px 433 | } 434 | .post-content h2, .comment-content h2 { 435 | font-size:1.28571em 436 | } 437 | .post-content img, .comment-content img { 438 | max-width:100% 439 | } 440 | .post-content a img { 441 | background:#FFF; 442 | position:relative; 443 | bottom:-4px 444 | } 445 | .post-content hr, .comment-content hr { 446 | margin:2em auto; 447 | width:100px; 448 | border:1px solid #ddd; 449 | border-width:2px 0 0 0 450 | } 451 | .aligncenter, div.aligncenter { 452 | display:block; 453 | margin-left:auto; 454 | margin-right:auto 455 | } 456 | .alignleft { 457 | float:left 458 | } 459 | .alignright { 460 | float:right 461 | } 462 | img.alignleft { 463 | margin:5px 15px 0 0 464 | } 465 | img.alignright { 466 | margin:5px 0 0 15px 467 | } 468 | figure.code { 469 | background:none; 470 | padding:0; 471 | border:0; 472 | margin-bottom:1.5em 473 | } 474 | .highlight { 475 | margin-bottom:1.8em; 476 | overflow-y:hidden; 477 | overflow-x:auto; 478 | background:#F8F8F8 479 | } 480 | .highlight { 481 | overflow-y:hidden; 482 | overflow-x:auto 483 | } 484 | td.code { 485 | display:block; 486 | overflow:hidden 487 | } 488 | .post-content .highlight code { 489 | margin-bottom:0; 490 | padding:0 10px 0 20px; 491 | overflow:scroll; 492 | overflow-y:hidden; 493 | display:block; 494 | overflow-x:auto; 495 | border-left:1px solid #fff 496 | } 497 | .highlight table { 498 | line-height:1.6; 499 | font-size:13px; 500 | color:#666 501 | } 502 | .highlight .td { 503 | padding:0 504 | } 505 | .line-number, .line { 506 | font-size:14px; 507 | white-space:pre 508 | } 509 | .line { 510 | display:block; 511 | overflow:hidden 512 | } 513 | .line-number { 514 | margin:0 2px 0 5px 515 | } 516 | .highlight pre { 517 | max-height:none; 518 | margin:0 519 | } 520 | .post-content code { 521 | display:inline; 522 | padding:5px 8px 523 | } 524 | #archives { 525 | padding:20px 0 526 | } 527 | #archives h2 { 528 | float:left; 529 | font-weight:normal; 530 | margin-bottom:0; 531 | } 532 | .al_year { 533 | padding:16px 0 0; 534 | font-size:23px; 535 | position:absolute 536 | } 537 | .al_meta { 538 | float:right; 539 | margin:11px 0; 540 | text-align: right; 541 | } 542 | .archives-post { 543 | margin-left:100px; 544 | border-bottom:1px solid #ddd 545 | } 546 | .left{margin-right:3em;} 547 | @media print, screen and (max-width: 1290px) { 548 | .container { 549 | width:auto 550 | } 551 | #main { 552 | width:100%; 553 | margin-right:-320px; 554 | float:left 555 | } 556 | .res-cons { 557 | width:auto; 558 | margin-right:320px 559 | } 560 | .post-content img { 561 | max-width:100% 562 | } 563 | } 564 | @media print, screen and (max-width: 1057px) { 565 | .container { 566 | width:auto 567 | } 568 | #main { 569 | width:100%; 570 | margin-right:-260px; 571 | float:left 572 | } 573 | .res-cons { 574 | width:auto; 575 | margin-right:260px 576 | } 577 | #secondary { 578 | width:180px 579 | } 580 | .post-content { 581 | font-size:14px 582 | } 583 | } 584 | @media print, screen and (max-width: 860px) { 585 | #header { 586 | text-align:center 587 | } 588 | #main { 589 | width:100%; 590 | margin-right:0 591 | } 592 | .res-cons { 593 | width:auto; 594 | margin-right:0 595 | } 596 | #secondary { 597 | display:none 598 | } 599 | } 600 | @media print, screen and (max-width: 680px) { 601 | .al_year { 602 | display:none 603 | } 604 | .archives-post{ 605 | margin-left: 0; 606 | } 607 | .container { 608 | padding:0 20px 609 | } 610 | .post-title { 611 | font-size:22px 612 | } 613 | .page-navigator { 614 | padding:15px 0 10px; 615 | } 616 | #footer { 617 | padding-top:10px 618 | } 619 | .page-navigator a { 620 | padding:0 6px 621 | } 622 | .post-content img { 623 | padding:0.2em 0 624 | } 625 | .post { 626 | padding:12px 0 627 | } 628 | #nav-menu { 629 | margin:35px 0 -1px 630 | } 631 | #nav-menu a { 632 | padding:0 15px; 633 | line-height:27px; 634 | height:27px; 635 | font-size:13px 636 | } 637 | } 638 | @media print, screen and (max-width: 500px) { 639 | .post-content-pages { 640 | font-size:14px 641 | } 642 | .al_mon_list { 643 | margin-left:70px; 644 | padding-left:20px 645 | } 646 | } 647 | -------------------------------------------------------------------------------- /source/_includes/after_footer.html: -------------------------------------------------------------------------------- 1 | {% include disqus.html %} 2 | {% include facebook_like.html %} 3 | {% include google_plus_one.html %} 4 | {% include twitter_sharing.html %} 5 | {% include custom/after_footer.html %} 6 | -------------------------------------------------------------------------------- /source/_includes/archive_post.html: -------------------------------------------------------------------------------- 1 | {% capture category %}{{ post.categories | size }}{% endcapture %} 2 |

{{post.title}}

3 |
4 | 5 | {% if category != '0' %} 6 | 9 | {% endif %} 10 |
-------------------------------------------------------------------------------- /source/_includes/article.html: -------------------------------------------------------------------------------- 1 | {% unless page.no_header %} 2 |
3 | {% if index %} 4 |

{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}

5 | {% else %} 6 |

{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}

7 | {% endif %} 8 | {% unless page.meta == false %} 9 |

10 | {% include post/date.html %}{{ time }} 11 | {% if site.disqus_short_name and page.comments != false and post.comments != false and site.disqus_show_comment_count == true %} 12 | | Comments 13 | {% endif %} 14 |

15 | {% endunless %} 16 |
17 | {% endunless %} 18 | {% if index %} 19 |
{{ content | excerpt }}
20 | {% capture excerpted %}{{ content | has_excerpt }}{% endcapture %} 21 | {% if excerpted == 'true' %} 22 | 25 | {% endif %} 26 | {% else %} 27 |
{{ content }}
28 | {% endif %} 29 | -------------------------------------------------------------------------------- /source/_includes/asides/delicious.html: -------------------------------------------------------------------------------- 1 | {% if site.delicious_user %} 2 |
3 |

On Delicious

4 |
5 | 6 |

My Delicious Bookmarks »

7 |
8 | {% endif %} -------------------------------------------------------------------------------- /source/_includes/asides/github.html: -------------------------------------------------------------------------------- 1 | {% if site.github_user %} 2 |
3 |

GitHub Repos

4 | 7 | {% if site.github_show_profile_link %} 8 | @{{site.github_user}} on GitHub 9 | {% endif %} 10 | 28 | 29 |
30 | {% endif %} 31 | -------------------------------------------------------------------------------- /source/_includes/asides/googleplus.html: -------------------------------------------------------------------------------- 1 | {% if site.googleplus_user %} 2 |
3 |

4 | 5 | 6 | Google+ 7 | 8 |

9 |
10 | {% endif %} 11 | 12 | -------------------------------------------------------------------------------- /source/_includes/asides/pinboard.html: -------------------------------------------------------------------------------- 1 | {% if site.pinboard_user %} 2 |
3 |

My Pinboard

4 | 5 |

My Pinboard Bookmarks »

6 |
7 | 19 | {% endif %} 20 | -------------------------------------------------------------------------------- /source/_includes/asides/recent_posts.html: -------------------------------------------------------------------------------- 1 |
2 | 6 |
7 | 8 |
9 |

最新文章

10 | 17 |
-------------------------------------------------------------------------------- /source/_includes/asides/twitter.html: -------------------------------------------------------------------------------- 1 | {% if site.twitter_user %} 2 |
3 |

Latest Tweets

4 | 7 | 12 | 13 | {% if site.twitter_follow_button %} 14 | Follow @{{ site.twitter_user }} 15 | {% else %} 16 |

Follow @{{ site.twitter_user }}

17 | {% endif %} 18 |
19 | {% endif %} 20 | -------------------------------------------------------------------------------- /source/_includes/custom/after_footer.html: -------------------------------------------------------------------------------- 1 | {% comment %} 2 | Add content to be output at the bottom of each page. (You might use this for analytics scripts, for example) 3 | {% endcomment %} 4 | -------------------------------------------------------------------------------- /source/_includes/custom/asides/about.html: -------------------------------------------------------------------------------- 1 |
2 |

About Me

3 |

A little something about me.

4 |
5 | -------------------------------------------------------------------------------- /source/_includes/custom/category_feed.xml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: nil 3 | --- 4 | 5 | 6 | 7 | <![CDATA[{{ page.title }} | {{ site.title }}]]> 8 | 9 | 10 | {{ site.time | date_to_xmlschema }} 11 | {{ site.url }}/ 12 | 13 | 14 | {% if site.email %}{% endif %} 15 | 16 | Octopress 17 | 18 | {% for post in site.categories[page.category] limit: 5 %} 19 | 20 | <![CDATA[{{ post.title | cdata_escape }}]]> 21 | 22 | {{ post.date | date_to_xmlschema }} 23 | {{ site.url }}{{ post.id }} 24 | 25 | 26 | {% endfor %} 27 | 28 | -------------------------------------------------------------------------------- /source/_includes/custom/footer.html: -------------------------------------------------------------------------------- 1 | Copyright © {{ site.time | date: "%Y" }} - {{ site.author }} - 2 | Powered by Octopress on GitHubPages 3 | 4 | - Theme by Cho 5 | 6 | -------------------------------------------------------------------------------- /source/_includes/custom/head.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/_includes/custom/header.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 7 | {% if site.subtitle %}

{{ site.subtitle }}

{% endif %} 8 |
9 |
10 | 13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /source/_includes/custom/navigation.html: -------------------------------------------------------------------------------- 1 | Blog 2 | Archives -------------------------------------------------------------------------------- /source/_includes/disqus.html: -------------------------------------------------------------------------------- 1 | {% comment %} Load script if disquss comments are enabled and `page.comments` is either empty (index) or set to true {% endcomment %} 2 | {% if site.disqus_short_name and page.comments != false %} 3 | 21 | {% endif %} 22 | -------------------------------------------------------------------------------- /source/_includes/facebook_like.html: -------------------------------------------------------------------------------- 1 | {% if site.facebook_like %} 2 |
3 | 10 | {% endif %} 11 | -------------------------------------------------------------------------------- /source/_includes/footer.html: -------------------------------------------------------------------------------- 1 |
2 | {% include custom/footer.html %} 3 |
4 | -------------------------------------------------------------------------------- /source/_includes/google_analytics.html: -------------------------------------------------------------------------------- 1 | {% if site.google_analytics_tracking_id %} 2 | 13 | {% endif %} 14 | -------------------------------------------------------------------------------- /source/_includes/google_plus_one.html: -------------------------------------------------------------------------------- 1 | {% if site.google_plus_one %} 2 | 9 | {% endif %} 10 | -------------------------------------------------------------------------------- /source/_includes/head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {% if page.title %}{{ page.title }} - {% endif %}{{ site.title }} 9 | 10 | 13 | {% capture description %}{% if page.description %}{{ page.description }}{% else %}{{ content | raw_content }}{% endif %}{% endcapture %} 14 | 15 | {% if page.keywords %}{% endif %} 16 | 17 | 18 | 19 | 20 | 21 | {% capture canonical %}{{ site.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' }}{% endif %}{% endcapture %} 22 | 23 | 24 | 25 | 26 | 27 | 28 | {% include custom/head.html %} 29 | {% include google_analytics.html %} 30 | -------------------------------------------------------------------------------- /source/_includes/header.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 7 | {% if site.subtitle %}

{{ site.subtitle }}

{% endif %} 8 |
9 |
10 | 13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /source/_includes/navigation.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/_includes/post/author.html: -------------------------------------------------------------------------------- 1 | {% if post.author %} 2 | {% assign author = post.author %} 3 | {% elsif page.author %} 4 | {% assign author = page.author %} 5 | {% else %} 6 | {% assign author = site.author %} 7 | {% endif %} 8 | {% if author %}Posted by {{ author }}{% endif %} 9 | -------------------------------------------------------------------------------- /source/_includes/post/categories.html: -------------------------------------------------------------------------------- 1 | {% capture category %}{% if post %}{{ post.categories | category_links | size }}{% else %}{{ page.categories | category_links | size }}{% endif %}{% endcapture %} 2 | {% unless category == '0' %} 3 | 4 | {% if post %} 5 | {{ post.categories | category_links }} 6 | {% else %} 7 | {{ page.categories | category_links }} 8 | {% endif %} 9 | 10 | {% endunless %} 11 | -------------------------------------------------------------------------------- /source/_includes/post/date.html: -------------------------------------------------------------------------------- 1 | {% capture date %}{{ page.date }}{{ post.date }}{% endcapture %} 2 | {% capture date_formatted %}{{ page.date_formatted }}{{ post.date_formatted }}{% endcapture %} 3 | {% capture has_date %}{{ date | size }}{% endcapture %} 4 | 5 | {% capture updated %}{{ page.updated }}{{ post.updated }}{% endcapture %} 6 | {% capture updated_formatted %}{{ page.updated_formatted }}{{ post.updated_formatted }}{% endcapture %} 7 | {% capture was_updated %}{{ updated | size }}{% endcapture %} 8 | 9 | {% if has_date != '0' %} 10 | {% capture time %}{% endcapture %} 11 | {% endif %} 12 | 13 | {% if was_updated != '0' %} 14 | {% capture updated %}{% endcapture %} 15 | {% else %}{% assign updated = false %}{% endif %} -------------------------------------------------------------------------------- /source/_includes/post/disqus_thread.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/_includes/post/sharing.html: -------------------------------------------------------------------------------- 1 |
2 | {% if site.twitter_tweet_button %} 3 | Tweet 4 | {% endif %} 5 | {% if site.google_plus_one %} 6 |
7 | {% endif %} 8 | {% if site.facebook_like %} 9 |
10 | {% endif %} 11 |
12 | -------------------------------------------------------------------------------- /source/_includes/twitter_sharing.html: -------------------------------------------------------------------------------- 1 | {% if site.twitter_follow_button or site.twitter_tweet_button %} 2 | 11 | {% endif %} 12 | -------------------------------------------------------------------------------- /source/_layouts/category_index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | footer: false 4 | --- 5 | 11 |
12 | {% for post in site.categories[page.category] %} 13 | {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %} 14 | {% unless year == this_year %} 15 | {% assign year = this_year %} 16 |
{{ year }}
17 | {% endunless %} 18 |
19 | {% include archive_post.html %} 20 |
21 | {% endfor %} 22 |
-------------------------------------------------------------------------------- /source/_layouts/default.html: -------------------------------------------------------------------------------- 1 | {% capture root_url %}{{ site.root | strip_slash }}{% endcapture %} 2 | {% include head.html %} 3 | 4 | 5 |
6 |
7 |
8 | {{ content | expand_urls: root_url }} 9 |
10 |
11 |
12 | 15 | {% include after_footer.html %} 16 | 17 | 18 | -------------------------------------------------------------------------------- /source/_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |
5 |
6 |
7 | {% if page.title %} 8 |
9 |

{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}

10 | {% if page.date %}

{% include post/date.html %}{{ time }}

{% endif %} 11 |
12 | {% endif %} 13 | {{ content }} 14 | {% unless page.footer == false %} 15 |
16 | {% if page.date or page.author %}

17 | {% if page.author %}{% include post/author.html %}{% endif %} 18 | {% include post/date.html %}{% if updated %}{{ updated }}{% else %}{{ time }}{% endif %} 19 | {% if page.categories %}{% include post/categories.html %}{% endif %} 20 |

{% endif %} 21 | {% unless page.sharing == false %} 22 | {% include post/sharing.html %} 23 | {% endunless %} 24 |
25 | {% endunless %} 26 |
27 | {% if site.disqus_short_name and page.comments == true %} 28 |
29 |

Comments

30 |
{% include post/disqus_thread.html %}
31 |
32 | {% endif %} 33 |
34 |
35 | {% unless page.sidebar == false %} 36 | 43 | {% endunless %} 44 | -------------------------------------------------------------------------------- /source/_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | single: true 4 | --- 5 | 6 |
7 |
8 |
9 | {% include article.html %} 10 |
11 |
12 | {% include post/author.html %} and 13 | File under {% include post/categories.html %} 14 |
15 | {% unless page.sharing == false %} 16 | {% include post/sharing.html %} 17 | {% endunless %} 18 |
19 | {% if page.previous.url %} 20 | « {{page.previous.title}} 21 | {% endif %} 22 | {% if page.next.url %} 23 | {{page.next.title}} » 24 | {% endif %} 25 |
26 |
27 |
28 | {% if site.disqus_short_name and page.comments == true %} 29 |
30 |

Comments

31 |
{% include post/disqus_thread.html %}
32 |
33 | {% endif %} 34 |
35 |
36 | {% unless page.sidebar == false %} 37 | 44 | {% endunless %} 45 | -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/background.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/blankButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/blankButton.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/divider.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/fullscreenButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/fullscreenButton.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/fullscreenButtonOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/fullscreenButtonOver.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/muteButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/muteButton.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/muteButtonOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/muteButtonOver.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/normalscreenButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/normalscreenButton.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/normalscreenButtonOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/normalscreenButtonOver.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/pauseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/pauseButton.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/pauseButtonOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/pauseButtonOver.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/playButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/playButton.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/playButtonOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/playButtonOver.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/timeSliderBuffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/timeSliderBuffer.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/timeSliderCapLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/timeSliderCapLeft.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/timeSliderCapRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/timeSliderCapRight.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/timeSliderProgress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/timeSliderProgress.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/timeSliderRail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/timeSliderRail.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/unmuteButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/unmuteButton.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/controlbar/unmuteButtonOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/controlbar/unmuteButtonOver.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/display/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/display/background.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/display/bufferIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/display/bufferIcon.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/display/muteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/display/muteIcon.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/display/playIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/display/playIcon.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/dock/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecho/mewpassant/1ecea3fed71588d466dafb53f35fac20e3dcb711/source/assets/jwplayer/glow/dock/button.png -------------------------------------------------------------------------------- /source/assets/jwplayer/glow/glow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |