{{ page.subheadline }}
{% endif %} 27 |├── .bundle └── config ├── .gitignore ├── 404.html ├── About.md ├── Gruntfile.js ├── Interview.html ├── LICENSE ├── README.md ├── Tools.md ├── Travel.md ├── _config.yml ├── _includes ├── alert ├── footer.html ├── gallery ├── head.html ├── list-collection ├── list-posts ├── nav.html └── next-previous-post-in-category ├── _layouts ├── default.html ├── gallery_index.html ├── gallery_page.html ├── page.html ├── pages.html └── post.html ├── _posts ├── 2015-08-19-Markdown-Syntax.md ├── 2015-10-23-Vim.md └── Template.md ├── css ├── bootstrap.css ├── bootstrap.min.css ├── clean-blog.css ├── clean-blog.min.css ├── sheet.css └── syntax.css ├── feed.xml ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── images ├── gallery-example-1-thumb.jpg ├── gallery-example-1.jpg ├── gallery-example-2-thumb.jpg ├── gallery-example-2.jpg ├── gallery-example-3-thumb.jpg ├── gallery-example-3.jpg ├── gallery-example-4-thumb.jpg ├── gallery-example-4.jpg ├── instagram │ ├── insta2.jpg │ ├── insta3.jpg │ ├── insta4.jpg │ ├── insta5.jpg │ ├── insta6.jpg │ └── insta7.jpg ├── mountain.jpg └── net.jpg ├── img ├── Themes │ ├── Balzac-for-Jekyll.jpg │ ├── BlogThemesX.jpg │ ├── Business-Casual.jpg │ ├── Centrarium.jpg │ ├── Clean-Blog.jpg │ ├── Clean.jpg │ ├── Feeling-Responsive.jpg │ ├── Freshman21.jpg │ ├── Hmfaysal-Omega-Theme.jpg │ ├── Kunka.jpg │ ├── Lanyon.jpg │ ├── Minimal-Mistakes.jpg │ ├── Rusty-Shutter.jpg │ ├── Scribble.jpg │ ├── Shiori.jpg │ ├── Slim-Pickins-Jekyll-Theme.jpg │ ├── So-Simple-Theme.jpg │ └── Twister-Jekyll-Theme.jpg ├── Zero.png ├── alone.jpg ├── autumn.jpg ├── autumn2.jpg ├── bay.jpg ├── birds.jpg ├── dolphin.gif ├── elephant.jpg ├── fantasy.jpg ├── favicon.ico ├── favicon.png ├── grass.jpg ├── hacker.png ├── plane.jpg ├── plane2.jpg ├── seagulls.jpg ├── sky2.jpg ├── tree.jpg └── umbrella.jpg ├── index.html ├── js ├── bootstrap.js ├── bootstrap.min.js ├── clean-blog.js ├── clean-blog.min.js ├── jquery.js └── jquery.min.js ├── less ├── clean-blog.less ├── mixins.less └── variables.less ├── package.json ├── photos └── Instagram │ ├── _I_think_there_is_a_deep_well_of_emotion_in_us_that_gets_tapped_when_we_are_confronted_with_the_beauty_of_nature___says_Bridget_Beth_Collins___flora.forager_._The_Seattle-based_botanical_artist_reconstructs_the_blooms_of_nature_into_designs__creature.jpg │ ├── __Photo_by__my_cat_pippin________________________Want_to_be_featured_next___Upload_your_photos_on_my_social_network__soon_to_be_an_app__www.fuzmo.com________________________Check_out_my_other_accounts__insta_dog__puppytagss__animal_view____by_insta_a.jpg │ ├── __Summer......_by_thegoodly.jpg │ ├── _______________________Photo_credit__aperkylife________________________Want_to_be_featured_next___Upload_your_photos_on_my_new_social_network_www.fuzmo.com________________________Check_out_my_other_accounts__insta_dog__puppytagss__animal_view________.jpg │ ├── _______________________Photo_credit__kingcavclove________________________Want_to_be_featured_next___Upload_your_photos_on_my_new_social_network_www.fuzmo.com__link_is_in_my_bio_________________________Check_out_my_other_accounts__insta_dog__puppytags.jpg │ ├── _______by_halno.jpg │ ├── _____by_seipuorg.jpg │ ├── ____by_joez19.jpg │ ├── ___by_gemyu7.jpg │ ├── ___frame___by_joez19.jpg │ ├── _berlin__m_ggelsee_by_aufgetaucht.jpg │ ├── _by_hirozzzz.jpg │ ├── _by_kikepop (1).jpg │ └── _by_paul_johnstone.jpg ├── tags.html └── 游戏.png /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_WITHOUT: production 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | node_modules -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | header-img: "img/fantasy.jpg" 4 | description: "在遙遠的地方 一切虔誠終必相遇" 5 | permalink: 404.html 6 | --- 7 | 8 | 16 | 17 | 23 | 24 |
25 | ---x-----mm-- 26 | /^( )^\ 27 | \,(..),/ Oops... 28 | V~~V 29 | 一定是发生了什么可怕的事情.... 30 |31 | 32 | -------------------------------------------------------------------------------- /About.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: "About" 4 | description: "嘿,你总算找到我啦" 5 | header-img: "img/plane.jpg" 6 | --- 7 | 8 |
to respect formatting
14 | }
15 |
16 |
17 | /*
18 | * GitHub style for Pygments syntax highlighter, for use with Jekyll
19 | * Courtesy of GitHub.com
20 | */
21 |
22 | .highlight pre, pre, .highlight .hll { background-color: #f8f8f8; border: 1px solid #ccc; padding: 6px 10px; border-radius: 3px; }
23 | .highlight .c { color: #999988; font-style: italic; }
24 | .highlight .err { color: #a61717; background-color: #e3d2d2; }
25 | .highlight .k { font-weight: bold; }
26 | .highlight .o { font-weight: bold; }
27 | .highlight .cm { color: #999988; font-style: italic; }
28 | .highlight .cp { color: #999999; font-weight: bold; }
29 | .highlight .c1 { color: #999988; font-style: italic; }
30 | .highlight .cs { color: #999999; font-weight: bold; font-style: italic; }
31 | .highlight .gd { color: #000000; background-color: #ffdddd; }
32 | .highlight .gd .x { color: #000000; background-color: #ffaaaa; }
33 | .highlight .ge { font-style: italic; }
34 | .highlight .gr { color: #aa0000; }
35 | .highlight .gh { color: #999999; }
36 | .highlight .gi { color: #000000; background-color: #ddffdd; }
37 | .highlight .gi .x { color: #000000; background-color: #aaffaa; }
38 | .highlight .go { color: #888888; }
39 | .highlight .gp { color: #555555; }
40 | .highlight .gs { font-weight: bold; }
41 | .highlight .gu { color: #800080; font-weight: bold; }
42 | .highlight .gt { color: #aa0000; }
43 | .highlight .kc { font-weight: bold; }
44 | .highlight .kd { font-weight: bold; }
45 | .highlight .kn { font-weight: bold; }
46 | .highlight .kp { font-weight: bold; }
47 | .highlight .kr { font-weight: bold; }
48 | .highlight .kt { color: #445588; font-weight: bold; }
49 | .highlight .m { color: #009999; }
50 | .highlight .s { color: #dd1144; }
51 | .highlight .n { color: #333333; }
52 | .highlight .na { color: teal; }
53 | .highlight .nb { color: #0086b3; }
54 | .highlight .nc { color: #445588; font-weight: bold; }
55 | .highlight .no { color: teal; }
56 | .highlight .ni { color: purple; }
57 | .highlight .ne { color: #990000; font-weight: bold; }
58 | .highlight .nf { color: #990000; font-weight: bold; }
59 | .highlight .nn { color: #555555; }
60 | .highlight .nt { color: navy; }
61 | .highlight .nv { color: teal; }
62 | .highlight .ow { font-weight: bold; }
63 | .highlight .w { color: #bbbbbb; }
64 | .highlight .mf { color: #009999; }
65 | .highlight .mh { color: #009999; }
66 | .highlight .mi { color: #009999; }
67 | .highlight .mo { color: #009999; }
68 | .highlight .sb { color: #dd1144; }
69 | .highlight .sc { color: #dd1144; }
70 | .highlight .sd { color: #dd1144; }
71 | .highlight .s2 { color: #dd1144; }
72 | .highlight .se { color: #dd1144; }
73 | .highlight .sh { color: #dd1144; }
74 | .highlight .si { color: #dd1144; }
75 | .highlight .sx { color: #dd1144; }
76 | .highlight .sr { color: #009926; }
77 | .highlight .s1 { color: #dd1144; }
78 | .highlight .ss { color: #990073; }
79 | .highlight .bp { color: #999999; }
80 | .highlight .vc { color: teal; }
81 | .highlight .vg { color: teal; }
82 | .highlight .vi { color: teal; }
83 | .highlight .il { color: #009999; }
84 | .highlight .gc { color: #999; background-color: #EAF2F5; }
85 |
--------------------------------------------------------------------------------
/feed.xml:
--------------------------------------------------------------------------------
1 | ---
2 | layout: none
3 | ---
4 |
5 |
6 |
7 | {{ site.title }}
8 | {{ site.description }}
9 | {{ site.BASE_PATH }}/
10 |
11 | {% for post in site.posts limit:10 %}
12 | -
13 |
{{ post.title }}
14 | {{ post.content | xml_escape }}
15 | {{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}
16 | {{ site.BASE_PATH }}{{ post.url }}
17 | {{ site.BASE_PATH }}{{ post.url }}
18 |
19 | {% endfor %}
20 |
21 |
22 |
--------------------------------------------------------------------------------
/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/images/gallery-example-1-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/gallery-example-1-thumb.jpg
--------------------------------------------------------------------------------
/images/gallery-example-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/gallery-example-1.jpg
--------------------------------------------------------------------------------
/images/gallery-example-2-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/gallery-example-2-thumb.jpg
--------------------------------------------------------------------------------
/images/gallery-example-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/gallery-example-2.jpg
--------------------------------------------------------------------------------
/images/gallery-example-3-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/gallery-example-3-thumb.jpg
--------------------------------------------------------------------------------
/images/gallery-example-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/gallery-example-3.jpg
--------------------------------------------------------------------------------
/images/gallery-example-4-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/gallery-example-4-thumb.jpg
--------------------------------------------------------------------------------
/images/gallery-example-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/gallery-example-4.jpg
--------------------------------------------------------------------------------
/images/instagram/insta2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/instagram/insta2.jpg
--------------------------------------------------------------------------------
/images/instagram/insta3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/instagram/insta3.jpg
--------------------------------------------------------------------------------
/images/instagram/insta4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/instagram/insta4.jpg
--------------------------------------------------------------------------------
/images/instagram/insta5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/instagram/insta5.jpg
--------------------------------------------------------------------------------
/images/instagram/insta6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/instagram/insta6.jpg
--------------------------------------------------------------------------------
/images/instagram/insta7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/instagram/insta7.jpg
--------------------------------------------------------------------------------
/images/mountain.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/mountain.jpg
--------------------------------------------------------------------------------
/images/net.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/images/net.jpg
--------------------------------------------------------------------------------
/img/Themes/Balzac-for-Jekyll.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Balzac-for-Jekyll.jpg
--------------------------------------------------------------------------------
/img/Themes/BlogThemesX.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/BlogThemesX.jpg
--------------------------------------------------------------------------------
/img/Themes/Business-Casual.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Business-Casual.jpg
--------------------------------------------------------------------------------
/img/Themes/Centrarium.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Centrarium.jpg
--------------------------------------------------------------------------------
/img/Themes/Clean-Blog.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Clean-Blog.jpg
--------------------------------------------------------------------------------
/img/Themes/Clean.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Clean.jpg
--------------------------------------------------------------------------------
/img/Themes/Feeling-Responsive.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Feeling-Responsive.jpg
--------------------------------------------------------------------------------
/img/Themes/Freshman21.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Freshman21.jpg
--------------------------------------------------------------------------------
/img/Themes/Hmfaysal-Omega-Theme.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Hmfaysal-Omega-Theme.jpg
--------------------------------------------------------------------------------
/img/Themes/Kunka.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Kunka.jpg
--------------------------------------------------------------------------------
/img/Themes/Lanyon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Lanyon.jpg
--------------------------------------------------------------------------------
/img/Themes/Minimal-Mistakes.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Minimal-Mistakes.jpg
--------------------------------------------------------------------------------
/img/Themes/Rusty-Shutter.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Rusty-Shutter.jpg
--------------------------------------------------------------------------------
/img/Themes/Scribble.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Scribble.jpg
--------------------------------------------------------------------------------
/img/Themes/Shiori.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Shiori.jpg
--------------------------------------------------------------------------------
/img/Themes/Slim-Pickins-Jekyll-Theme.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Slim-Pickins-Jekyll-Theme.jpg
--------------------------------------------------------------------------------
/img/Themes/So-Simple-Theme.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/So-Simple-Theme.jpg
--------------------------------------------------------------------------------
/img/Themes/Twister-Jekyll-Theme.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Themes/Twister-Jekyll-Theme.jpg
--------------------------------------------------------------------------------
/img/Zero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/Zero.png
--------------------------------------------------------------------------------
/img/alone.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/alone.jpg
--------------------------------------------------------------------------------
/img/autumn.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/autumn.jpg
--------------------------------------------------------------------------------
/img/autumn2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/autumn2.jpg
--------------------------------------------------------------------------------
/img/bay.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/bay.jpg
--------------------------------------------------------------------------------
/img/birds.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/birds.jpg
--------------------------------------------------------------------------------
/img/dolphin.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/dolphin.gif
--------------------------------------------------------------------------------
/img/elephant.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/elephant.jpg
--------------------------------------------------------------------------------
/img/fantasy.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/fantasy.jpg
--------------------------------------------------------------------------------
/img/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/favicon.ico
--------------------------------------------------------------------------------
/img/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/favicon.png
--------------------------------------------------------------------------------
/img/grass.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/grass.jpg
--------------------------------------------------------------------------------
/img/hacker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/hacker.png
--------------------------------------------------------------------------------
/img/plane.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/plane.jpg
--------------------------------------------------------------------------------
/img/plane2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/plane2.jpg
--------------------------------------------------------------------------------
/img/seagulls.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/seagulls.jpg
--------------------------------------------------------------------------------
/img/sky2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/sky2.jpg
--------------------------------------------------------------------------------
/img/tree.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/tree.jpg
--------------------------------------------------------------------------------
/img/umbrella.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/img/umbrella.jpg
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | description: "在遙遠的地方 一切虔誠終必相遇"
4 | ---
5 |
6 | {% for post in paginator.posts %}
7 |
23 |
24 |
25 | {% endfor %}
26 |
27 |
28 | {% if paginator.total_pages > 1 %}
29 |
30 | {% if paginator.previous_page %}
31 | -
32 | ← Newer Posts
33 |
34 | {% endif %}
35 | {% if paginator.next_page %}
36 | -
37 | Older Posts →
38 |
39 | {% endif %}
40 |
41 |
42 |
43 |
53 |
54 |
55 | {% endif %}
56 |
--------------------------------------------------------------------------------
/js/bootstrap.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap v3.3.2 (http://getbootstrap.com)
3 | * Copyright 2011-2015 Twitter, Inc.
4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5 | */
6 | if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.2",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.2",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.2",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&"show"==b&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a(this.options.trigger).filter('[href="#'+b.id+'"], [data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.2",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0,trigger:'[data-toggle="collapse"]'},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":a.extend({},e.data(),{trigger:this});c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.2",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(b){if(/(38|40|27|32)/.test(b.which)&&!/input|textarea/i.test(b.target.tagName)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var e=c(d),g=e.hasClass("open");if(!g&&27!=b.which||g&&27==b.which)return 27==b.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.divider):visible a",i=e.find('[role="menu"]'+h+', [role="listbox"]'+h);if(i.length){var j=i.index(b.target);38==b.which&&j>0&&j--,40==b.which&&j ').prependTo(this.$element).on("click.dismiss.bs.modal",a.proxy(function(a){a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus.call(this.$element[0]):this.hide.call(this))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.options.backdrop&&this.adjustBackdrop(),this.adjustDialog()},c.prototype.adjustBackdrop=function(){this.$backdrop.css("height",0).css("height",this.$element[0].scrollHeight)},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){this.bodyIsOverflowing=document.body.scrollHeight>document.documentElement.clientHeight,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right","")},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||"destroy"!=b)&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=this.options=this.enabled=this.timeout=this.hoverState=this.$element=null,this.init("tooltip",a,b)};c.VERSION="3.3.2",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(this.options.viewport.selector||this.options.viewport);for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c&&c.$tip&&c.$tip.is(":visible")?void(c.hoverState="in"):(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.options.container?a(this.options.container):this.$element.parent(),p=this.getPosition(o);h="bottom"==h&&k.bottom+m>p.bottom?"top":"top"==h&&k.top-mp.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.width&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type)})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||"destroy"!=b)&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.2",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},c.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){var e=a.proxy(this.process,this);this.$body=a("body"),this.$scrollElement=a(a(c).is("body")?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",e),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.2",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b="offset",c=0;a.isWindow(this.$scrollElement[0])||(b="position",c=this.$scrollElement.scrollTop()),this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight();var d=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[b]().top+c,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){d.offsets.push(this[0]),d.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.2",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()
7 | }var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=this.unpin=this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.2",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=a("body").height();"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
--------------------------------------------------------------------------------
/js/clean-blog.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * Clean Blog v1.0.0 (http://startbootstrap.com)
3 | * Copyright 2015 Start Bootstrap
4 | * Licensed under Apache 2.0 (https://github.com/IronSummitMedia/startbootstrap/blob/gh-pages/LICENSE)
5 | */
6 |
7 | $(function(){$("[data-toggle='tooltip']").tooltip()}),$(function(){$("input,textarea").jqBootstrapValidation({preventSubmit:!0,submitError:function(){},submitSuccess:function(a,b){b.preventDefault();var c=$("input#name").val(),d=$("input#email").val(),e=$("input#phone").val(),f=$("textarea#message").val(),g=c;g.indexOf(" ")>=0&&(g=c.split(" ").slice(0,-1).join(" ")),$.ajax({url:"././mail/contact_me.php",type:"POST",data:{name:c,phone:e,email:d,message:f},cache:!1,success:function(){$("#success").html(""),$("#success > .alert-success").html(""),$("#success > .alert-success").append("Your message has been sent. "),$("#success > .alert-success").append(""),$("#contactForm").trigger("reset")},error:function(){$("#success").html(""),$("#success > .alert-danger").html(""),$("#success > .alert-danger").append("Sorry "+g+", it seems that my mail server is not responding. Please try again later!"),$("#success > .alert-danger").append(""),$("#contactForm").trigger("reset")}})},filter:function(){return $(this).is(":visible")}}),$('a[data-toggle="tab"]').click(function(a){a.preventDefault(),$(this).tab("show")})}),$("#name").focus(function(){$("#success").html("")}),function(a){function b(a){return new RegExp("^"+a+"$")}function c(a,b){for(var c=Array.prototype.slice.call(arguments).splice(2),d=a.split("."),e=d.pop(),f=0;f '),e.find(".controls").append(h),d.push(h[0])),c.options.sniffHtml){var k="";if(void 0!==b.attr("pattern")&&(k="Not in the expected format",b.data("validationPatternMessage")&&(k=b.data("validationPatternMessage")),b.data("validationPatternMessage",k),b.data("validationPatternRegex",b.attr("pattern"))),void 0!==b.attr("max")||void 0!==b.attr("aria-valuemax")){var l=b.attr(void 0!==b.attr("max")?"max":"aria-valuemax");k="Too high: Maximum of '"+l+"'",b.data("validationMaxMessage")&&(k=b.data("validationMaxMessage")),b.data("validationMaxMessage",k),b.data("validationMaxMax",l)}if(void 0!==b.attr("min")||void 0!==b.attr("aria-valuemin")){var m=b.attr(void 0!==b.attr("min")?"min":"aria-valuemin");k="Too low: Minimum of '"+m+"'",b.data("validationMinMessage")&&(k=b.data("validationMinMessage")),b.data("validationMinMessage",k),b.data("validationMinMin",m)}void 0!==b.attr("maxlength")&&(k="Too long: Maximum of '"+b.attr("maxlength")+"' characters",b.data("validationMaxlengthMessage")&&(k=b.data("validationMaxlengthMessage")),b.data("validationMaxlengthMessage",k),b.data("validationMaxlengthMaxlength",b.attr("maxlength"))),void 0!==b.attr("minlength")&&(k="Too short: Minimum of '"+b.attr("minlength")+"' characters",b.data("validationMinlengthMessage")&&(k=b.data("validationMinlengthMessage")),b.data("validationMinlengthMessage",k),b.data("validationMinlengthMinlength",b.attr("minlength"))),(void 0!==b.attr("required")||void 0!==b.attr("aria-required"))&&(k=c.builtInValidators.required.message,b.data("validationRequiredMessage")&&(k=b.data("validationRequiredMessage")),b.data("validationRequiredMessage",k)),void 0!==b.attr("type")&&"number"===b.attr("type").toLowerCase()&&(k=c.builtInValidators.number.message,b.data("validationNumberMessage")&&(k=b.data("validationNumberMessage")),b.data("validationNumberMessage",k)),void 0!==b.attr("type")&&"email"===b.attr("type").toLowerCase()&&(k="Not a valid email address",b.data("validationValidemailMessage")?k=b.data("validationValidemailMessage"):b.data("validationEmailMessage")&&(k=b.data("validationEmailMessage")),b.data("validationValidemailMessage",k)),void 0!==b.attr("minchecked")&&(k="Not enough options checked; Minimum of '"+b.attr("minchecked")+"' required",b.data("validationMincheckedMessage")&&(k=b.data("validationMincheckedMessage")),b.data("validationMincheckedMessage",k),b.data("validationMincheckedMinchecked",b.attr("minchecked"))),void 0!==b.attr("maxchecked")&&(k="Too many options checked; Maximum of '"+b.attr("maxchecked")+"' required",b.data("validationMaxcheckedMessage")&&(k=b.data("validationMaxcheckedMessage")),b.data("validationMaxcheckedMessage",k),b.data("validationMaxcheckedMaxchecked",b.attr("maxchecked")))}void 0!==b.data("validation")&&(j=b.data("validation").split(",")),a.each(b.data(),function(a){var b=a.replace(/([A-Z])/g,",$1").split(",");"validation"===b[0]&&b[1]&&j.push(b[1])});var n=j,o=[];do a.each(j,function(a,b){j[a]=f(b)}),j=a.unique(j),o=[],a.each(n,function(d,e){if(void 0!==b.data("validation"+e+"Shortcut"))a.each(b.data("validation"+e+"Shortcut").split(","),function(a,b){o.push(b)});else if(c.builtInValidators[e.toLowerCase()]){var g=c.builtInValidators[e.toLowerCase()];"shortcut"===g.type.toLowerCase()&&a.each(g.shortcut.split(","),function(a,b){b=f(b),o.push(b),j.push(b)})}}),n=o;while(n.length>0);var p={};a.each(j,function(d,e){var g=b.data("validation"+e+"Message"),h=void 0!==g,i=!1;if(g=g?g:"'"+e+"' validation failed ",a.each(c.validatorTypes,function(c,d){void 0===p[c]&&(p[c]=[]),i||void 0===b.data("validation"+e+f(d.name))||(p[c].push(a.extend(!0,{name:f(d.name),message:g},d.init(b,e))),i=!0)}),!i&&c.builtInValidators[e.toLowerCase()]){var j=a.extend(!0,{},c.builtInValidators[e.toLowerCase()]);h&&(j.message=g);var k=j.type.toLowerCase();"shortcut"===k?i=!0:a.each(c.validatorTypes,function(c,d){void 0===p[c]&&(p[c]=[]),i||k!==c.toLowerCase()||(b.data("validation"+e+f(d.name),j[d.name.toLowerCase()]),p[k].push(a.extend(j,d.init(b,e))),i=!0)})}i||a.error("Cannot find validation info for '"+e+"'")}),h.data("original-contents",h.data("original-contents")?h.data("original-contents"):h.html()),h.data("original-role",h.data("original-role")?h.data("original-role"):h.attr("role")),e.data("original-classes",e.data("original-clases")?e.data("original-classes"):e.attr("class")),b.data("original-aria-invalid",b.data("original-aria-invalid")?b.data("original-aria-invalid"):b.attr("aria-invalid")),b.bind("validation.validation",function(d,e){var f=g(b),h=[];return a.each(p,function(d,g){(f||f.length||e&&e.includeEmpty||c.validatorTypes[d].blockSubmit&&e&&e.submitting)&&a.each(g,function(a,e){c.validatorTypes[d].validate(b,f,e)&&h.push(e.message)})}),h}),b.bind("getValidators.validation",function(){return p}),b.bind("submit.validation",function(){return b.triggerHandler("change.validation",{submitting:!0})}),b.bind(["keyup","focus","blur","click","keydown","keypress","change"].join(".validation ")+".validation",function(d,f){var j=g(b),k=[];e.find("input,textarea,select").each(function(c,d){var e=k.length;if(a.each(a(d).triggerHandler("validation.validation",f),function(a,b){k.push(b)}),k.length>e)a(d).attr("aria-invalid","true");else{var g=b.data("original-aria-invalid");a(d).attr("aria-invalid",void 0!==g?g:!1)}}),i.find("input,select,textarea").not(b).not('[name="'+b.attr("name")+'"]').trigger("validationLostFocus.validation"),k=a.unique(k.sort()),k.length?(e.removeClass("success error").addClass("warning"),h.html(c.options.semanticallyStrict&&1===k.length?k[0]+(c.options.prependExistingHelpBlock?h.data("original-contents"):""):'- '+k.join("
- ")+"
"+(c.options.prependExistingHelpBlock?h.data("original-contents"):""))):(e.removeClass("warning error success"),j.length>0&&e.addClass("success"),h.html(h.data("original-contents"))),"blur"===d.type&&e.removeClass("success")}),b.bind("validationLostFocus.validation",function(){e.removeClass("success")})})},destroy:function(){return this.each(function(){var b=a(this),c=b.parents(".form-group").first(),e=c.find(".help-block").first();b.unbind(".validation"),e.html(e.data("original-contents")),c.attr("class",c.data("original-classes")),b.attr("aria-invalid",b.data("original-aria-invalid")),e.attr("role",b.data("original-role")),d.indexOf(e[0])>-1&&e.remove()})},collectErrors:function(){var b={};return this.each(function(c,d){var e=a(d),f=e.attr("name"),g=e.triggerHandler("validation.validation",{includeEmpty:!0});b[f]=a.extend(!0,g,b[f])}),a.each(b,function(a,c){0===c.length&&delete b[a]}),b},hasErrors:function(){var b=[];return this.each(function(c,d){b=b.concat(a(d).triggerHandler("getValidators.validation")?a(d).triggerHandler("validation.validation",{submitting:!0}):[])}),b.length>0},override:function(b){e=a.extend(!0,e,b)}},validatorTypes:{callback:{name:"callback",init:function(a,b){return{validatorName:b,callback:a.data("validation"+b+"Callback"),lastValue:a.val(),lastValid:!0,lastFinished:!0}},validate:function(a,b,d){if(d.lastValue===b&&d.lastFinished)return!d.lastValid;if(d.lastFinished===!0){d.lastValue=b,d.lastValid=!0,d.lastFinished=!1;var e=d,f=a;c(d.callback,window,a,b,function(a){e.lastValue===a.value&&(e.lastValid=a.valid,a.message&&(e.message=a.message),e.lastFinished=!0,f.data("validation"+e.validatorName+"Message",e.message),setTimeout(function(){f.trigger("change.validation")},1))})}return!1}},ajax:{name:"ajax",init:function(a,b){return{validatorName:b,url:a.data("validation"+b+"Ajax"),lastValue:a.val(),lastValid:!0,lastFinished:!0}},validate:function(b,c,d){return""+d.lastValue==""+c&&d.lastFinished===!0?d.lastValid===!1:(d.lastFinished===!0&&(d.lastValue=c,d.lastValid=!0,d.lastFinished=!1,a.ajax({url:d.url,data:"value="+c+"&field="+b.attr("name"),dataType:"json",success:function(a){""+d.lastValue==""+a.value&&(d.lastValid=!!a.valid,a.message&&(d.message=a.message),d.lastFinished=!0,b.data("validation"+d.validatorName+"Message",d.message),setTimeout(function(){b.trigger("change.validation")},1))},failure:function(){d.lastValid=!0,d.message="ajax call failed",d.lastFinished=!0,b.data("validation"+d.validatorName+"Message",d.message),setTimeout(function(){b.trigger("change.validation")},1)}})),!1)}},regex:{name:"regex",init:function(a,c){return{regex:b(a.data("validation"+c+"Regex"))}},validate:function(a,b,c){return!c.regex.test(b)&&!c.negative||c.regex.test(b)&&c.negative}},required:{name:"required",init:function(){return{}},validate:function(a,b,c){return!(0!==b.length||c.negative)||!!(b.length>0&&c.negative)},blockSubmit:!0},match:{name:"match",init:function(a,b){var c=a.parents("form").first().find('[name="'+a.data("validation"+b+"Match")+'"]').first();return c.bind("validation.validation",function(){a.trigger("change.validation",{submitting:!0})}),{element:c}},validate:function(a,b,c){return b!==c.element.val()&&!c.negative||b===c.element.val()&&c.negative},blockSubmit:!0},max:{name:"max",init:function(a,b){return{max:a.data("validation"+b+"Max")}},validate:function(a,b,c){return parseFloat(b,10)>parseFloat(c.max,10)&&!c.negative||parseFloat(b,10)<=parseFloat(c.max,10)&&c.negative}},min:{name:"min",init:function(a,b){return{min:a.data("validation"+b+"Min")}},validate:function(a,b,c){return parseFloat(b)=parseFloat(c.min)&&c.negative}},maxlength:{name:"maxlength",init:function(a,b){return{maxlength:a.data("validation"+b+"Maxlength")}},validate:function(a,b,c){return b.length>c.maxlength&&!c.negative||b.length<=c.maxlength&&c.negative}},minlength:{name:"minlength",init:function(a,b){return{minlength:a.data("validation"+b+"Minlength")}},validate:function(a,b,c){return b.length=c.minlength&&c.negative}},maxchecked:{name:"maxchecked",init:function(a,b){var c=a.parents("form").first().find('[name="'+a.attr("name")+'"]');return c.bind("click.validation",function(){a.trigger("change.validation",{includeEmpty:!0})}),{maxchecked:a.data("validation"+b+"Maxchecked"),elements:c}},validate:function(a,b,c){return c.elements.filter(":checked").length>c.maxchecked&&!c.negative||c.elements.filter(":checked").length<=c.maxchecked&&c.negative},blockSubmit:!0},minchecked:{name:"minchecked",init:function(a,b){var c=a.parents("form").first().find('[name="'+a.attr("name")+'"]');return c.bind("click.validation",function(){a.trigger("change.validation",{includeEmpty:!0})}),{minchecked:a.data("validation"+b+"Minchecked"),elements:c}},validate:function(a,b,c){return c.elements.filter(":checked").length=c.minchecked&&c.negative},blockSubmit:!0}},builtInValidators:{email:{name:"Email",type:"shortcut",shortcut:"validemail"},validemail:{name:"Validemail",type:"regex",regex:"[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}",message:"Not a valid email address"},passwordagain:{name:"Passwordagain",type:"match",match:"password",message:"Does not match the given password"},positive:{name:"Positive",type:"shortcut",shortcut:"number,positivenumber"},negative:{name:"Negative",type:"shortcut",shortcut:"number,negativenumber"},number:{name:"Number",type:"regex",regex:"([+-]?\\d+(\\.\\d*)?([eE][+-]?[0-9]+)?)?",message:"Must be a number"},integer:{name:"Integer",type:"regex",regex:"[+-]?\\d+",message:"No decimal places allowed"},positivenumber:{name:"Positivenumber",type:"min",min:0,message:"Must be a positive number"},negativenumber:{name:"Negativenumber",type:"max",max:0,message:"Must be a negative number"},required:{name:"Required",type:"required",message:"This is required"},checkone:{name:"Checkone",type:"minchecked",minchecked:1,message:"Check at least one option"}}},f=function(a){return a.toLowerCase().replace(/(^|\s)([a-z])/g,function(a,b,c){return b+c.toUpperCase()})},g=function(b){var c=b.val(),d=b.attr("type");return"checkbox"===d&&(c=b.is(":checked")?c:""),"radio"===d&&(c=a('input[name="'+b.attr("name")+'"]:checked').length>0?c:""),c};a.fn.jqBootstrapValidation=function(b){return e.methods[b]?e.methods[b].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof b&&b?(a.error("Method "+b+" does not exist on jQuery.jqBootstrapValidation"),null):e.methods.init.apply(this,arguments)},a.jqBootstrapValidation=function(){a(":input").not("[type=image],[type=submit]").jqBootstrapValidation.apply(this,arguments)}}(jQuery),$(function(){$("body").on("input propertychange",".floating-label-form-group",function(a){$(this).toggleClass("floating-label-form-group-with-value",!!$(a.target).val())}).on("focus",".floating-label-form-group",function(){$(this).addClass("floating-label-form-group-with-focus")}).on("blur",".floating-label-form-group",function(){$(this).removeClass("floating-label-form-group-with-focus")})}),jQuery(document).ready(function(a){var b=1170;if(a(window).width()>b){var c=a(".navbar-custom").height();a(window).on("scroll",{previousTop:0},function(){var b=a(window).scrollTop();b0&&a(".navbar-custom").hasClass("is-fixed")?a(".navbar-custom").addClass("is-visible"):a(".navbar-custom").removeClass("is-visible is-fixed"):(a(".navbar-custom").removeClass("is-visible"),b>c&&!a(".navbar-custom").hasClass("is-fixed")&&a(".navbar-custom").addClass("is-fixed")),this.previousTop=b})}});$(function(){$("img").addClass("img-responsive")});$(document).ready(function(){$("table").wrap("");$("table").addClass("table table-hover")});$(document).ready(function(){$('iframe[src*="youtube.com"]').wrap('');$('iframe[src*="youtube.com"]').addClass("embed-responsive-item");$('iframe[src*="vimeo.com"]').wrap('');$('iframe[src*="vimeo.com"]').addClass("embed-responsive-item")});
8 |
--------------------------------------------------------------------------------
/less/clean-blog.less:
--------------------------------------------------------------------------------
1 | @import "variables.less";
2 | @import "mixins.less";
3 |
4 | // Global Components
5 |
6 | body {
7 | .serif;
8 | font-size: 20px;
9 | color: @gray-dark;
10 | }
11 |
12 | // -- Typography
13 |
14 | p {
15 | line-height: 1.5;
16 | margin: 30px 0;
17 | a {
18 | text-decoration: underline;
19 | }
20 | }
21 |
22 | h1,
23 | h2,
24 | h3,
25 | h4,
26 | h5,
27 | h6 {
28 | .sans-serif;
29 | font-weight: 800;
30 | }
31 |
32 | a {
33 | color: @gray-dark;
34 | &:hover,
35 | &:focus {
36 | color: @brand-primary;
37 | }
38 | }
39 |
40 | a img {
41 | &:hover,
42 | &:focus {
43 | cursor: zoom-in;
44 | }
45 | }
46 |
47 | blockquote {
48 | color: @gray;
49 | font-style: italic;
50 | }
51 |
52 | hr.small {
53 | max-width: 100px;
54 | margin: 15px auto;
55 | border-width: 4px;
56 | border-color: white;
57 | }
58 |
59 | // Navigation
60 |
61 | .navbar-custom {
62 | background: white;
63 | position: absolute;
64 | top: 0;
65 | left: 0;
66 | width: 100%;
67 | z-index: 3;
68 | .sans-serif;
69 | .navbar-brand {
70 | font-weight: 800;
71 | }
72 | .nav {
73 | li {
74 | a {
75 | text-transform: uppercase;
76 | font-size: 12px;
77 | font-weight: 800;
78 | letter-spacing: 1px;
79 | }
80 | }
81 | }
82 | @media only screen and (min-width: 768px) {
83 | background: transparent;
84 | border-bottom: 1px solid transparent;
85 | .navbar-brand {
86 | color: white;
87 | padding: 20px;
88 | &:hover,
89 | &:focus {
90 | color: @white-faded;
91 | }
92 | }
93 | .nav {
94 | li {
95 | a {
96 | color: white;
97 | padding: 20px;
98 | &:hover,
99 | &:focus {
100 | color: @white-faded;
101 | }
102 | }
103 | }
104 | }
105 | }
106 | @media only screen and (min-width: 1170px) {
107 | -webkit-transition: background-color 0.3s;
108 | -moz-transition: background-color 0.3s;
109 | transition: background-color 0.3s;
110 | /* Force Hardware Acceleration in WebKit */
111 | -webkit-transform: translate3d(0, 0, 0);
112 | -moz-transform: translate3d(0, 0, 0);
113 | -ms-transform: translate3d(0, 0, 0);
114 | -o-transform: translate3d(0, 0, 0);
115 | transform: translate3d(0, 0, 0);
116 | -webkit-backface-visibility: hidden;
117 | backface-visibility: hidden;
118 | &.is-fixed {
119 | /* when the user scrolls down, we hide the header right above the viewport */
120 | position: fixed;
121 | top: -61px;
122 | background-color: fade(white, 90%);
123 | border-bottom: 1px solid darken(white, 5%);
124 | -webkit-transition: -webkit-transform 0.3s;
125 | -moz-transition: -moz-transform 0.3s;
126 | transition: transform 0.3s;
127 | .navbar-brand {
128 | color: @gray-dark;
129 | &:hover,
130 | &:focus {
131 | color: @brand-primary;
132 | }
133 | }
134 | .nav {
135 | li {
136 | a {
137 | color: @gray-dark;
138 | &:hover,
139 | &:focus {
140 | color: @brand-primary;
141 | }
142 | }
143 | }
144 | }
145 | }
146 | &.is-visible {
147 | /* if the user changes the scrolling direction, we show the header */
148 | -webkit-transform: translate3d(0, 100%, 0);
149 | -moz-transform: translate3d(0, 100%, 0);
150 | -ms-transform: translate3d(0, 100%, 0);
151 | -o-transform: translate3d(0, 100%, 0);
152 | transform: translate3d(0, 100%, 0);
153 | }
154 | }
155 | }
156 |
157 | // Header
158 |
159 | .intro-header {
160 | background: no-repeat center center;
161 | background-color: @gray;
162 | background-attachment: scroll;
163 | .background-cover;
164 | // NOTE: Background images are set within the HTML using inline CSS!
165 | margin-bottom: 50px;
166 | .site-heading,
167 | .post-heading,
168 | .page-heading {
169 | padding: 100px 0 50px;
170 | color: white;
171 | @media only screen and (min-width: 768px) {
172 | padding: 150px 0;
173 | }
174 | }
175 | .site-heading,
176 | .page-heading {
177 | text-align: center;
178 | h1 {
179 | margin-top: 0;
180 | font-size: 50px;
181 | }
182 | .subheading {
183 | font-size: 24px;
184 | line-height: 1.1,
185 | display: block;
186 | .sans-serif;
187 | font-weight: 300;
188 | margin: 10px 0 0;
189 | }
190 | @media only screen and (min-width: 768px) {
191 | h1 {
192 | font-size: 80px;
193 | }
194 | }
195 | }
196 | .post-heading {
197 | h1 {
198 | font-size: 35px;
199 | }
200 | .subheading,
201 | .meta {
202 | line-height: 1.1;
203 | display: block;
204 | }
205 | .subheading {
206 | .sans-serif;
207 | font-size: 24px;
208 | margin: 10px 0 30px;
209 | font-weight: 600;
210 | }
211 | .meta {
212 | .serif;
213 | font-style: italic;
214 | font-weight: 300;
215 | font-size: 20px;
216 | a {
217 | color: white;
218 | }
219 | }
220 | @media only screen and (min-width: 768px) {
221 | h1 {
222 | font-size: 55px;
223 | }
224 | .subheading {
225 | font-size: 30px;
226 | }
227 | }
228 | }
229 | }
230 |
231 | // Post Preview Pages
232 |
233 | .post-preview {
234 | > a {
235 | color: @gray-dark;
236 | &:hover,
237 | &:focus {
238 | text-decoration: none;
239 | color: @brand-primary;
240 | }
241 | > .post-title {
242 | font-size: 30px;
243 | margin-top: 30px;
244 | margin-bottom: 10px;
245 | }
246 | > .post-subtitle {
247 | margin: 0;
248 | font-weight: 300;
249 | margin-bottom: 10px;
250 | }
251 | }
252 | > .post-meta {
253 | color: @gray;
254 | font-size: 18px;
255 | font-style: italic;
256 | margin-top: 0;
257 | > a {
258 | text-decoration: none;
259 | color: @gray-dark;
260 | &:hover,
261 | &:focus {
262 | color: @brand-primary;
263 | text-decoration: underline;
264 | }
265 | }
266 | }
267 | @media only screen and (min-width: 768px) {
268 | > a {
269 | > .post-title {
270 | font-size: 36px;
271 | }
272 | }
273 | }
274 | }
275 |
276 | // Sections
277 |
278 | .section-heading {
279 | font-size: 36px;
280 | margin-top: 60px;
281 | font-weight: 700;
282 | }
283 |
284 | .caption {
285 | text-align: center;
286 | font-size: 14px;
287 | padding: 10px;
288 | font-style: italic;
289 | margin: 0;
290 | display: block;
291 | border-bottom-right-radius: 5px;
292 | border-bottom-left-radius: 5px;
293 | }
294 |
295 | footer {
296 | padding: 50px 0 65px;
297 | .list-inline {
298 | margin: 0;
299 | padding: 0;
300 | }
301 | .copyright {
302 | font-size: 14px;
303 | text-align: center;
304 | margin-bottom: 0;
305 | }
306 | }
307 |
308 | // Contact Form Styles
309 |
310 | .floating-label-form-group {
311 | font-size: 14px;
312 | position: relative;
313 | margin-bottom: 0;
314 | padding-bottom: 0.5em;
315 | border-bottom: 1px solid @gray-light;
316 | input,
317 | textarea {
318 | z-index: 1;
319 | position: relative;
320 | padding-right: 0;
321 | padding-left: 0;
322 | border: none;
323 | border-radius: 0;
324 | font-size: 1.5em;
325 | background: none;
326 | box-shadow: none !important;
327 | resize: none;
328 | }
329 | label {
330 | display: block;
331 | z-index: 0;
332 | position: relative;
333 | top: 2em;
334 | margin: 0;
335 | font-size: 0.85em;
336 | line-height: 1.764705882em;
337 | vertical-align: middle;
338 | vertical-align: baseline;
339 | opacity: 0;
340 | -webkit-transition: top 0.3s ease,opacity 0.3s ease;
341 | -moz-transition: top 0.3s ease,opacity 0.3s ease;
342 | -ms-transition: top 0.3s ease,opacity 0.3s ease;
343 | transition: top 0.3s ease,opacity 0.3s ease;
344 | }
345 | &::not(:first-child) {
346 | padding-left: 14px;
347 | border-left: 1px solid @gray-light;
348 | }
349 | }
350 |
351 | .floating-label-form-group-with-value {
352 | label {
353 | top: 0;
354 | opacity: 1;
355 | }
356 | }
357 |
358 | .floating-label-form-group-with-focus {
359 | label {
360 | color: @brand-primary;
361 | }
362 | }
363 |
364 | form .row:first-child .floating-label-form-group {
365 | border-top: 1px solid @gray-light;
366 | }
367 |
368 | // Button Styles
369 |
370 | .btn {
371 | .sans-serif;
372 | text-transform: uppercase;
373 | font-size: 14px;
374 | font-weight: 800;
375 | letter-spacing: 1px;
376 | border-radius: 0;
377 | padding: 15px 25px;
378 | }
379 |
380 | .btn-lg {
381 | font-size: 16px;
382 | padding: 25px 35px;
383 | }
384 |
385 | .btn-default {
386 | &:hover,
387 | &:focus {
388 | background-color: @brand-primary;
389 | border: 1px solid @brand-primary;
390 | color: white;
391 | }
392 | }
393 |
394 | // Pager Styling
395 |
396 | .pager {
397 |
398 | margin: 20px 0 0;
399 |
400 | li {
401 | > a,
402 | > span {
403 | .sans-serif;
404 | text-transform: uppercase;
405 | font-size: 14px;
406 | font-weight: 800;
407 | letter-spacing: 1px;
408 | padding: 10px 5px;
409 | background-color: white;
410 | border-radius: 0;
411 | @media only screen and (min-width: 768px) {
412 | font-size: 14px;
413 | padding: 15px 25px;
414 | }
415 | }
416 |
417 | > a:hover,
418 | > a:focus {
419 | color: white;
420 | background-color: @brand-primary;
421 | border: 1px solid @brand-primary;
422 | }
423 | }
424 |
425 | .disabled {
426 | > a,
427 | > a:hover,
428 | > a:focus,
429 | > span {
430 | color: @gray;
431 | background-color: @gray-dark;
432 | cursor: not-allowed;
433 | }
434 | }
435 | }
436 |
437 | // -- Highlight Color Customization
438 |
439 | ::-moz-selection {
440 | color: white;
441 | text-shadow: none;
442 | background: @brand-primary;
443 | }
444 |
445 | ::selection {
446 | color: white;
447 | text-shadow: none;
448 | background: @brand-primary;
449 | }
450 |
451 | img::selection {
452 | color: white;
453 | background: transparent;
454 | }
455 |
456 | img::-moz-selection {
457 | color: white;
458 | background: transparent;
459 | }
460 |
461 | body {
462 | webkit-tap-highlight-color: @brand-primary;
463 | }
464 |
--------------------------------------------------------------------------------
/less/mixins.less:
--------------------------------------------------------------------------------
1 | // Mixins
2 |
3 | .transition-all() {
4 | -webkit-transition: all 0.5s;
5 | -moz-transition: all 0.5s;
6 | transition: all 0.5s;
7 | }
8 |
9 | .background-cover() {
10 | -webkit-background-size: cover;
11 | -moz-background-size: cover;
12 | background-size: cover;
13 | -o-background-size: cover;
14 | }
15 |
16 | .serif() {
17 | font-family: 'Lora', 'Times New Roman', serif;
18 | }
19 |
20 | .sans-serif () {
21 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
22 | }
--------------------------------------------------------------------------------
/less/variables.less:
--------------------------------------------------------------------------------
1 | // Variables
2 |
3 | @brand-primary: #0085A1;
4 | @gray-dark: lighten(black, 25%);
5 | @gray: lighten(black, 50%);
6 | @white-faded: fade(white, 80%);
7 | @gray-light: #eee;
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "clean-blog",
3 | "title": "Clean Blog",
4 | "version": "1.0.0",
5 | "homepage": "http://startbootstrap.com",
6 | "author": "Start Bootstrap",
7 | "license": {
8 | "type": "Apache 2.0",
9 | "url": "https://github.com/IronSummitMedia/startbootstrap/blob/gh-pages/LICENSE"
10 | },
11 | "devDependencies": {
12 | "grunt": "~0.4.5",
13 | "grunt-contrib-less": "~0.11.4",
14 | "grunt-contrib-watch": "~0.6.1",
15 | "grunt-banner": "~0.2.3",
16 | "grunt-contrib-uglify": "~0.5.1"
17 | },
18 | "repository": {
19 | "type": "git",
20 | "url": "https://github.com/IronSummitMedia/startbootstrap-clean-blog-jekyll.git"
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/photos/Instagram/_I_think_there_is_a_deep_well_of_emotion_in_us_that_gets_tapped_when_we_are_confronted_with_the_beauty_of_nature___says_Bridget_Beth_Collins___flora.forager_._The_Seattle-based_botanical_artist_reconstructs_the_blooms_of_nature_into_designs__creature.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/photos/Instagram/_I_think_there_is_a_deep_well_of_emotion_in_us_that_gets_tapped_when_we_are_confronted_with_the_beauty_of_nature___says_Bridget_Beth_Collins___flora.forager_._The_Seattle-based_botanical_artist_reconstructs_the_blooms_of_nature_into_designs__creature.jpg
--------------------------------------------------------------------------------
/photos/Instagram/__Photo_by__my_cat_pippin________________________Want_to_be_featured_next___Upload_your_photos_on_my_social_network__soon_to_be_an_app__www.fuzmo.com________________________Check_out_my_other_accounts__insta_dog__puppytagss__animal_view____by_insta_a.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/photos/Instagram/__Photo_by__my_cat_pippin________________________Want_to_be_featured_next___Upload_your_photos_on_my_social_network__soon_to_be_an_app__www.fuzmo.com________________________Check_out_my_other_accounts__insta_dog__puppytagss__animal_view____by_insta_a.jpg
--------------------------------------------------------------------------------
/photos/Instagram/__Summer......_by_thegoodly.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/photos/Instagram/__Summer......_by_thegoodly.jpg
--------------------------------------------------------------------------------
/photos/Instagram/_______________________Photo_credit__aperkylife________________________Want_to_be_featured_next___Upload_your_photos_on_my_new_social_network_www.fuzmo.com________________________Check_out_my_other_accounts__insta_dog__puppytagss__animal_view________.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/photos/Instagram/_______________________Photo_credit__aperkylife________________________Want_to_be_featured_next___Upload_your_photos_on_my_new_social_network_www.fuzmo.com________________________Check_out_my_other_accounts__insta_dog__puppytagss__animal_view________.jpg
--------------------------------------------------------------------------------
/photos/Instagram/_______________________Photo_credit__kingcavclove________________________Want_to_be_featured_next___Upload_your_photos_on_my_new_social_network_www.fuzmo.com__link_is_in_my_bio_________________________Check_out_my_other_accounts__insta_dog__puppytags.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/photos/Instagram/_______________________Photo_credit__kingcavclove________________________Want_to_be_featured_next___Upload_your_photos_on_my_new_social_network_www.fuzmo.com__link_is_in_my_bio_________________________Check_out_my_other_accounts__insta_dog__puppytags.jpg
--------------------------------------------------------------------------------
/photos/Instagram/_______by_halno.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/photos/Instagram/_______by_halno.jpg
--------------------------------------------------------------------------------
/photos/Instagram/_____by_seipuorg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/photos/Instagram/_____by_seipuorg.jpg
--------------------------------------------------------------------------------
/photos/Instagram/____by_joez19.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/photos/Instagram/____by_joez19.jpg
--------------------------------------------------------------------------------
/photos/Instagram/___by_gemyu7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/photos/Instagram/___by_gemyu7.jpg
--------------------------------------------------------------------------------
/photos/Instagram/___frame___by_joez19.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/photos/Instagram/___frame___by_joez19.jpg
--------------------------------------------------------------------------------
/photos/Instagram/_berlin__m_ggelsee_by_aufgetaucht.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/photos/Instagram/_berlin__m_ggelsee_by_aufgetaucht.jpg
--------------------------------------------------------------------------------
/photos/Instagram/_by_hirozzzz.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/photos/Instagram/_by_hirozzzz.jpg
--------------------------------------------------------------------------------
/photos/Instagram/_by_kikepop (1).jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/photos/Instagram/_by_kikepop (1).jpg
--------------------------------------------------------------------------------
/photos/Instagram/_by_paul_johnstone.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/photos/Instagram/_by_paul_johnstone.jpg
--------------------------------------------------------------------------------
/tags.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: Tags
4 | description: "我的航海志"
5 | header-img: "img/bay.jpg"
6 | ---
7 |
8 |
9 |
10 | {% for tag in site.tags %}
11 | {{ tag[0] | capitalize }}
12 |
13 | {% assign pages_list = tag[1] %}
14 | {% for post in pages_list %}
15 | {% if post.title != null %}
16 | {% if group == null or group == post.group %}
17 | - {{ post.title }} ~
18 | {% endif %}
19 | {% endif %}
20 | {% endfor %}
21 | {% assign pages_list = nil %}
22 | {% assign group = nil %}
23 |
24 | {% endfor %}
25 |
26 |
--------------------------------------------------------------------------------
/游戏.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azeril/Microdust/139b5e573a81c52a38a330436d1eb4a5ea43bc81/游戏.png
--------------------------------------------------------------------------------