├── LICENSE ├── README-EN ├── README.md ├── assets ├── css │ ├── atom-one-light.css │ ├── backzoom.css │ ├── font-awesome.min.css │ ├── layout.css │ ├── waves.min.css │ └── zoom.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── images │ ├── default.cur │ └── pointer.cur └── js │ ├── highlight.pack.js │ ├── jquery-2.2.4.min.js │ ├── jquery.pjax.js │ ├── main.js │ ├── transition.js │ ├── waves.min.js │ └── zoom.js ├── author.hbs ├── default.hbs ├── index.hbs ├── package.json ├── page-links.hbs ├── page-tags.hbs ├── page.hbs ├── partials ├── comments.hbs ├── footer.hbs ├── loop.hbs ├── navigation.hbs └── pagination.hbs ├── post.hbs └── tag.hbs /LICENSE: -------------------------------------------------------------------------------- 1 | GNU LESSER GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | 9 | This version of the GNU Lesser General Public License incorporates 10 | the terms and conditions of version 3 of the GNU General Public 11 | License, supplemented by the additional permissions listed below. 12 | 13 | 0. Additional Definitions. 14 | 15 | As used herein, "this License" refers to version 3 of the GNU Lesser 16 | General Public License, and the "GNU GPL" refers to version 3 of the GNU 17 | General Public License. 18 | 19 | "The Library" refers to a covered work governed by this License, 20 | other than an Application or a Combined Work as defined below. 21 | 22 | An "Application" is any work that makes use of an interface provided 23 | by the Library, but which is not otherwise based on the Library. 24 | Defining a subclass of a class defined by the Library is deemed a mode 25 | of using an interface provided by the Library. 26 | 27 | A "Combined Work" is a work produced by combining or linking an 28 | Application with the Library. The particular version of the Library 29 | with which the Combined Work was made is also called the "Linked 30 | Version". 31 | 32 | The "Minimal Corresponding Source" for a Combined Work means the 33 | Corresponding Source for the Combined Work, excluding any source code 34 | for portions of the Combined Work that, considered in isolation, are 35 | based on the Application, and not on the Linked Version. 36 | 37 | The "Corresponding Application Code" for a Combined Work means the 38 | object code and/or source code for the Application, including any data 39 | and utility programs needed for reproducing the Combined Work from the 40 | Application, but excluding the System Libraries of the Combined Work. 41 | 42 | 1. Exception to Section 3 of the GNU GPL. 43 | 44 | You may convey a covered work under sections 3 and 4 of this License 45 | without being bound by section 3 of the GNU GPL. 46 | 47 | 2. Conveying Modified Versions. 48 | 49 | If you modify a copy of the Library, and, in your modifications, a 50 | facility refers to a function or data to be supplied by an Application 51 | that uses the facility (other than as an argument passed when the 52 | facility is invoked), then you may convey a copy of the modified 53 | version: 54 | 55 | a) under this License, provided that you make a good faith effort to 56 | ensure that, in the event an Application does not supply the 57 | function or data, the facility still operates, and performs 58 | whatever part of its purpose remains meaningful, or 59 | 60 | b) under the GNU GPL, with none of the additional permissions of 61 | this License applicable to that copy. 62 | 63 | 3. Object Code Incorporating Material from Library Header Files. 64 | 65 | The object code form of an Application may incorporate material from 66 | a header file that is part of the Library. You may convey such object 67 | code under terms of your choice, provided that, if the incorporated 68 | material is not limited to numerical parameters, data structure 69 | layouts and accessors, or small macros, inline functions and templates 70 | (ten or fewer lines in length), you do both of the following: 71 | 72 | a) Give prominent notice with each copy of the object code that the 73 | Library is used in it and that the Library and its use are 74 | covered by this License. 75 | 76 | b) Accompany the object code with a copy of the GNU GPL and this license 77 | document. 78 | 79 | 4. Combined Works. 80 | 81 | You may convey a Combined Work under terms of your choice that, 82 | taken together, effectively do not restrict modification of the 83 | portions of the Library contained in the Combined Work and reverse 84 | engineering for debugging such modifications, if you also do each of 85 | the following: 86 | 87 | a) Give prominent notice with each copy of the Combined Work that 88 | the Library is used in it and that the Library and its use are 89 | covered by this License. 90 | 91 | b) Accompany the Combined Work with a copy of the GNU GPL and this license 92 | document. 93 | 94 | c) For a Combined Work that displays copyright notices during 95 | execution, include the copyright notice for the Library among 96 | these notices, as well as a reference directing the user to the 97 | copies of the GNU GPL and this license document. 98 | 99 | d) Do one of the following: 100 | 101 | 0) Convey the Minimal Corresponding Source under the terms of this 102 | License, and the Corresponding Application Code in a form 103 | suitable for, and under terms that permit, the user to 104 | recombine or relink the Application with a modified version of 105 | the Linked Version to produce a modified Combined Work, in the 106 | manner specified by section 6 of the GNU GPL for conveying 107 | Corresponding Source. 108 | 109 | 1) Use a suitable shared library mechanism for linking with the 110 | Library. A suitable mechanism is one that (a) uses at run time 111 | a copy of the Library already present on the user's computer 112 | system, and (b) will operate properly with a modified version 113 | of the Library that is interface-compatible with the Linked 114 | Version. 115 | 116 | e) Provide Installation Information, but only if you would otherwise 117 | be required to provide such information under section 6 of the 118 | GNU GPL, and only to the extent that such information is 119 | necessary to install and execute a modified version of the 120 | Combined Work produced by recombining or relinking the 121 | Application with a modified version of the Linked Version. (If 122 | you use option 4d0, the Installation Information must accompany 123 | the Minimal Corresponding Source and Corresponding Application 124 | Code. If you use option 4d1, you must provide the Installation 125 | Information in the manner specified by section 6 of the GNU GPL 126 | for conveying Corresponding Source.) 127 | 128 | 5. Combined Libraries. 129 | 130 | You may place library facilities that are a work based on the 131 | Library side by side in a single library together with other library 132 | facilities that are not Applications and are not covered by this 133 | License, and convey such a combined library under terms of your 134 | choice, if you do both of the following: 135 | 136 | a) Accompany the combined library with a copy of the same work based 137 | on the Library, uncombined with any other library facilities, 138 | conveyed under the terms of this License. 139 | 140 | b) Give prominent notice with the combined library that part of it 141 | is a work based on the Library, and explaining where to find the 142 | accompanying uncombined form of the same work. 143 | 144 | 6. Revised Versions of the GNU Lesser General Public License. 145 | 146 | The Free Software Foundation may publish revised and/or new versions 147 | of the GNU Lesser General Public License from time to time. Such new 148 | versions will be similar in spirit to the present version, but may 149 | differ in detail to address new problems or concerns. 150 | 151 | Each version is given a distinguishing version number. If the 152 | Library as you received it specifies that a certain numbered version 153 | of the GNU Lesser General Public License "or any later version" 154 | applies to it, you have the option of following the terms and 155 | conditions either of that published version or of any later version 156 | published by the Free Software Foundation. If the Library as you 157 | received it does not specify a version number of the GNU Lesser 158 | General Public License, you may choose any version of the GNU Lesser 159 | General Public License ever published by the Free Software Foundation. 160 | 161 | If the Library as you received it specifies that a proxy can decide 162 | whether future versions of the GNU Lesser General Public License shall 163 | apply, that proxy's public statement of acceptance of any version is 164 | permanent authorization for you to choose that version for the 165 | Library. 166 | -------------------------------------------------------------------------------- /README-EN: -------------------------------------------------------------------------------- 1 | Jian - Follow the black and white tune, simple wind, high performance, YISHION writing and the birth of a Ghost theme; 2 | 3 | ### Be careful 4 | 5 | Free to use, but can not change and modify the bottom of the copyright information, please indicate the project home page, please be sure to comply with, this is the minimum respect for the author; 6 | 7 | This theme also provides a charge version, in fact,fee version can be modified and remove the magic of the bottom of the page information and timely updates to receive e-mail notification; 8 | 9 | Charges only $8, please contact me if you want to buy, I will stay your site on this page; 10 | E-mail : i@weic96.cn 11 | 12 | ### MORE INFO 13 | https://weic96.cn/themes-jian/ 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [English](https://github.com/Weic96/Jian/blob/master/README-EN) 2 | 3 | Jian,遵循黑白调、简洁风、高性能、以纯写作为主而诞生的一款Ghost主题; 4 | 5 | #### 使用注意 6 | 7 | 本主题提供免费使用,但是不能魔改和修改底部版权信息,转载请注明项目主页;请务必遵守,这是对作者最起码的尊重; 8 | 9 | 本主题同时也提供收费版,其实就是卖个不让免费版干的事(收费版可以魔改和去除页面底部的版权信息以及更新后能及时收到邮件通知);详情见下面的作者博客; 10 | 11 | 12 | #### 预览图 13 | 14 | **首页** 15 | 16 | ![](https://cdn.weic96.cn/website/6/c3/b73240cd69a0f9e7622c0abfd3659.png) 17 | **菜单栏展开后的首页** 18 | 19 | ![](https://cdn.weic96.cn/website/b/98/6c5db99ee05929be92a106f54e503.png) 20 | **文章页** 21 | 22 | ![](http://dl.weic96.cn/website/5/a1/aa76bd55ea1b96a9deee519a7f874.png) 23 | 24 | 其他详细说明请前往作者博客的主题专页查阅 https://weic96.cn/themes-jian/ 25 | -------------------------------------------------------------------------------- /assets/css/atom-one-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Atom One Light by Daniel Gamage 4 | Original One Light Syntax theme from https://github.com/atom/one-light-syntax 5 | 6 | base: #fafafa 7 | mono-1: #383a42 8 | mono-2: #686b77 9 | mono-3: #a0a1a7 10 | hue-1: #0184bb 11 | hue-2: #4078f2 12 | hue-3: #a626a4 13 | hue-4: #50a14f 14 | hue-5: #e45649 15 | hue-5-2: #c91243 16 | hue-6: #986801 17 | hue-6-2: #c18401 18 | 19 | */ 20 | 21 | .hljs { 22 | display: block; 23 | overflow-x: auto; 24 | padding: 0.5em; 25 | color: #255; 26 | background: #fafafa; 27 | /*background: rgb(59, 45, 45);*/ 28 | font-size: 14px; 29 | } 30 | 31 | .hljs-comment, 32 | .hljs-quote { 33 | color: #a0a1a7; 34 | font-style: italic; 35 | } 36 | 37 | .hljs-doctag, 38 | .hljs-keyword, 39 | .hljs-formula { 40 | color: #a626a4; 41 | } 42 | 43 | .hljs-section, 44 | .hljs-name, 45 | .hljs-selector-tag, 46 | .hljs-deletion, 47 | .hljs-subst { 48 | color: #e45649; 49 | } 50 | 51 | .hljs-literal { 52 | color: #0184bb; 53 | } 54 | 55 | .hljs-string, 56 | .hljs-regexp, 57 | .hljs-addition, 58 | .hljs-attribute, 59 | .hljs-meta-string { 60 | color: #50a14f; 61 | } 62 | 63 | .hljs-built_in, 64 | .hljs-class .hljs-title { 65 | color: #c18401; 66 | } 67 | 68 | .hljs-attr, 69 | .hljs-variable, 70 | .hljs-template-variable, 71 | .hljs-type, 72 | .hljs-selector-class, 73 | .hljs-selector-attr, 74 | .hljs-selector-pseudo, 75 | .hljs-number { 76 | color: #986801; 77 | } 78 | 79 | .hljs-symbol, 80 | .hljs-bullet, 81 | .hljs-link, 82 | .hljs-meta, 83 | .hljs-selector-id, 84 | .hljs-title { 85 | color: #4078f2; 86 | } 87 | 88 | .hljs-emphasis { 89 | font-style: italic; 90 | } 91 | 92 | .hljs-strong { 93 | font-weight: bold; 94 | } 95 | 96 | .hljs-link { 97 | text-decoration: underline; 98 | } 99 | -------------------------------------------------------------------------------- /assets/css/backzoom.css: -------------------------------------------------------------------------------- 1 | img[data-action="zoom"] { 2 | cursor: url(../images/pointer.cur),pointer; 3 | /*cursor: -webkit-zoom-in; 4 | cursor: -moz-zoom-in;*/ 5 | } 6 | .zoom-img, 7 | .zoom-img-wrap { 8 | position: relative; 9 | z-index: 666; 10 | -webkit-transition: all 600ms; 11 | -o-transition: all 600ms; 12 | transition: all 600ms; 13 | } 14 | img.zoom-img { 15 | cursor: url(../images/default.cur),pointer; 16 | /*cursor: -webkit-zoom-out; 17 | cursor: -moz-zoom-out;*/ 18 | } 19 | .zoom-overlay { 20 | z-index: 420; 21 | /*background: #fff;*/ 22 | position: fixed; 23 | top: 0; 24 | left: 0; 25 | right: 0; 26 | bottom: 0; 27 | pointer-events: none; 28 | filter: "alpha(opacity=0)"; 29 | opacity: 0; 30 | -webkit-transition: opacity 600ms; 31 | -o-transition: opacity 600ms; 32 | transition: opacity 600ms; 33 | } 34 | .zoom-overlay-open .zoom-overlay { 35 | filter: "alpha(opacity=100)"; 36 | opacity: 1; 37 | } 38 | /*.zoom-overlay-open, 39 | .zoom-overlay-transitioning { 40 | cursor: default; 41 | }*/ 42 | -------------------------------------------------------------------------------- /assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} 5 | -------------------------------------------------------------------------------- /assets/css/layout.css: -------------------------------------------------------------------------------- 1 | *{padding:0;margin:0}body{margin:0;padding:0;color:#444;overflow-x:hidden;cursor:url(../images/default.cur),default;font-family:'Mirages Custom','Merriweather','Open Sans',"PingFang SC",'Hiragino Sans GB','Microsoft Yahei','WenQuanYi Micro Hei','Segoe UI Emoji','Segoe UI Symbol',Helvetica,Arial,sans-serif}tt,code,kbd,samp{font-family:"Hiragino Sans GB","Hiragino Sans GB W3","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif}a{text-decoration:none;cursor:url(../images/pointer.cur),pointer;color:#f55852;-webkit-transition:all .6s;-moz-transition:all .6s;-ms-transition:all .6s;-o-transition:all .6s}a:link{text-decoration:none;color:#f55852}a:visited{color:#f55852}a:hover{text-decoration:none;color:#f73131}h1,h2,h3,h4,h5,h6{padding:0;margin:0}ul,ol{list-style:none;padding:0;margin:0}.down-a{position:relative;color:#f55852}.down-a:before{content:"";position:absolute;left:0;bottom:-2px;height:1px;width:100%;background:#f55852;transform:scale(0);transition:all .4s}.down-a:hover:before{transform:scale(1)}.page-nav{position:fixed;top:0;left:-270px;bottom:0;width:270px;background:#fafafa;z-index:98;-webkit-transition:-webkit-transform .6s ease;transition:transform .6s ease;-webkit-transform:translate3D(0,0,0);-ms-transform:translate3D(0,0,0);transform:translate3D(0,0,0);box-shadow:0 0 5px 0 rgba(0,0,0,0.1)}.page-nav-logo{width:100%;height:auto;padding:30px 0}.page-nav-logo>img{display:block;margin:0 auto;width:100px;height:100px;border:2px solid #ccc;border-radius:180px;overflow:hidden}.page-nav-bar{text-align:center;overflow-x:hidden;overflow-y:auto}.page-nav-bar>ul>li>a{padding:10px 0;display:block;font-size:18px;font-weight:200}.page-nav-bar>ul>li>a:hover{background-color:#eee}.page-nav-icon{position:absolute;bottom:0;left:0;right:0;padding:10px 0;text-align:center;background-color:#fff;border-top:1px solid #eee}.page-nav-icon .fa-weibo,.page-nav-icon .fa-github,.page-nav-icon .fa-envelope,.page-nav-icon .fa-rss{display:inline-block;font-size:18px;color:#999;border-radius:180px}.page-nav-icon-bg{background-color:#eee}.page-nav-icon .fa-weibo{font-size:16px;margin-right:4px;padding:10px 10px 10px 10px}.page-nav-icon .fa-github{font-size:16px;margin-right:8px;padding:10px 11.29px 10px 11px}.page-nav-icon .fa-envelope{font-size:16px;margin-right:4px;padding:10px 10px 10px 10px}.page-nav-icon .fa-rss{font-size:16px;margin-right:4px;padding:10px 11.3px 10px 12.13px}.mask{position:fixed;top:0;left:0;bottom:0;right:0;background:rgba(255,255,255,0.85);display:none;z-index:97}.page-main{transition:transform .6s ease;-webkit-transform:translate3D(0,0,0);-ms-transform:translate3D(0,0,0);transform:translate3D(0,0,0)}.page-header{width:100%;min-height:160px;max-height:40vh;background-color:#f5f8fa;background-repeat:no-repeat;background-size:100%;position:relative;display:table;width:100%;height:100vh;margin-bottom:4rem;text-align:center;overflow:hidden}.page-header-title{display:table-cell;vertical-align:middle}.page-header-title>h1>a{font-size:45px;font-weight:300;color:#255}.page-header-title>p{margin-top:15px;font-size:18px;font-weight:200}.page-main-open{-webkit-transition:-webkit-transform .6s ease;transition:transform .6s ease;-webkit-transform:translate3D(270px,0,0);-ms-transform:translate3D(270px,0,0);transform:translate3D(270px,0,0)}.page-menu-btn-open{-webkit-transition:-webkit-transform .6s ease;transition:transform .6s ease;-webkit-transform:translate3D(230px,0,0);-ms-transform:translate3D(230px,0,0);transform:translate3D(230px,0,0)}.page-main-close{-webkit-transition:-webkit-transform .6s ease;transition:transform .6s ease;-webkit-transform:translate3D(0,0,0);-ms-transform:translate3D(0,0,0);transform:translate3D(0,0,0)}.container-main{width:850px;height:auto;margin:0 auto;margin-bottom:5rem}.post-block{padding:15px 10px;margin-bottom:30px;border-bottom:1px dashed #ccc}.post-block>header{text-align:center;margin-bottom:20px}.post-block>header>h2{font-size:25pt;font-weight:300;margin-bottom:10px}.post-block>header>time{font-size:10pt;color:#9eabb3;font-weight:200}.post-block>section{font-size:11pt;line-height:1.7rem;color:#666}.post-block>section img{display:block;margin:0 auto;max-width:95%;box-shadow:0 0 4px 5px rgba(232,232,232,0.5);margin-bottom:12px}.post-block>section p,li{line-height:30px}.post-block>section p,h1,h2,h3,h4,h5,h6,ul,ol,blockquote,pre,img,hr{margin-bottom:12px}.post-block>section h1,h2,h3,h4,h5,h6{font-weight:500}.post-block>section ul{list-style:inherit;list-style-position:inside}.post-block>section ol{list-style:decimal;list-style-position:inside}.post-block>section ul ul,ol ol{padding-left:20px}.post-block>section h1{font-size:28px}.post-block>section h2{font-size:26px}.post-block>section h3{font-size:24px}.post-block>section h4{font-size:22px} 2 | .post-block>section h5{font-size:20px}.post-block>section h6{font-size:18px}.post-block>section mark{background-color:#fff;color:#0067b1}.post-block>section blockquote{border-left:3px solid #e2e2e2;padding:2px 8px;background-color:#eee}.post-block>section blockquote>p{margin:0;color:#b9a5a5}.post-block>section hr{border:0;border-top:1px solid #ccc}.post-block>footer{margin-bottom:20px}.page-pagination{position:relative;width:100%;margin:0 auto;margin-top:2rem;text-align:center}.page-pagination>a:link{color:#9eabb3}.page-pagination-up{position:absolute;left:0}.page-pagination-number{padding:5px 8px;font-size:8pt;font-weight:200;color:#9eabb3}.page-pagination-down{position:absolute;right:0}.page-pagination-text{border:1px solid #bfc8cd;border-radius:4px;padding:5px 8px;font-size:8pt;font-weight:200;color:#9eabb3}.post-page-main{padding:30px 10px;margin-bottom:50px}.post-page-main>header{margin-bottom:30px;text-align:center}.post-page-main>header>h2{font-size:28pt;font-weight:300;margin-bottom:10px}.post-page-main>header>time{font-size:10pt;font-weight:200;color:#9eabb3}.post-page-main>section{font-size:12pt;font-weight:400;color:#333;border-bottom:1px dashed #eee;margin-bottom:1rem}.post-page-main>section p,li{line-height:30px}.post-page-main>section p,h1,h2,h3,h4,h5,h6,ul,ol,blockquote,pre,img,hr{margin-bottom:20px}.post-page-main>section h1,h2,h3,h4,h5,h6{margin-top:1.2rem}.post-page-main>section h1,h2,h3,h4,h5,h6{font-weight:500}.post-page-main>section img{display:block;margin:0 auto;max-width:100%;box-shadow:0 0 4px 5px rgba(232,232,232,0.5);margin-bottom:18px}.post-page-content ul{list-style:inherit;list-style-position:inside}.post-page-content ol{list-style:decimal;list-style-position:inside}.post-page-main>section ul ul,ol ol{padding-left:20px}.post-page-main>section h1{font-size:26pt;margin-top:35px}.post-page-main>section h2{font-size:24pt;margin-top:35px}.post-page-main>section h3{font-size:22pt;margin-top:35px}.post-page-main>section h4{font-size:20pt;margin-top:22px}.post-page-main>section h5{font-size:18pt;margin-top:20px}.post-page-main>section h6{font-size:16pt}.post-page-main>section mark{background-color:#fff;color:#0067b1}.post-page-main>section blockquote{border-left:3px solid #c7cace;padding:10px;background:#fafafa}.post-page-main>section blockquote>p{margin:0;color:#b9a5a5}.post-page-main>section hr{border:0;border-top:1px solid #ccc}.post-page-tags{padding:10px 0;color:#7a6d6d;font-style:12pt}.post-page-tags>a{color:#9eabb3;padding:2px;font-size:8pt}.post-page-share{margin:0 10px}.post-page-readmore{width:100%;overflow:hidden;margin-bottom:30px}.post-page-readmore span{color:#7a6d6d;font-size:12pt}.post-page-readmore a{font-size:11pt;color:#ce6666}.post-page-readmore .post-page-readmore-prev{border-right:1px dashed #eee}.post-page-readmore .post-page-readmore-prev,.post-page-readmore .post-page-readmore-next{padding:10px 0;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.post-page-comments{width:100%;height:auto;display:none}.post-page-comments-title{display:block;text-align:center;border:1px dashed #eee;padding:5px 0;border-radius:180px;font-size:21pt;font-weight:200;color:#255}.post-page-donate{position:fixed;bottom:-265px;left:0;right:0;height:265px;background:#fff;z-index:996;box-shadow:0 0 5px 0 rgba(0,0,0,0.1);-webkit-transition:all .6s;-moz-transition:all .6s;-ms-transition:all .6s;-o-transition:all .6s}.post-page-donate-open{bottom:0}.post-page-donate-box{position:absolute;top:0;bottom:0;width:850px;z-index:996;background:#fff;padding:30px 0}.post-page-donate-box>p{text-align:center;font-size:18px;font-weight:200;color:#666}.post-page-donate-box-main{width:100%;height:150px;padding-top:15px;text-align:center;font-weight:200;color:#999}.post-page-donate-alipay-box{width:280px;height:100%;float:left}.post-page-donate-alipay{width:150px;height:150px;margin:0 auto;padding-top:5px}.post-page-donate-alipay>img{width:100%;height:100%}.post-page-donate-weixin-box{width:280px;height:100%;float:left}.post-page-donate-weixin{width:150px;height:150px;margin:0 auto;padding-top:5px}.post-page-donate-weixin>img{width:100%;height:100%}.post-page-donate-other-box{width:290px;height:100%;float:left}.post-page-donate-other{width:150px;height:150px;margin:0 auto;padding-top:5px}.post-page-donate-other>img{width:100%;height:100%}.post-page-donate-btn{position:absolute;top:-30px;left:50%;width:80px;height:80px;background-color:#fff;border-radius:180px;box-shadow:0 0 4px 1px rgba(255,0,0,0.1);cursor:url(../images/pointer.cur),pointer;z-index:995;-webkit-transition:all .6s;-moz-transition:all .6s;-ms-transition:all .6s;-o-transition:all .6s}.post-page-donate-btn>i{position:absolute;top:6px;left:35px;font-size:16px}.tags-page-content,.links-page-content{padding:20px 0;width:100%}.tags-page-content a{display:inline-block;padding:8px 12px;font-size:13pt;font-weight:300;color:#666}.links-btn{display:block;width:21.8%;float:left;height:60px;padding:10px 8px;margin:4px;overflow:hidden;white-space:nowrap;border:1px solid #e8e8e8;text-align:center;color:#255;font-size:18px} 3 | .links-btn:link,.links-btn:visited{color:#4299e6}.links-btn:hover{transform:scale(1.1);background-color:#fafafa}.links-btn>span{display:block;color:#d2bcbc;font-size:14px;padding:3px 0;margin-top:6px;overflow:hidden;white-space:nowrap;border-top:1px dashed #e8e8e8}::-webkit-scrollbar{height:10px;width:3px}::-webkit-scrollbar-button{height:0;width:0}::-webkit-scrollbar-button:start:decrement,::-webkit-scrollbar-button:end:increment{display:block}::-webkit-scrollbar-button:vertical:start:increment,::-webkit-scrollbar-button:vertical:end:decrement{display:none}::-webkit-scrollbar-track:vertical,::-webkit-scrollbar-track:horizontal,::-webkit-scrollbar-thumb:vertical,::-webkit-scrollbar-thumb:horizontal,::-webkit-scrollbar-track:vertical,::-webkit-scrollbar-track:horizontal,::-webkit-scrollbar-thumb:vertical,::-webkit-scrollbar-thumb:horizontal{border-style:solid;border-color:transparent}::-webkit-scrollbar-track:vertical::-webkit-scrollbar-track:horizontal{background-clip:padding-box;background-color:#fff}::-webkit-scrollbar-thumb{-webkit-box-shadow:inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);background-clip:padding-box;background-color:rgba(0,0,0,.4);min-height:40px;padding-top:100px;border-radius:180px}::-webkit-scrollbar-thumb:hover{-webkit-box-shadow:inset 1px 1px 1px rgba(0,0,0,.25);background-color:rgba(0,0,0,.4)}::-webkit-scrollbar-thumb:active{-webkit-box-shadow:inset 1px 1px 3px rgba(0,0,0,.35);background-color:rgba(0,0,0,.5)}::-webkit-scrollbar-track:vertical,::-webkit-scrollbar-track:horizontal,::-webkit-scrollbar-thumb:vertical,::-webkit-scrollbar-thumb:horizontal{border-width:0}::-webkit-scrollbar-track:hover{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.1);background-color:rgba(0,0,0,.05)}::-webkit-scrollbar-track:active{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.14),inset -1px -1px 0 rgba(0,0,0,.07);background-color:rgba(0,0,0,.05)}.page-body-color-light,.page-body-color-night{position:fixed;top:20px;right:20px;cursor:url(../images/pointer.cur),pointer}.page-body-color-light>i{font-size:20px;color:#ccc}.page-body-color-night>i{font-size:20px;color:#999}.page-retop-btn{padding:22px 24.89px;background:#fff;position:fixed;bottom:10px;right:10px;border-radius:180px}.page-retop-btn>i{font-size:16px}.page-menu-btn{padding:20px 30px;background:#fff;position:fixed;top:30px;left:30px;border-radius:120px;z-index:98;-webkit-transition:-webkit-transform .6s ease;transition:transform .6s ease;cursor:url(../images/pointer.cur),pointer}.page-menu-btn>i{display:block;width:25px;height:2px;background:#857171;margin-left:-13px;-webkit-transition:-webkit-transform .6s ease;transition:transform .6s ease}.page-menu-btn-one{position:absolute;top:11px;left:50%}.page-menu-btn-two{position:absolute;top:19px;left:50%}.page-menu-btn-three{position:absolute;top:27px;left:50%}.page-menu-btn-rotate-left{position:absolute;top:19.8px;left:50%;transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);-webkit-transition:-webkit-transform .6s ease;transition:transform .6s ease}.page-menu-btn-rotate-right{position:absolute;top:19.8px;left:50%;transform:rotate(-45deg);-ms-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transition:-webkit-transform .6s ease;transition:transform .6s ease}.waves-button,.waves-button:hover,.waves-button:visited,.waves-button-input{background-color:#fff;z-index:98}.page-footer{padding:20px;text-align:center;border-top:1px dashed #eee}.page-footer>p{line-height:22px;font-size:12px;color:#999}.page-footer>a{font-size:12px;color:#999}@media screen and (max-width:960px){.container-main{width:95%;height:auto;margin:0 auto;margin-bottom:5rem}.post-page-donate{display:none}}@media screen and (max-width:880px){.links-btn{width:100%;padding:8px 0;margin:8px 0}}@media screen and (max-width:360px){.container-main{width:95%;height:auto;margin:0 auto;margin-bottom:5rem}.page-header{background-repeat:no-repeat;background-size:100% 100%}.page-menu-btn{top:10px;left:10px}.post-block{padding:15px 10px;margin-bottom:30px;border-bottom:1px dashed #ccc}.post-block>header{text-align:center;margin-bottom:20px}.post-block>header>h2{font-size:24px;font-weight:200;margin-bottom:10px}.post-block>header>time{font-size:10pt;color:#9eabb3;font-weight:200}.post-block>section{font-size:11pt;color:#333}.post-block>footer{margin-bottom:20px}.page-header{margin-bottom:1rem}.page-header-title{display:table-cell;vertical-align:middle}.page-header-title>h1>a{font-size:32px;font-weight:300;color:#255}.page-header-title>p{margin-top:15px;font-size:18px;font-weight:200}.page-main-open{-webkit-transition:-webkit-transform .6s ease;transition:transform .3s ease;-webkit-transform:translate3D(270px,0,0);-ms-transform:translate3D(270px,0,0);transform:translate3D(270px,0,0)}.page-menu-btn-open{-webkit-transition:-webkit-transform .3s ease;transition:transform .3s ease;-webkit-transform:translate3D(230px,0,0);-ms-transform:translate3D(230px,0,0);transform:translate3D(230px,0,0)} 4 | .page-main-close{-webkit-transition:-webkit-transform .3s ease;transition:transform .3s ease;-webkit-transform:translate3D(0,0,0);-ms-transform:translate3D(0,0,0);transform:translate3D(0,0,0)}.post-page-main>header>h2{font-size:24pt;font-weight:300;margin-bottom:10px}}#loader-wrapper{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1000}#loader{display:block;position:relative;left:50%;top:50%;width:150px;height:150px;margin:-75px 0 0 -75px;border-radius:50%;border:3px solid transparent;border-top-color:#3498db;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite;z-index:1001}#loader:before{content:"";position:absolute;top:5px;left:5px;right:5px;bottom:5px;border-radius:50%;border:3px solid transparent;border-top-color:#e74c3c;-webkit-animation:spin 3s linear infinite;animation:spin 3s linear infinite}#loader:after{content:"";position:absolute;top:15px;left:15px;right:15px;bottom:15px;border-radius:50%;border:3px solid transparent;border-top-color:#f9c922;-webkit-animation:spin 1.5s linear infinite;animation:spin 1.5s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg)}}#loader-wrapper .loader-section{position:fixed;top:0;width:51%;height:100%;background:#fff;z-index:1000}#loader-wrapper .loader-section.section-left{left:0}#loader-wrapper .loader-section.section-right{right:0}.loaded #loader-wrapper .loader-section.section-left{-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%);-webkit-transition:all .7s .3s cubic-bezier(0.645,0.045,0.355,1.000);transition:all .7s .3s cubic-bezier(0.645,0.045,0.355,1.000)}.loaded #loader-wrapper .loader-section.section-right{-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%);-webkit-transition:all .7s .3s cubic-bezier(0.645,0.045,0.355,1.000);transition:all .7s .3s cubic-bezier(0.645,0.045,0.355,1.000)}.loaded #loader{opacity:0;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.loaded #loader-wrapper{visibility:hidden;-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%);-webkit-transition:all .3s 1s ease-out;transition:all .3s 1s ease-out}#ds-smilies-tooltip ul.ds-smilies-tabs{display:none}#ds-smilies-tooltip .ds-smilies-container{padding:15px 15px;height:200px;margin-left:0!important}#ds-smilies-tooltip .ds-smilies-container li{width:auto;max-width:100px;height:40px!important;margin:0 7px}img.biaoqing,#ds-thread #ds-reset .ds-comment-body img.biaoqing{display:inline;margin:0;width:auto;max-width:6.25rem}img.newpaopao,#ds-thread #ds-reset .ds-comment-body img.newpaopao{margin-bottom:-0.25rem;min-height:1.875rem;height:1em}img.alu,#ds-thread #ds-reset .ds-comment-body img.alu{margin-bottom:-0.3125rem;min-height:2.0625rem;height:1em}#ds-thread #ds-reset .ds-post-button{font-family:Microsoft JHenghei,Microsoft YaHei,"Helvetica Neue",Helvetica,Arial,sans-serif}#ds-thread #ds-reset .ds-textarea-wrapper textarea,#ds-thread #ds-reset .ds-textarea-wrapper .ds-hidden-text{display:block;font-family:Microsoft JHenghei,Microsoft YaHei,"Helvetica Neue",Helvetica,Arial,sans-serif}#ds-thread #ds-reset .ds-meta{border-bottom-color:#eee}#ds-thread #ds-reset a.ds-like-thread-button{border:0;background:rgba(0,0,0,0);border-radius:2px}#ds-thread #ds-reset a{cursor:url(https://weic96.cn/assets/images/pointer.cur),pointer}#ds-thread #ds-reset button{cursor:url(https://weic96.cn/assets/images/pointer.cur),pointer}#ds-thread #ds-reset li.ds-tab a.ds-current{border:0;background-color:rgba(0,0,0,0);border-radius:2px}#ds-thread #ds-reset #ds-hot-posts{border-color:#eee;border-width:0 0 1px;margin:10px 0;padding-bottom:15px;border-radius:0}#ds-reset .ds-avatar img{width:48px;height:48px;border-radius:50%;padding:1px;background-color:#fff}#ds-reset .ds-avatar{box-shadow:0 0 0 0 rgba(0,0,0,0)}#ds-thread #ds-reset .ds-comments{border-top:1px solid #eee;border-bottom:1px solid #eee;padding:10px 0 20px;margin-bottom:5px}#ds-thread #ds-reset li.ds-post{border-top:0}#ds-thread #ds-reset .ds-post-self{padding:10px 2px}#ds-thread #ds-reset .ds-comment-body{position:relative;margin-left:62px;border:1px solid #eee;padding:0 10px 10px!important;border-radius:2px}#ds-thread #ds-reset .ds-comment-body:before,#ds-thread #ds-reset .ds-comment-body:after{position:absolute;top:8px;left:-8px;right:100%;width:0;height:0;display:block;content:" ";border-color:transparent;border-style:solid solid dotted;border-width:8px 8px 8px 0;pointer-events:none}#ds-thread #ds-reset .ds-comment-body:before{border-right-color:#eee;z-index:1} 5 | #ds-thread #ds-reset .ds-comment-body:after{border-right-color:none;margin-left:1px;z-index:2}#ds-thread #ds-reset .ds-comment-header{background-color:none;padding:10px;margin-left:-10px;margin-right:-10px;border-bottom:1px solid #eee;font-weight:500;margin-bottom:10px;font-size:14px}#ds-thread #ds-reset .ds-comment-body p{font-size:14px}#ds-thread #ds-reset .ds-comment-footer{margin-top:15px;font-size:13px}#ds-thread #ds-reset #ds-ctx{font-size:13px;margin-bottom:15px}#ds-reset #ds-ctx .ds-ctx-entry .ds-avatar{border-radius:50%}#ds-thread #ds-reset .ds-textarea-wrapper{background-image:none;border-top-right-radius:2px;border-top-left-radius:2px;border-color:#eee}#ds-reset .ds-gradient-bg{background:0}#ds-thread #ds-reset .ds-post-options{border-bottom-left-radius:2px;border-color:#eee;height:36px}#ds-thread #ds-reset .ds-sync{line-height:34px}#ds-thread #ds-reset .ds-toolbar-buttons{top:8px;left:10px}#ds-thread #ds-reset .ds-textarea-wrapper textarea{font-size:14px}#ds-thread #ds-reset .ds-post-button{border-bottom-right-radius:2px;background:0;color:#8d8585;text-shadow:none;box-shadow:none;border:1px solid #eee;height:38px}#ds-thread #ds-reset .ds-post-button:hover{background:0;color:#fff;text-shadow:none}#ds-thread #ds-reset .ds-post-button:focus,#ds-thread #ds-reset .ds-post-button:active{outline:0}#ds-thread #ds-reset .ds-paginator{margin-bottom:20px}#ds-thread #ds-reset .ds-paginator a:hover,#ds-thread #ds-reset .ds-paginator a.ds-current{border-radius:2px;border-color:#eee}.ds-icon:before,.ds-add-emote:before,.ds-toolbar-button:before{display:inline-block;font-family:"FontAwesome";font-weight:normal;font-style:normal;vertical-align:baseline;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ds-icon-heart,.ds-icon-reply,.ds-icon-like,.ds-icon-share,.ds-icon-report,.ds-icon-delete,.ds-icon-settings{line-height:13px!important;background-image:none!important}.ds-icon-heart:before{content:"\f004";color:#dd514c}.ds-icon-reply:before{content:"\f112"}.ds-icon-like:before{content:"\f08a"}.ds-icon-share:before{content:"\f064"}.ds-icon-report:before{content:"\f06a"}.ds-icon-delete:before{content:"\f00d"}.ds-icon-settings{font-size:12px!important}.ds-icon-settings:before{content:"\f013"}.ds-add-emote,.ds-toolbar-button{line-height:19px!important;background:none!important;font-size:18px!important}.ds-add-emote:before{content:"\f118"}.ds-add-image:before{content:"\f03e"}#ds-thread.ds-narrow #ds-reset .ds-comment-body{margin-left:45px}#ds-thread #ds-reset .ds-post-toolbar{box-shadow:none}.animated{-webkit-animation-duration:1.2s;animation-duration:1.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn} -------------------------------------------------------------------------------- /assets/css/waves.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Waves v0.7.5 3 | * http://fian.my.id/Waves 4 | * 5 | * Copyright 2014-2016 Alfiana E. Sibuea and other contributors 6 | * Released under the MIT license 7 | * https://github.com/fians/Waves/blob/master/LICENSE 8 | */.waves-effect{position:relative;cursor: url(../images/pointer.cur),pointer;display:inline-block;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.waves-effect .waves-ripple{position:absolute;border-radius:50%;width:100px;height:100px;margin-top:-50px;margin-left:-50px;opacity:0;background:rgba(0,0,0,.2);background:-webkit-radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);background:-o-radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);background:-moz-radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);background:radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);-webkit-transition:all .5s ease-out;-moz-transition:all .5s ease-out;-o-transition:all .5s ease-out;transition:all .5s ease-out;-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;-o-transition-property:-o-transform,opacity;transition-property:transform,opacity;-webkit-transform:scale(0) translate(0,0);-moz-transform:scale(0) translate(0,0);-ms-transform:scale(0) translate(0,0);-o-transform:scale(0) translate(0,0);transform:scale(0) translate(0,0);pointer-events:none}.waves-effect.waves-light .waves-ripple{background:rgba(255,255,255,.4);background:-webkit-radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%);background:-o-radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%);background:-moz-radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%);background:radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%)}.waves-effect.waves-classic .waves-ripple{background:rgba(0,0,0,.2)}.waves-effect.waves-classic.waves-light .waves-ripple{background:rgba(255,255,255,.4)}.waves-notransition{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;transition:none!important}.waves-button,.waves-circle{-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0);-webkit-mask-image:-webkit-radial-gradient(circle,#fff 100%,#000 100%)}.waves-button,.waves-button:hover,.waves-button:visited,.waves-button-input{white-space:nowrap;vertical-align:middle;cursor: url(../images/pointer.cur),pointer;border:none;outline:0;color:inherit;background-color:transparent;font-size:1em;line-height:1em;text-align:center;text-decoration:none;z-index:1}.waves-button{padding:.85em 1.1em;border-radius:.2em}.waves-button-input{margin:0;padding:.85em 1.1em}.waves-input-wrapper{border-radius:.2em;vertical-align:bottom}.waves-input-wrapper.waves-button{padding:0}.waves-input-wrapper .waves-button-input{position:relative;top:0;left:0;z-index:1}.waves-circle{text-align:center;width:2.5em;height:2.5em;line-height:2.5em;border-radius:50%}.waves-float{-webkit-mask-image:none;-webkit-box-shadow:0 1px 1.5px 1px rgba(0,0,0,.12);box-shadow:0 1px 1.5px 1px rgba(0,0,0,.12);-webkit-transition:all 300ms;-moz-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms}.waves-float:active{-webkit-box-shadow:0 8px 20px 1px rgba(0,0,0,.3);box-shadow:0 8px 20px 1px rgba(0,0,0,.3)}.waves-block{display:block} 9 | -------------------------------------------------------------------------------- /assets/css/zoom.css: -------------------------------------------------------------------------------- 1 | img[data-action="zoom"] { 2 | cursor: pointer; 3 | cursor: -webkit-zoom-in; 4 | cursor: -moz-zoom-in; 5 | } 6 | .zoom-img, 7 | .zoom-img-wrap { 8 | position: relative; 9 | z-index: 666; 10 | -webkit-transition: all 300ms; 11 | -o-transition: all 300ms; 12 | transition: all 300ms; 13 | } 14 | img.zoom-img { 15 | cursor: pointer; 16 | cursor: -webkit-zoom-out; 17 | cursor: -moz-zoom-out; 18 | } 19 | .zoom-overlay { 20 | display: none; 21 | z-index: 420; 22 | background: #fff; 23 | position: fixed; 24 | top: 0; 25 | left: 0; 26 | right: 0; 27 | bottom: 0; 28 | pointer-events: none; 29 | filter: "alpha(opacity=0)"; 30 | opacity: 0; 31 | -webkit-transition: opacity 300ms; 32 | -o-transition: opacity 300ms; 33 | transition: opacity 300ms; 34 | } 35 | .zoom-overlay-open .zoom-overlay { 36 | filter: "alpha(opacity=100)"; 37 | opacity: 1; 38 | } 39 | .zoom-overlay-open, 40 | .zoom-overlay-transitioning { 41 | cursor: default; 42 | } 43 | -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machengwei1024/Jian-Ghost/838a6cfd008404df29a4a497819a1e20a2021fee/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machengwei1024/Jian-Ghost/838a6cfd008404df29a4a497819a1e20a2021fee/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machengwei1024/Jian-Ghost/838a6cfd008404df29a4a497819a1e20a2021fee/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machengwei1024/Jian-Ghost/838a6cfd008404df29a4a497819a1e20a2021fee/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machengwei1024/Jian-Ghost/838a6cfd008404df29a4a497819a1e20a2021fee/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/images/default.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machengwei1024/Jian-Ghost/838a6cfd008404df29a4a497819a1e20a2021fee/assets/images/default.cur -------------------------------------------------------------------------------- /assets/images/pointer.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machengwei1024/Jian-Ghost/838a6cfd008404df29a4a497819a1e20a2021fee/assets/images/pointer.cur -------------------------------------------------------------------------------- /assets/js/highlight.pack.js: -------------------------------------------------------------------------------- 1 | /*! highlight.js v9.8.0 | BSD3 License | git.io/hljslicense */ 2 | !function(e){var n="object"==typeof window&&window||"object"==typeof self&&self;"undefined"!=typeof exports?e(exports):n&&(n.hljs=e({}),"function"==typeof define&&define.amd&&define([],function(){return n.hljs}))}(function(e){function n(e){return e.replace(/[&<>]/gm,function(e){return I[e]})}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0===t.index}function a(e){return k.test(e)}function i(e){var n,t,r,i,o=e.className+" ";if(o+=e.parentNode?e.parentNode.className:"",t=B.exec(o))return R(t[1])?t[1]:"no-highlight";for(o=o.split(/\s+/),n=0,r=o.length;r>n;n++)if(i=o[n],a(i)||R(i))return i}function o(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3===i.nodeType?a+=i.nodeValue.length:1===i.nodeType&&(n.push({event:"start",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:"stop",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!==r[0].offset?e[0].offset"}function u(e){l+=""}function c(e){("start"===e.event?o:u)(e.node)}for(var s=0,l="",f=[];e.length||r.length;){var g=i();if(l+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g===e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g===e&&g.length&&g[0].offset===s);f.reverse().forEach(o)}else"start"===g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return l+n(a.substr(s))}function s(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),"m"+(e.cI?"i":"")+(r?"g":""))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(" ").forEach(function(e){var t=e.split("|");u[t[0]]=[n,t[1]?Number(t[1]):1]})};"string"==typeof a.k?c("keyword",a.k):E(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\w+/,!0),i&&(a.bK&&(a.b="\\b("+a.bK.split(" ").join("|")+")\\b"),a.b||(a.b=/\B|\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\B|\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||"",a.eW&&i.tE&&(a.tE+=(a.e?"|":"")+i.tE)),a.i&&(a.iR=t(a.i)),null==a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(o(e,n))}):s.push("self"===e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var l=a.c.map(function(e){return e.bK?"\\.?("+e.b+")\\.?":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=l.length?t(l.join("|"),!0):{exec:function(){return null}}}}r(e)}function l(e,t,a,i){function o(e,n){var t,a;for(t=0,a=n.c.length;a>t;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function c(e,n){return!a&&r(n.iR,e)}function g(e,n){var t=N.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function h(e,n,t,r){var a=r?"":y.classPrefix,i='',i+n+o}function p(){var e,t,r,a;if(!E.k)return n(B);for(a="",t=0,E.lR.lastIndex=0,r=E.lR.exec(B);r;)a+=n(B.substr(t,r.index-t)),e=g(E,r),e?(M+=e[1],a+=h(e[0],n(r[0]))):a+=n(r[0]),t=E.lR.lastIndex,r=E.lR.exec(B);return a+n(B.substr(t))}function d(){var e="string"==typeof E.sL;if(e&&!x[E.sL])return n(B);var t=e?l(E.sL,B,!0,L[E.sL]):f(B,E.sL.length?E.sL:void 0);return E.r>0&&(M+=t.r),e&&(L[E.sL]=t.top),h(t.language,t.value,!1,!0)}function b(){k+=null!=E.sL?d():p(),B=""}function v(e){k+=e.cN?h(e.cN,"",!0):"",E=Object.create(e,{parent:{value:E}})}function m(e,n){if(B+=e,null==n)return b(),0;var t=o(n,E);if(t)return t.skip?B+=n:(t.eB&&(B+=n),b(),t.rB||t.eB||(B=n)),v(t,n),t.rB?0:n.length;var r=u(E,n);if(r){var a=E;a.skip?B+=n:(a.rE||a.eE||(B+=n),b(),a.eE&&(B=n));do E.cN&&(k+=C),E.skip||(M+=E.r),E=E.parent;while(E!==r.parent);return r.starts&&v(r.starts,""),a.rE?0:n.length}if(c(n,E))throw new Error('Illegal lexeme "'+n+'" for mode "'+(E.cN||"")+'"');return B+=n,n.length||1}var N=R(e);if(!N)throw new Error('Unknown language: "'+e+'"');s(N);var w,E=i||N,L={},k="";for(w=E;w!==N;w=w.parent)w.cN&&(k=h(w.cN,"",!0)+k);var B="",M=0;try{for(var I,j,O=0;;){if(E.t.lastIndex=O,I=E.t.exec(t),!I)break;j=m(t.substr(O,I.index-O),I[0]),O=I.index+j}for(m(t.substr(O)),w=E;w.parent;w=w.parent)w.cN&&(k+=C);return{r:M,value:k,language:e,top:E}}catch(T){if(T.message&&-1!==T.message.indexOf("Illegal"))return{r:0,value:n(t)};throw T}}function f(e,t){t=t||y.languages||E(x);var r={r:0,value:n(e)},a=r;return t.filter(R).forEach(function(n){var t=l(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}),a.language&&(r.second_best=a),r}function g(e){return y.tabReplace||y.useBR?e.replace(M,function(e,n){return y.useBR&&"\n"===e?"
":y.tabReplace?n.replace(/\t/g,y.tabReplace):void 0}):e}function h(e,n,t){var r=n?L[n]:t,a=[e.trim()];return e.match(/\bhljs\b/)||a.push("hljs"),-1===e.indexOf(r)&&a.push(r),a.join(" ").trim()}function p(e){var n,t,r,o,s,p=i(e);a(p)||(y.useBR?(n=document.createElementNS("http://www.w3.org/1999/xhtml","div"),n.innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n")):n=e,s=n.textContent,r=p?l(p,s,!0):f(s),t=u(n),t.length&&(o=document.createElementNS("http://www.w3.org/1999/xhtml","div"),o.innerHTML=r.value,r.value=c(t,u(o),s)),r.value=g(r.value),e.innerHTML=r.value,e.className=h(e.className,p,r.language),e.result={language:r.language,re:r.r},r.second_best&&(e.second_best={language:r.second_best.language,re:r.second_best.r}))}function d(e){y=o(y,e)}function b(){if(!b.called){b.called=!0;var e=document.querySelectorAll("pre code");w.forEach.call(e,p)}}function v(){addEventListener("DOMContentLoaded",b,!1),addEventListener("load",b,!1)}function m(n,t){var r=x[n]=t(e);r.aliases&&r.aliases.forEach(function(e){L[e]=n})}function N(){return E(x)}function R(e){return e=(e||"").toLowerCase(),x[e]||x[L[e]]}var w=[],E=Object.keys,x={},L={},k=/^(no-?highlight|plain|text)$/i,B=/\blang(?:uage)?-([\w-]+)\b/i,M=/((^(<[^>]+>|\t|)+|(?:\n)))/gm,C="
",y={classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:void 0},I={"&":"&","<":"<",">":">"};return e.highlight=l,e.highlightAuto=f,e.fixMarkup=g,e.highlightBlock=p,e.configure=d,e.initHighlighting=b,e.initHighlightingOnLoad=v,e.registerLanguage=m,e.listLanguages=N,e.getLanguage=R,e.inherit=o,e.IR="[a-zA-Z]\\w*",e.UIR="[a-zA-Z_]\\w*",e.NR="\\b\\d+(\\.\\d+)?",e.CNR="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",e.BNR="\\b(0b[01]+)",e.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",e.BE={b:"\\\\[\\s\\S]",r:0},e.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[e.BE]},e.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[e.BE]},e.PWM={b:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|like)\b/},e.C=function(n,t,r){var a=e.inherit({cN:"comment",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:"doctag",b:"(?:TODO|FIXME|NOTE|BUG|XXX):",r:0}),a},e.CLCM=e.C("//","$"),e.CBCM=e.C("/\\*","\\*/"),e.HCM=e.C("#","$"),e.NM={cN:"number",b:e.NR,r:0},e.CNM={cN:"number",b:e.CNR,r:0},e.BNM={cN:"number",b:e.BNR,r:0},e.CSSNM={cN:"number",b:e.NR+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",r:0},e.RM={cN:"regexp",b:/\//,e:/\/[gimuy]*/,i:/\n/,c:[e.BE,{b:/\[/,e:/\]/,r:0,c:[e.BE]}]},e.TM={cN:"title",b:e.IR,r:0},e.UTM={cN:"title",b:e.UIR,r:0},e.METHOD_GUARD={b:"\\.\\s*"+e.UIR,r:0},e});hljs.registerLanguage("sql",function(e){var t=e.C("--","$");return{cI:!0,i:/[<>{}*#]/,c:[{bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment",e:/;/,eW:!0,l:/[\w\.]+/,k:{keyword:"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null",built_in:"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage("coffeescript",function(e){var c={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not",literal:"true false null undefined yes no on off",built_in:"npm require console print module global window document"},n="[A-Za-z$_][0-9A-Za-z$_]*",r={cN:"subst",b:/#\{/,e:/}/,k:c},s=[e.BNM,e.inherit(e.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,r]},{b:/"/,e:/"/,c:[e.BE,r]}]},{cN:"regexp",v:[{b:"///",e:"///",c:[r,e.HCM]},{b:"//[gim]*",r:0},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{b:"@"+n},{b:"`",e:"`",eB:!0,eE:!0,sL:"javascript"}];r.c=s;var i=e.inherit(e.TM,{b:n}),t="(\\(.*\\))?\\s*\\B[-=]>",o={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:c,c:["self"].concat(s)}]};return{aliases:["coffee","cson","iced"],k:c,i:/\/\*/,c:s.concat([e.C("###","###"),e.HCM,{cN:"function",b:"^\\s*"+n+"\\s*=\\s*"+t,e:"[-=]>",rB:!0,c:[i,o]},{b:/[:\(,=]\s*/,r:0,c:[{cN:"function",b:t,e:"[-=]>",rB:!0,c:[o]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[i]},i]},{b:n+":",e:":",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage("python",function(e){var r={cN:"meta",b:/^(>>>|\.\.\.) /},b={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},e.ASM,e.QSM]},a={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},l={cN:"params",b:/\(/,e:/\)/,c:["self",r,a,b]};return{aliases:["py","gyp"],k:{keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},i:/(<\/|->|\?)|=>/,c:[r,a,b,e.HCM,{v:[{cN:"function",bK:"def"},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,l,{b:/->/,eW:!0,k:"None"}]},{cN:"meta",b:/^[\t ]*@/,e:/$/},{b:/\b(print|exec)\(/}]}});hljs.registerLanguage("scss",function(e){var t="[a-zA-Z-][a-zA-Z0-9_-]*",i={cN:"variable",b:"(\\$"+t+")\\b"},r={cN:"number",b:"#[0-9A-Fa-f]+"};({cN:"attribute",b:"[A-Z\\_\\.\\-]+",e:":",eE:!0,i:"[^\\s]",starts:{eW:!0,eE:!0,c:[r,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"meta",b:"!important"}]}});return{cI:!0,i:"[=/|']",c:[e.CLCM,e.CBCM,{cN:"selector-id",b:"\\#[A-Za-z0-9_-]+",r:0},{cN:"selector-class",b:"\\.[A-Za-z0-9_-]+",r:0},{cN:"selector-attr",b:"\\[",e:"\\]",i:"$"},{cN:"selector-tag",b:"\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\b",r:0},{b:":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)"},{b:"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)"},i,{cN:"attribute",b:"\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\b",i:"[^\\s]"},{b:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{b:":",e:";",c:[i,r,e.CSSNM,e.QSM,e.ASM,{cN:"meta",b:"!important"}]},{b:"@",e:"[{;]",k:"mixin include extend for if else each while charset import debug media page content font-face namespace warn",c:[i,e.QSM,e.ASM,r,e.CSSNM,{b:"\\s[A-Za-z0-9_.-]+",r:0}]}]}});hljs.registerLanguage("diff",function(e){return{aliases:["patch"],c:[{cN:"meta",r:10,v:[{b:/^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},{b:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{b:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{cN:"comment",v:[{b:/Index: /,e:/$/},{b:/={3,}/,e:/$/},{b:/^\-{3}/,e:/$/},{b:/^\*{3} /,e:/$/},{b:/^\+{3}/,e:/$/},{b:/\*{5}/,e:/\*{5}$/}]},{cN:"addition",b:"^\\+",e:"$"},{cN:"deletion",b:"^\\-",e:"$"},{cN:"addition",b:"^\\!",e:"$"}]}});hljs.registerLanguage("less",function(e){var r="[\\w-]+",t="("+r+"|@{"+r+"})",a=[],c=[],s=function(e){return{cN:"string",b:"~?"+e+".*?"+e}},b=function(e,r,t){return{cN:e,b:r,r:t}},n={b:"\\(",e:"\\)",c:c,r:0};c.push(e.CLCM,e.CBCM,s("'"),s('"'),e.CSSNM,{b:"(url|data-uri)\\(",starts:{cN:"string",e:"[\\)\\n]",eE:!0}},b("number","#[0-9A-Fa-f]+\\b"),n,b("variable","@@?"+r,10),b("variable","@{"+r+"}"),b("built_in","~?`[^`]*?`"),{cN:"attribute",b:r+"\\s*:",e:":",rB:!0,eE:!0},{cN:"meta",b:"!important"});var i=c.concat({b:"{",e:"}",c:a}),o={bK:"when",eW:!0,c:[{bK:"and not"}].concat(c)},u={b:t+"\\s*:",rB:!0,e:"[;}]",r:0,c:[{cN:"attribute",b:t,e:":",eE:!0,starts:{eW:!0,i:"[<=$]",r:0,c:c}}]},l={cN:"keyword",b:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{e:"[;{}]",rE:!0,c:c,r:0}},C={cN:"variable",v:[{b:"@"+r+"\\s*:",r:15},{b:"@"+r}],starts:{e:"[;}]",rE:!0,c:i}},p={v:[{b:"[\\.#:&\\[>]",e:"[;{}]"},{b:t,e:"{"}],rB:!0,rE:!0,i:"[<='$\"]",r:0,c:[e.CLCM,e.CBCM,o,b("keyword","all\\b"),b("variable","@{"+r+"}"),b("selector-tag",t+"%?",0),b("selector-id","#"+t),b("selector-class","\\."+t,0),b("selector-tag","&",0),{cN:"selector-attr",b:"\\[",e:"\\]"},{cN:"selector-pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{b:"\\(",e:"\\)",c:i},{b:"!important"}]};return a.push(e.CLCM,e.CBCM,l,C,u,p),{cI:!0,i:"[=>'/<($\"]",c:a}});hljs.registerLanguage("nginx",function(e){var r={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+e.UIR}]},b={eW:!0,l:"[a-z/_]+",k:{literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[e.HCM,{cN:"string",c:[e.BE,r],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{b:"([a-z]+):/",e:"\\s",eW:!0,eE:!0,c:[r]},{cN:"regexp",c:[e.BE,r],v:[{b:"\\s\\^",e:"\\s|{|;",rE:!0},{b:"~\\*?\\s+",e:"\\s|{|;",rE:!0},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},r]};return{aliases:["nginxconf"],c:[e.HCM,{b:e.UIR+"\\s+{",rB:!0,e:"{",c:[{cN:"section",b:e.UIR}],r:0},{b:e.UIR+"\\s",e:";|{",rB:!0,c:[{cN:"attribute",b:e.UIR,starts:b}],r:0}],i:"[^\\s\\}]"}});hljs.registerLanguage("json",function(e){var i={literal:"true false null"},n=[e.QSM,e.CNM],r={e:",",eW:!0,eE:!0,c:n,k:i},t={b:"{",e:"}",c:[{cN:"attr",b:/"/,e:/"/,c:[e.BE],i:"\\n"},e.inherit(r,{b:/:/})],i:"\\S"},c={b:"\\[",e:"\\]",c:[e.inherit(r)],i:"\\S"};return n.splice(n.length,0,t,c),{c:n,k:i,i:"\\S"}});hljs.registerLanguage("http",function(e){var t="HTTP/[0-9\\.]+";return{aliases:["https"],i:"\\S",c:[{b:"^"+t,e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{b:"^[A-Z]+ (.*?) "+t+"$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0},{b:t},{cN:"keyword",b:"[A-Z]+"}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{e:"$",r:0}},{b:"\\n\\n",starts:{sL:[],eW:!0}}]}});hljs.registerLanguage("javascript",function(e){var r="[A-Za-z$_][0-9A-Za-z$_]*",t={keyword:"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await static import from as",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise"},a={cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},n={cN:"subst",b:"\\$\\{",e:"\\}",k:t,c:[]},c={cN:"string",b:"`",e:"`",c:[e.BE,n]};n.c=[e.ASM,e.QSM,c,a,e.RM];var s=n.c.concat([e.CBCM,e.CLCM]);return{aliases:["js","jsx"],k:t,c:[{cN:"meta",r:10,b:/^\s*['"]use (strict|asm)['"]/},{cN:"meta",b:/^#!/,e:/$/},e.ASM,e.QSM,c,e.CLCM,e.CBCM,a,{b:/[{,]\s*/,r:0,c:[{b:r+"\\s*:",rB:!0,r:0,c:[{cN:"attr",b:r,r:0}]}]},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{cN:"function",b:"(\\(.*?\\)|"+r+")\\s*=>",rB:!0,e:"\\s*=>",c:[{cN:"params",v:[{b:r},{b:/\(\s*\)/},{b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,c:s}]}]},{b://,sL:"xml",c:[{b:/<\w+\s*\/>/,skip:!0},{b:/<\w+/,e:/(\/\w+|\w+\/)>/,skip:!0,c:[{b:/<\w+\s*\/>/,skip:!0},"self"]}]}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:r}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:s}],i:/\[|%/},{b:/\$[(.]/},e.METHOD_GUARD,{cN:"class",bK:"class",e:/[{;=]/,eE:!0,i:/[:"\[\]]/,c:[{bK:"extends"},e.UTM]},{bK:"constructor",e:/\{/,eE:!0}],i:/#(?!!)/}});hljs.registerLanguage("ini",function(e){var b={cN:"string",c:[e.BE],v:[{b:"'''",e:"'''",r:10},{b:'"""',e:'"""',r:10},{b:'"',e:'"'},{b:"'",e:"'"}]};return{aliases:["toml"],cI:!0,i:/\S/,c:[e.C(";","$"),e.HCM,{cN:"section",b:/^\s*\[+/,e:/\]+/},{b:/^[a-z0-9\[\]_-]+\s*=\s*/,e:"$",rB:!0,c:[{cN:"attr",b:/[a-z0-9\[\]_-]+/},{b:/=/,eW:!0,r:0,c:[{cN:"literal",b:/\bon|off|true|false|yes|no\b/},{cN:"variable",v:[{b:/\$[\w\d"][\w\d_]*/},{b:/\$\{(.*?)}/}]},b,{cN:"number",b:/([\+\-]+)?[\d]+_[\d_]+/},e.NM]}]}]}});hljs.registerLanguage("cpp",function(t){var e={cN:"keyword",b:"\\b[a-z\\d_]*_t\\b"},r={cN:"string",v:[{b:'(u8?|U)?L?"',e:'"',i:"\\n",c:[t.BE]},{b:'(u8?|U)?R"',e:'"',c:[t.BE]},{b:"'\\\\?.",e:"'",i:"."}]},s={cN:"number",v:[{b:"\\b(0b[01']+)"},{b:"\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{b:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],r:0},i={cN:"meta",b:/#\s*[a-z]+\b/,e:/$/,k:{"meta-keyword":"if else elif endif define undef warning error line pragma ifdef ifndef include"},c:[{b:/\\\n/,r:0},t.inherit(r,{cN:"meta-string"}),{cN:"meta-string",b:"<",e:">",i:"\\n"},t.CLCM,t.CBCM]},a=t.IR+"\\s*\\(",c={keyword:"int float while private char catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return",built_in:"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr",literal:"true false nullptr NULL"},n=[e,t.CLCM,t.CBCM,s,r];return{aliases:["c","cc","h","c++","h++","hpp"],k:c,i:"",k:c,c:["self",e]},{b:t.IR+"::",k:c},{v:[{b:/=/,e:/;/},{b:/\(/,e:/\)/},{bK:"new throw return else",e:/;/}],k:c,c:n.concat([{b:/\(/,e:/\)/,k:c,c:n.concat(["self"]),r:0}]),r:0},{cN:"function",b:"("+t.IR+"[\\*&\\s]+)+"+a,rB:!0,e:/[{;=]/,eE:!0,k:c,i:/[^\w\s\*&]/,c:[{b:a,rB:!0,c:[t.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:c,r:0,c:[t.CLCM,t.CBCM,r,s,e]},t.CLCM,t.CBCM,i]}]),exports:{preprocessor:i,strings:r,k:c}}});hljs.registerLanguage("xml",function(s){var e="[A-Za-z0-9\\._:-]+",t={eW:!0,i:/`]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist"],cI:!0,c:[{cN:"meta",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},s.C("",{r:10}),{b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{b:/<\?(php)?/,e:/\?>/,sL:"php",c:[{b:"/\\*",e:"\\*/",skip:!0}]},{cN:"tag",b:"|$)",e:">",k:{name:"style"},c:[t],starts:{e:"",rE:!0,sL:["css","xml"]}},{cN:"tag",b:"|$)",e:">",k:{name:"script"},c:[t],starts:{e:"",rE:!0,sL:["actionscript","javascript","handlebars","xml"]}},{cN:"meta",v:[{b:/<\?xml/,e:/\?>/,r:10},{b:/<\?\w+/,e:/\?>/}]},{cN:"tag",b:"",c:[{cN:"name",b:/[^\/><\s]+/,r:0},t]}]}});hljs.registerLanguage("php",function(e){var c={b:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},i={cN:"meta",b:/<\?(php)?|\?>/},t={cN:"string",c:[e.BE,i],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},a={v:[e.BNM,e.CNM]};return{aliases:["php3","php4","php5","php6"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.HCM,e.C("//","$",{c:[i]}),e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:/<<<['"]?\w+['"]?$/,e:/^\w+;?$/,c:[e.BE,{cN:"subst",v:[{b:/\$\w+/},{b:/\{\$/,e:/\}/}]}]},i,{cN:"keyword",b:/\$this\b/},c,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",c,e.CBCM,t,a]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},t,a]}});hljs.registerLanguage("objectivec",function(e){var t={cN:"built_in",b:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},_={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},i=/[a-zA-Z@][a-zA-Z0-9_]*/,n="@interface @class @protocol @implementation";return{aliases:["mm","objc","obj-c"],k:_,l:i,i:""}]}]},{cN:"class",b:"("+n.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:n,l:i,c:[e.UTM]},{b:"\\."+e.UIR,r:0}]}});hljs.registerLanguage("makefile",function(e){var a={cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]};return{aliases:["mk","mak"],c:[e.HCM,{b:/^\w+\s*\W*=/,rB:!0,r:0,starts:{e:/\s*\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:"section",b:/^[\w]+:\s*$/},{cN:"meta",b:/^\.PHONY:/,e:/$/,k:{"meta-keyword":".PHONY"},l:/[\.\w]+/},{b:/^\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage("css",function(e){var c="[a-zA-Z-][a-zA-Z0-9_-]*",t={b:/[A-Z\_\.\-]+\s*:/,rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:/\S/,e:":",eE:!0,starts:{eW:!0,eE:!0,c:[{b:/[\w-]+\(/,rB:!0,c:[{cN:"built_in",b:/[\w-]+/},{b:/\(/,e:/\)/,c:[e.ASM,e.QSM]}]},e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"number",b:"#[0-9A-Fa-f]+"},{cN:"meta",b:"!important"}]}}]};return{cI:!0,i:/[=\/|'\$]/,c:[e.CBCM,{cN:"selector-id",b:/#[A-Za-z0-9_-]+/},{cN:"selector-class",b:/\.[A-Za-z0-9_-]+/},{cN:"selector-attr",b:/\[/,e:/\]/,i:"$"},{cN:"selector-pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{b:"@",e:"[{;]",i:/:/,c:[{cN:"keyword",b:/\w+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[e.ASM,e.QSM,e.CSSNM]}]},{cN:"selector-tag",b:c,r:0},{b:"{",e:"}",i:/\S/,c:[e.CBCM,t]}]}});hljs.registerLanguage("perl",function(e){var t="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when",r={cN:"subst",b:"[$@]\\{",e:"\\}",k:t},s={b:"->{",e:"}"},n={v:[{b:/\$\d/},{b:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{b:/[\$%@][^\s\w{]/,r:0}]},i=[e.BE,r,n],o=[n,e.HCM,e.C("^\\=\\w","\\=cut",{eW:!0}),s,{cN:"string",c:i,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[e.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[e.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+e.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[e.HCM,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[e.BE],r:0}]},{cN:"function",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",eE:!0,r:5,c:[e.TM]},{b:"-\\w\\b",r:0},{b:"^__DATA__$",e:"^__END__$",sL:"mojolicious",c:[{b:"^@@.*",e:"$",cN:"comment"}]}];return r.c=o,s.c=o,{aliases:["pl","pm"],l:/[\w\.]+/,k:t,c:o}});hljs.registerLanguage("bash",function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},s={cN:"string",b:/"/,e:/"/,c:[e.BE,t,{cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]}]},a={cN:"string",b:/'/,e:/'/};return{aliases:["sh","zsh"],l:/-?[a-z\._]+/,k:{keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",_:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"meta",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:!0,c:[e.inherit(e.TM,{b:/\w[\w\d_]*/})],r:0},e.HCM,s,a,t]}});hljs.registerLanguage("go",function(e){var t={keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune",literal:"true false iota nil",built_in:"append cap close complex copy imag len make new panic print println real recover delete"};return{aliases:["golang"],k:t,i:")?(\\[\\])?";return{aliases:["csharp"],k:i,i:/::/,c:[e.C("///","$",{rB:!0,c:[{cN:"doctag",v:[{b:"///",r:0},{b:""},{b:""}]}]}),e.CLCM,e.CBCM,{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"}},l,e.CNM,{bK:"class interface",e:/[{;=]/,i:/[^\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:"namespace",e:/[{;=]/,i:/[^\s:]/,c:[e.inherit(e.TM,{b:"[a-zA-Z](\\.?\\w)*"}),e.CLCM,e.CBCM]},{bK:"new return throw await",r:0},{cN:"function",b:"("+b+"\\s+)+"+e.IR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:i,c:[{b:e.IR+"\\s*\\(",rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:i,r:0,c:[l,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage("markdown",function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"section",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"quote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"^```w*s*$",e:"^```s*$"},{b:"`.+?`"},{b:"^( {4}| )",e:"$",r:0}]},{b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"string",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"symbol",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:/^\[[^\n]+\]:/,rB:!0,c:[{cN:"symbol",b:/\[/,e:/\]/,eB:!0,eE:!0},{cN:"link",b:/:\s*/,e:/$/,eB:!0}]}]}});hljs.registerLanguage("java",function(e){var a="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",t=a+"(<"+a+"(\\s*,\\s*"+a+")*>)?",r="false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",s="\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",c={cN:"number",b:s,r:0};return{aliases:["jsp"],k:r,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{b:/\w+@/,r:0},{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"new throw return else",r:0},{cN:"function",b:"("+t+"\\s+)+"+e.UIR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},c,{cN:"meta",b:"@[A-Za-z]+"}]}});hljs.registerLanguage("ruby",function(e){var b="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",r={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",literal:"true false nil"},c={cN:"doctag",b:"@[A-Za-z]+"},a={b:"#<",e:">"},s=[e.C("#","$",{c:[c]}),e.C("^\\=begin","^\\=end",{c:[c],r:10}),e.C("^__END__","\\n$")],n={cN:"subst",b:"#\\{",e:"}",k:r},t={cN:"string",c:[e.BE,n],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{",e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{b:/<<(-?)\w+$/,e:/^\s*\w+$/}]},i={cN:"params",b:"\\(",e:"\\)",endsParent:!0,k:r},d=[t,a,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{b:"<\\s*",c:[{b:"("+e.IR+"::)?"+e.IR}]}].concat(s)},{cN:"function",bK:"def",e:"$|;",c:[e.inherit(e.TM,{b:b}),i].concat(s)},{b:e.IR+"::"},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":(?!\\s)",c:[t,{b:b}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{cN:"params",b:/\|/,e:/\|/,k:r},{b:"("+e.RSR+")\\s*",c:[a,{cN:"regexp",c:[e.BE,n],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(s),r:0}].concat(s);n.c=d,i.c=d;var l="[>?]>",o="[\\w#]+\\(\\w+\\):\\d+:\\d+>",w="(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>",u=[{b:/^\s*=>/,starts:{e:"$",c:d}},{cN:"meta",b:"^("+l+"|"+o+"|"+w+")",starts:{e:"$",c:d}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:r,i:/\/\*/,c:s.concat(u).concat(d)}});hljs.registerLanguage("apache",function(e){var r={cN:"number",b:"[\\$%]\\d+"};return{aliases:["apacheconf"],cI:!0,c:[e.HCM,{cN:"section",b:""},{cN:"attribute",b:/\w+/,r:0,k:{nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"meta",b:"\\s\\[",e:"\\]$"},{cN:"variable",b:"[\\$%]\\{",e:"\\}",c:["self",r]},r,e.QSM]}}],i:/\S/}}); -------------------------------------------------------------------------------- /assets/js/jquery.pjax.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Copyright 2012, Chris Wanstrath 3 | * Released under the MIT License 4 | * https://github.com/defunkt/jquery-pjax 5 | */ 6 | 7 | (function($){ 8 | 9 | // When called on a container with a selector, fetches the href with 10 | // ajax into the container or with the data-pjax attribute on the link 11 | // itself. 12 | // 13 | // Tries to make sure the back button and ctrl+click work the way 14 | // you'd expect. 15 | // 16 | // Exported as $.fn.pjax 17 | // 18 | // Accepts a jQuery ajax options object that may include these 19 | // pjax specific options: 20 | // 21 | // 22 | // container - Where to stick the response body. Usually a String selector. 23 | // $(container).html(xhr.responseBody) 24 | // (default: current jquery context) 25 | // push - Whether to pushState the URL. Defaults to true (of course). 26 | // replace - Want to use replaceState instead? That's cool. 27 | // 28 | // For convenience the second parameter can be either the container or 29 | // the options object. 30 | // 31 | // Returns the jQuery object 32 | function fnPjax(selector, container, options) { 33 | var context = this 34 | return this.on('click.pjax', selector, function(event) { 35 | var opts = $.extend({}, optionsFor(container, options)) 36 | if (!opts.container) 37 | opts.container = $(this).attr('data-pjax') || context 38 | handleClick(event, opts) 39 | }) 40 | } 41 | 42 | // Public: pjax on click handler 43 | // 44 | // Exported as $.pjax.click. 45 | // 46 | // event - "click" jQuery.Event 47 | // options - pjax options 48 | // 49 | // Examples 50 | // 51 | // $(document).on('click', 'a', $.pjax.click) 52 | // // is the same as 53 | // $(document).pjax('a') 54 | // 55 | // $(document).on('click', 'a', function(event) { 56 | // var container = $(this).closest('[data-pjax-container]') 57 | // $.pjax.click(event, container) 58 | // }) 59 | // 60 | // Returns nothing. 61 | function handleClick(event, container, options) { 62 | options = optionsFor(container, options) 63 | 64 | var link = event.currentTarget 65 | 66 | if (link.tagName.toUpperCase() !== 'A') 67 | throw "$.fn.pjax or $.pjax.click requires an anchor element" 68 | 69 | // Middle click, cmd click, and ctrl click should open 70 | // links in a new tab as normal. 71 | if ( event.which > 1 || event.metaKey || event.ctrlKey || event.shiftKey || event.altKey ) 72 | return 73 | 74 | // Ignore cross origin links 75 | if ( location.protocol !== link.protocol || location.hostname !== link.hostname ) 76 | return 77 | 78 | // Ignore case when a hash is being tacked on the current URL 79 | if ( link.href.indexOf('#') > -1 && stripHash(link) == stripHash(location) ) 80 | return 81 | 82 | // Ignore event with default prevented 83 | if (event.isDefaultPrevented()) 84 | return 85 | 86 | var defaults = { 87 | url: link.href, 88 | container: $(link).attr('data-pjax'), 89 | target: link 90 | } 91 | 92 | var opts = $.extend({}, defaults, options) 93 | var clickEvent = $.Event('pjax:click') 94 | $(link).trigger(clickEvent, [opts]) 95 | 96 | if (!clickEvent.isDefaultPrevented()) { 97 | pjax(opts) 98 | event.preventDefault() 99 | $(link).trigger('pjax:clicked', [opts]) 100 | } 101 | } 102 | 103 | // Public: pjax on form submit handler 104 | // 105 | // Exported as $.pjax.submit 106 | // 107 | // event - "click" jQuery.Event 108 | // options - pjax options 109 | // 110 | // Examples 111 | // 112 | // $(document).on('submit', 'form', function(event) { 113 | // var container = $(this).closest('[data-pjax-container]') 114 | // $.pjax.submit(event, container) 115 | // }) 116 | // 117 | // Returns nothing. 118 | function handleSubmit(event, container, options) { 119 | options = optionsFor(container, options) 120 | 121 | var form = event.currentTarget 122 | var $form = $(form) 123 | 124 | if (form.tagName.toUpperCase() !== 'FORM') 125 | throw "$.pjax.submit requires a form element" 126 | 127 | var defaults = { 128 | type: ($form.attr('method') || 'GET').toUpperCase(), 129 | url: $form.attr('action'), 130 | container: $form.attr('data-pjax'), 131 | target: form 132 | } 133 | 134 | if (defaults.type !== 'GET' && window.FormData !== undefined) { 135 | defaults.data = new FormData(form); 136 | defaults.processData = false; 137 | defaults.contentType = false; 138 | } else { 139 | // Can't handle file uploads, exit 140 | if ($(form).find(':file').length) { 141 | return; 142 | } 143 | 144 | // Fallback to manually serializing the fields 145 | defaults.data = $(form).serializeArray(); 146 | } 147 | 148 | pjax($.extend({}, defaults, options)) 149 | 150 | event.preventDefault() 151 | } 152 | 153 | // Loads a URL with ajax, puts the response body inside a container, 154 | // then pushState()'s the loaded URL. 155 | // 156 | // Works just like $.ajax in that it accepts a jQuery ajax 157 | // settings object (with keys like url, type, data, etc). 158 | // 159 | // Accepts these extra keys: 160 | // 161 | // container - Where to stick the response body. 162 | // $(container).html(xhr.responseBody) 163 | // push - Whether to pushState the URL. Defaults to true (of course). 164 | // replace - Want to use replaceState instead? That's cool. 165 | // 166 | // Use it just like $.ajax: 167 | // 168 | // var xhr = $.pjax({ url: this.href, container: '#main' }) 169 | // console.log( xhr.readyState ) 170 | // 171 | // Returns whatever $.ajax returns. 172 | function pjax(options) { 173 | options = $.extend(true, {}, $.ajaxSettings, pjax.defaults, options) 174 | 175 | if ($.isFunction(options.url)) { 176 | options.url = options.url() 177 | } 178 | 179 | var target = options.target 180 | 181 | var hash = parseURL(options.url).hash 182 | 183 | var context = options.context = findContainerFor(options.container) 184 | 185 | // We want the browser to maintain two separate internal caches: one 186 | // for pjax'd partial page loads and one for normal page loads. 187 | // Without adding this secret parameter, some browsers will often 188 | // confuse the two. 189 | if (!options.data) options.data = {} 190 | if ($.isArray(options.data)) { 191 | options.data.push({name: '_pjax', value: context.selector}) 192 | } else { 193 | options.data._pjax = context.selector 194 | } 195 | 196 | function fire(type, args, props) { 197 | if (!props) props = {} 198 | props.relatedTarget = target 199 | var event = $.Event(type, props) 200 | context.trigger(event, args) 201 | return !event.isDefaultPrevented() 202 | } 203 | 204 | var timeoutTimer 205 | 206 | options.beforeSend = function(xhr, settings) { 207 | // No timeout for non-GET requests 208 | // Its not safe to request the resource again with a fallback method. 209 | if (settings.type !== 'GET') { 210 | settings.timeout = 0 211 | } 212 | 213 | xhr.setRequestHeader('X-PJAX', 'true') 214 | xhr.setRequestHeader('X-PJAX-Container', context.selector) 215 | 216 | if (!fire('pjax:beforeSend', [xhr, settings])) 217 | return false 218 | 219 | if (settings.timeout > 0) { 220 | timeoutTimer = setTimeout(function() { 221 | if (fire('pjax:timeout', [xhr, options])) 222 | xhr.abort('timeout') 223 | }, settings.timeout) 224 | 225 | // Clear timeout setting so jquerys internal timeout isn't invoked 226 | settings.timeout = 0 227 | } 228 | 229 | var url = parseURL(settings.url) 230 | if (hash) url.hash = hash 231 | options.requestUrl = stripInternalParams(url) 232 | } 233 | 234 | options.complete = function(xhr, textStatus) { 235 | if (timeoutTimer) 236 | clearTimeout(timeoutTimer) 237 | 238 | fire('pjax:complete', [xhr, textStatus, options]) 239 | 240 | fire('pjax:end', [xhr, options]) 241 | } 242 | 243 | options.error = function(xhr, textStatus, errorThrown) { 244 | var container = extractContainer("", xhr, options) 245 | 246 | var allowed = fire('pjax:error', [xhr, textStatus, errorThrown, options]) 247 | if (options.type == 'GET' && textStatus !== 'abort' && allowed) { 248 | locationReplace(container.url) 249 | } 250 | } 251 | 252 | options.success = function(data, status, xhr) { 253 | var previousState = pjax.state; 254 | 255 | // If $.pjax.defaults.version is a function, invoke it first. 256 | // Otherwise it can be a static string. 257 | var currentVersion = (typeof $.pjax.defaults.version === 'function') ? 258 | $.pjax.defaults.version() : 259 | $.pjax.defaults.version 260 | 261 | var latestVersion = xhr.getResponseHeader('X-PJAX-Version') 262 | 263 | var container = extractContainer(data, xhr, options) 264 | 265 | var url = parseURL(container.url) 266 | if (hash) { 267 | url.hash = hash 268 | container.url = url.href 269 | } 270 | 271 | // If there is a layout version mismatch, hard load the new url 272 | if (currentVersion && latestVersion && currentVersion !== latestVersion) { 273 | locationReplace(container.url) 274 | return 275 | } 276 | 277 | // If the new response is missing a body, hard load the page 278 | if (!container.contents) { 279 | locationReplace(container.url) 280 | return 281 | } 282 | 283 | pjax.state = { 284 | id: options.id || uniqueId(), 285 | url: container.url, 286 | title: container.title, 287 | container: context.selector, 288 | fragment: options.fragment, 289 | timeout: options.timeout 290 | } 291 | 292 | if (options.push || options.replace) { 293 | window.history.replaceState(pjax.state, container.title, container.url) 294 | } 295 | 296 | // Only blur the focus if the focused element is within the container. 297 | var blurFocus = $.contains(options.container, document.activeElement) 298 | 299 | // Clear out any focused controls before inserting new page contents. 300 | if (blurFocus) { 301 | try { 302 | document.activeElement.blur() 303 | } catch (e) { } 304 | } 305 | 306 | if (container.title) document.title = container.title 307 | 308 | fire('pjax:beforeReplace', [container.contents, options], { 309 | state: pjax.state, 310 | previousState: previousState 311 | }) 312 | context.html(container.contents) 313 | 314 | // FF bug: Won't autofocus fields that are inserted via JS. 315 | // This behavior is incorrect. So if theres no current focus, autofocus 316 | // the last field. 317 | // 318 | // http://www.w3.org/html/wg/drafts/html/master/forms.html 319 | var autofocusEl = context.find('input[autofocus], textarea[autofocus]').last()[0] 320 | if (autofocusEl && document.activeElement !== autofocusEl) { 321 | autofocusEl.focus(); 322 | } 323 | 324 | executeScriptTags(container.scripts) 325 | 326 | var scrollTo = options.scrollTo 327 | 328 | // Ensure browser scrolls to the element referenced by the URL anchor 329 | if (hash) { 330 | var name = decodeURIComponent(hash.slice(1)) 331 | var target = document.getElementById(name) || document.getElementsByName(name)[0] 332 | if (target) scrollTo = $(target).offset().top 333 | } 334 | 335 | if (typeof scrollTo == 'number') $(window).scrollTop(scrollTo) 336 | 337 | fire('pjax:success', [data, status, xhr, options]) 338 | } 339 | 340 | 341 | // Initialize pjax.state for the initial page load. Assume we're 342 | // using the container and options of the link we're loading for the 343 | // back button to the initial page. This ensures good back button 344 | // behavior. 345 | if (!pjax.state) { 346 | pjax.state = { 347 | id: uniqueId(), 348 | url: window.location.href, 349 | title: document.title, 350 | container: context.selector, 351 | fragment: options.fragment, 352 | timeout: options.timeout 353 | } 354 | window.history.replaceState(pjax.state, document.title) 355 | } 356 | 357 | // Cancel the current request if we're already pjaxing 358 | abortXHR(pjax.xhr) 359 | 360 | pjax.options = options 361 | var xhr = pjax.xhr = $.ajax(options) 362 | 363 | if (xhr.readyState > 0) { 364 | if (options.push && !options.replace) { 365 | // Cache current container element before replacing it 366 | cachePush(pjax.state.id, cloneContents(context)) 367 | 368 | window.history.pushState(null, "", options.requestUrl) 369 | } 370 | 371 | fire('pjax:start', [xhr, options]) 372 | fire('pjax:send', [xhr, options]) 373 | } 374 | 375 | return pjax.xhr 376 | } 377 | 378 | // Public: Reload current page with pjax. 379 | // 380 | // Returns whatever $.pjax returns. 381 | function pjaxReload(container, options) { 382 | var defaults = { 383 | url: window.location.href, 384 | push: false, 385 | replace: true, 386 | scrollTo: false 387 | } 388 | 389 | return pjax($.extend(defaults, optionsFor(container, options))) 390 | } 391 | 392 | // Internal: Hard replace current state with url. 393 | // 394 | // Work for around WebKit 395 | // https://bugs.webkit.org/show_bug.cgi?id=93506 396 | // 397 | // Returns nothing. 398 | function locationReplace(url) { 399 | window.history.replaceState(null, "", pjax.state.url) 400 | window.location.replace(url) 401 | } 402 | 403 | 404 | var initialPop = true 405 | var initialURL = window.location.href 406 | var initialState = window.history.state 407 | 408 | // Initialize $.pjax.state if possible 409 | // Happens when reloading a page and coming forward from a different 410 | // session history. 411 | if (initialState && initialState.container) { 412 | pjax.state = initialState 413 | } 414 | 415 | // Non-webkit browsers don't fire an initial popstate event 416 | if ('state' in window.history) { 417 | initialPop = false 418 | } 419 | 420 | // popstate handler takes care of the back and forward buttons 421 | // 422 | // You probably shouldn't use pjax on pages with other pushState 423 | // stuff yet. 424 | function onPjaxPopstate(event) { 425 | 426 | // Hitting back or forward should override any pending PJAX request. 427 | if (!initialPop) { 428 | abortXHR(pjax.xhr) 429 | } 430 | 431 | var previousState = pjax.state 432 | var state = event.state 433 | var direction 434 | 435 | if (state && state.container) { 436 | // When coming forward from a separate history session, will get an 437 | // initial pop with a state we are already at. Skip reloading the current 438 | // page. 439 | if (initialPop && initialURL == state.url) return 440 | 441 | if (previousState) { 442 | // If popping back to the same state, just skip. 443 | // Could be clicking back from hashchange rather than a pushState. 444 | if (previousState.id === state.id) return 445 | 446 | // Since state IDs always increase, we can deduce the navigation direction 447 | direction = previousState.id < state.id ? 'forward' : 'back' 448 | } 449 | 450 | var cache = cacheMapping[state.id] || [] 451 | var container = $(cache[0] || state.container), contents = cache[1] 452 | 453 | if (container.length) { 454 | if (previousState) { 455 | // Cache current container before replacement and inform the 456 | // cache which direction the history shifted. 457 | cachePop(direction, previousState.id, cloneContents(container)) 458 | } 459 | 460 | var popstateEvent = $.Event('pjax:popstate', { 461 | state: state, 462 | direction: direction 463 | }) 464 | container.trigger(popstateEvent) 465 | 466 | var options = { 467 | id: state.id, 468 | url: state.url, 469 | container: container, 470 | push: false, 471 | fragment: state.fragment, 472 | timeout: state.timeout, 473 | scrollTo: false 474 | } 475 | 476 | if (contents) { 477 | container.trigger('pjax:start', [null, options]) 478 | 479 | pjax.state = state 480 | if (state.title) document.title = state.title 481 | var beforeReplaceEvent = $.Event('pjax:beforeReplace', { 482 | state: state, 483 | previousState: previousState 484 | }) 485 | container.trigger(beforeReplaceEvent, [contents, options]) 486 | container.html(contents) 487 | 488 | container.trigger('pjax:end', [null, options]) 489 | } else { 490 | pjax(options) 491 | } 492 | 493 | // Force reflow/relayout before the browser tries to restore the 494 | // scroll position. 495 | container[0].offsetHeight 496 | } else { 497 | locationReplace(location.href) 498 | } 499 | } 500 | initialPop = false 501 | } 502 | 503 | // Fallback version of main pjax function for browsers that don't 504 | // support pushState. 505 | // 506 | // Returns nothing since it retriggers a hard form submission. 507 | function fallbackPjax(options) { 508 | var url = $.isFunction(options.url) ? options.url() : options.url, 509 | method = options.type ? options.type.toUpperCase() : 'GET' 510 | 511 | var form = $('
', { 512 | method: method === 'GET' ? 'GET' : 'POST', 513 | action: url, 514 | style: 'display:none' 515 | }) 516 | 517 | if (method !== 'GET' && method !== 'POST') { 518 | form.append($('', { 519 | type: 'hidden', 520 | name: '_method', 521 | value: method.toLowerCase() 522 | })) 523 | } 524 | 525 | var data = options.data 526 | if (typeof data === 'string') { 527 | $.each(data.split('&'), function(index, value) { 528 | var pair = value.split('=') 529 | form.append($('', {type: 'hidden', name: pair[0], value: pair[1]})) 530 | }) 531 | } else if ($.isArray(data)) { 532 | $.each(data, function(index, value) { 533 | form.append($('', {type: 'hidden', name: value.name, value: value.value})) 534 | }) 535 | } else if (typeof data === 'object') { 536 | var key 537 | for (key in data) 538 | form.append($('', {type: 'hidden', name: key, value: data[key]})) 539 | } 540 | 541 | $(document.body).append(form) 542 | form.submit() 543 | } 544 | 545 | // Internal: Abort an XmlHttpRequest if it hasn't been completed, 546 | // also removing its event handlers. 547 | function abortXHR(xhr) { 548 | if ( xhr && xhr.readyState < 4) { 549 | xhr.onreadystatechange = $.noop 550 | xhr.abort() 551 | } 552 | } 553 | 554 | // Internal: Generate unique id for state object. 555 | // 556 | // Use a timestamp instead of a counter since ids should still be 557 | // unique across page loads. 558 | // 559 | // Returns Number. 560 | function uniqueId() { 561 | return (new Date).getTime() 562 | } 563 | 564 | function cloneContents(container) { 565 | var cloned = container.clone() 566 | // Unmark script tags as already being eval'd so they can get executed again 567 | // when restored from cache. HAXX: Uses jQuery internal method. 568 | cloned.find('script').each(function(){ 569 | if (!this.src) jQuery._data(this, 'globalEval', false) 570 | }) 571 | return [container.selector, cloned.contents()] 572 | } 573 | 574 | // Internal: Strip internal query params from parsed URL. 575 | // 576 | // Returns sanitized url.href String. 577 | function stripInternalParams(url) { 578 | url.search = url.search.replace(/([?&])(_pjax|_)=[^&]*/g, '') 579 | return url.href.replace(/\?($|#)/, '$1') 580 | } 581 | 582 | // Internal: Parse URL components and returns a Locationish object. 583 | // 584 | // url - String URL 585 | // 586 | // Returns HTMLAnchorElement that acts like Location. 587 | function parseURL(url) { 588 | var a = document.createElement('a') 589 | a.href = url 590 | return a 591 | } 592 | 593 | // Internal: Return the `href` component of given URL object with the hash 594 | // portion removed. 595 | // 596 | // location - Location or HTMLAnchorElement 597 | // 598 | // Returns String 599 | function stripHash(location) { 600 | return location.href.replace(/#.*/, '') 601 | } 602 | 603 | // Internal: Build options Object for arguments. 604 | // 605 | // For convenience the first parameter can be either the container or 606 | // the options object. 607 | // 608 | // Examples 609 | // 610 | // optionsFor('#container') 611 | // // => {container: '#container'} 612 | // 613 | // optionsFor('#container', {push: true}) 614 | // // => {container: '#container', push: true} 615 | // 616 | // optionsFor({container: '#container', push: true}) 617 | // // => {container: '#container', push: true} 618 | // 619 | // Returns options Object. 620 | function optionsFor(container, options) { 621 | // Both container and options 622 | if ( container && options ) 623 | options.container = container 624 | 625 | // First argument is options Object 626 | else if ( $.isPlainObject(container) ) 627 | options = container 628 | 629 | // Only container 630 | else 631 | options = {container: container} 632 | 633 | // Find and validate container 634 | if (options.container) 635 | options.container = findContainerFor(options.container) 636 | 637 | return options 638 | } 639 | 640 | // Internal: Find container element for a variety of inputs. 641 | // 642 | // Because we can't persist elements using the history API, we must be 643 | // able to find a String selector that will consistently find the Element. 644 | // 645 | // container - A selector String, jQuery object, or DOM Element. 646 | // 647 | // Returns a jQuery object whose context is `document` and has a selector. 648 | function findContainerFor(container) { 649 | container = $(container) 650 | 651 | if ( !container.length ) { 652 | throw "no pjax container for " + container.selector 653 | } else if ( container.selector !== '' && container.context === document ) { 654 | return container 655 | } else if ( container.attr('id') ) { 656 | return $('#' + container.attr('id')) 657 | } else { 658 | throw "cant get selector for pjax container!" 659 | } 660 | } 661 | 662 | // Internal: Filter and find all elements matching the selector. 663 | // 664 | // Where $.fn.find only matches descendants, findAll will test all the 665 | // top level elements in the jQuery object as well. 666 | // 667 | // elems - jQuery object of Elements 668 | // selector - String selector to match 669 | // 670 | // Returns a jQuery object. 671 | function findAll(elems, selector) { 672 | return elems.filter(selector).add(elems.find(selector)); 673 | } 674 | 675 | function parseHTML(html) { 676 | return $.parseHTML(html, document, true) 677 | } 678 | 679 | // Internal: Extracts container and metadata from response. 680 | // 681 | // 1. Extracts X-PJAX-URL header if set 682 | // 2. Extracts inline tags 683 | // 3. Builds response Element and extracts fragment if set 684 | // 685 | // data - String response data 686 | // xhr - XHR response 687 | // options - pjax options Object 688 | // 689 | // Returns an Object with url, title, and contents keys. 690 | function extractContainer(data, xhr, options) { 691 | var obj = {}, fullDocument = /<html/i.test(data) 692 | 693 | // Prefer X-PJAX-URL header if it was set, otherwise fallback to 694 | // using the original requested url. 695 | var serverUrl = xhr.getResponseHeader('X-PJAX-URL') 696 | obj.url = serverUrl ? stripInternalParams(parseURL(serverUrl)) : options.requestUrl 697 | 698 | // Attempt to parse response html into elements 699 | if (fullDocument) { 700 | var $head = $(parseHTML(data.match(/<head[^>]*>([\s\S.]*)<\/head>/i)[0])) 701 | var $body = $(parseHTML(data.match(/<body[^>]*>([\s\S.]*)<\/body>/i)[0])) 702 | } else { 703 | var $head = $body = $(parseHTML(data)) 704 | } 705 | 706 | // If response data is empty, return fast 707 | if ($body.length === 0) 708 | return obj 709 | 710 | // If there's a <title> tag in the header, use it as 711 | // the page's title. 712 | obj.title = findAll($head, 'title').last().text() 713 | 714 | if (options.fragment) { 715 | // If they specified a fragment, look for it in the response 716 | // and pull it out. 717 | if (options.fragment === 'body') { 718 | var $fragment = $body 719 | } else { 720 | var $fragment = findAll($body, options.fragment).first() 721 | } 722 | 723 | if ($fragment.length) { 724 | obj.contents = options.fragment === 'body' ? $fragment : $fragment.contents() 725 | 726 | // If there's no title, look for data-title and title attributes 727 | // on the fragment 728 | if (!obj.title) 729 | obj.title = $fragment.attr('title') || $fragment.data('title') 730 | } 731 | 732 | } else if (!fullDocument) { 733 | obj.contents = $body 734 | } 735 | 736 | // Clean up any <title> tags 737 | if (obj.contents) { 738 | // Remove any parent title elements 739 | obj.contents = obj.contents.not(function() { return $(this).is('title') }) 740 | 741 | // Then scrub any titles from their descendants 742 | obj.contents.find('title').remove() 743 | 744 | // Gather all script[src] elements 745 | obj.scripts = findAll(obj.contents, 'script[src]').remove() 746 | obj.contents = obj.contents.not(obj.scripts) 747 | } 748 | 749 | // Trim any whitespace off the title 750 | if (obj.title) obj.title = $.trim(obj.title) 751 | 752 | return obj 753 | } 754 | 755 | // Load an execute scripts using standard script request. 756 | // 757 | // Avoids jQuery's traditional $.getScript which does a XHR request and 758 | // globalEval. 759 | // 760 | // scripts - jQuery object of script Elements 761 | // 762 | // Returns nothing. 763 | function executeScriptTags(scripts) { 764 | if (!scripts) return 765 | 766 | var existingScripts = $('script[src]') 767 | 768 | scripts.each(function() { 769 | var src = this.src 770 | var matchedScripts = existingScripts.filter(function() { 771 | return this.src === src 772 | }) 773 | if (matchedScripts.length) return 774 | 775 | var script = document.createElement('script') 776 | var type = $(this).attr('type') 777 | if (type) script.type = type 778 | script.src = $(this).attr('src') 779 | document.head.appendChild(script) 780 | }) 781 | } 782 | 783 | // Internal: History DOM caching class. 784 | var cacheMapping = {} 785 | var cacheForwardStack = [] 786 | var cacheBackStack = [] 787 | 788 | // Push previous state id and container contents into the history 789 | // cache. Should be called in conjunction with `pushState` to save the 790 | // previous container contents. 791 | // 792 | // id - State ID Number 793 | // value - DOM Element to cache 794 | // 795 | // Returns nothing. 796 | function cachePush(id, value) { 797 | cacheMapping[id] = value 798 | cacheBackStack.push(id) 799 | 800 | // Remove all entries in forward history stack after pushing a new page. 801 | trimCacheStack(cacheForwardStack, 0) 802 | 803 | // Trim back history stack to max cache length. 804 | trimCacheStack(cacheBackStack, pjax.defaults.maxCacheLength) 805 | } 806 | 807 | // Shifts cache from directional history cache. Should be 808 | // called on `popstate` with the previous state id and container 809 | // contents. 810 | // 811 | // direction - "forward" or "back" String 812 | // id - State ID Number 813 | // value - DOM Element to cache 814 | // 815 | // Returns nothing. 816 | function cachePop(direction, id, value) { 817 | var pushStack, popStack 818 | cacheMapping[id] = value 819 | 820 | if (direction === 'forward') { 821 | pushStack = cacheBackStack 822 | popStack = cacheForwardStack 823 | } else { 824 | pushStack = cacheForwardStack 825 | popStack = cacheBackStack 826 | } 827 | 828 | pushStack.push(id) 829 | if (id = popStack.pop()) 830 | delete cacheMapping[id] 831 | 832 | // Trim whichever stack we just pushed to to max cache length. 833 | trimCacheStack(pushStack, pjax.defaults.maxCacheLength) 834 | } 835 | 836 | // Trim a cache stack (either cacheBackStack or cacheForwardStack) to be no 837 | // longer than the specified length, deleting cached DOM elements as necessary. 838 | // 839 | // stack - Array of state IDs 840 | // length - Maximum length to trim to 841 | // 842 | // Returns nothing. 843 | function trimCacheStack(stack, length) { 844 | while (stack.length > length) 845 | delete cacheMapping[stack.shift()] 846 | } 847 | 848 | // Public: Find version identifier for the initial page load. 849 | // 850 | // Returns String version or undefined. 851 | function findVersion() { 852 | return $('meta').filter(function() { 853 | var name = $(this).attr('http-equiv') 854 | return name && name.toUpperCase() === 'X-PJAX-VERSION' 855 | }).attr('content') 856 | } 857 | 858 | // Install pjax functions on $.pjax to enable pushState behavior. 859 | // 860 | // Does nothing if already enabled. 861 | // 862 | // Examples 863 | // 864 | // $.pjax.enable() 865 | // 866 | // Returns nothing. 867 | function enable() { 868 | $.fn.pjax = fnPjax 869 | $.pjax = pjax 870 | $.pjax.enable = $.noop 871 | $.pjax.disable = disable 872 | $.pjax.click = handleClick 873 | $.pjax.submit = handleSubmit 874 | $.pjax.reload = pjaxReload 875 | $.pjax.defaults = { 876 | timeout: 650, 877 | push: true, 878 | replace: false, 879 | type: 'GET', 880 | dataType: 'html', 881 | scrollTo: 0, 882 | maxCacheLength: 20, 883 | version: findVersion 884 | } 885 | $(window).on('popstate.pjax', onPjaxPopstate) 886 | } 887 | 888 | // Disable pushState behavior. 889 | // 890 | // This is the case when a browser doesn't support pushState. It is 891 | // sometimes useful to disable pushState for debugging on a modern 892 | // browser. 893 | // 894 | // Examples 895 | // 896 | // $.pjax.disable() 897 | // 898 | // Returns nothing. 899 | function disable() { 900 | $.fn.pjax = function() { return this } 901 | $.pjax = fallbackPjax 902 | $.pjax.enable = enable 903 | $.pjax.disable = $.noop 904 | $.pjax.click = $.noop 905 | $.pjax.submit = $.noop 906 | $.pjax.reload = function() { window.location.reload() } 907 | 908 | $(window).off('popstate.pjax', onPjaxPopstate) 909 | } 910 | 911 | 912 | // Add the state property to jQuery's event object so we can use it in 913 | // $(window).bind('popstate') 914 | if ( $.inArray('state', $.event.props) < 0 ) 915 | $.event.props.push('state') 916 | 917 | // Is pjax supported by this browser? 918 | $.support.pjax = 919 | window.history && window.history.pushState && window.history.replaceState && 920 | // pushState isn't reliable on iOS until 5. 921 | !navigator.userAgent.match(/((iPod|iPhone|iPad).+\bOS\s+[1-4]\D|WebApps\/.+CFNetwork)/) 922 | 923 | $.support.pjax ? enable() : disable() 924 | 925 | })(jQuery); 926 | -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- 1 | function OtherF(){$(".hljs").css("background","rgb(59, 45, 45)");$(".post-page-comments-title").click(function(){$(".post-page-comments").slideToggle(800)});function backTop(){var GTop=$(document).scrollTop();if(GTop>450){$(".page-retop-btn").css("display","block")}else{$(".page-retop-btn").css("display","none")}setTimeout(backTop)}backTop();$(".page-retop-btn").click(function(){$("html,body").animate({scrollTop:0},400)});$(".page-menu-btn").click(function(){$(".page-main").toggleClass("page-main-open");$(".page-nav").toggleClass("page-main-open");$(".page-menu-btn").toggleClass("page-menu-btn-open");$(".mask").fadeToggle(600);$(".page-retop-btn").toggleClass("page-main-open");$(".page-menu-btn .page-menu-btn-one").toggleClass("page-menu-btn-rotate-left");$(".page-menu-btn .page-menu-btn-two").fadeToggle(100);$(".page-menu-btn .page-menu-btn-three").toggleClass("page-menu-btn-rotate-right")});$(".mask").click(function(){$(".page-main").removeClass("page-main-open");$(".page-nav").removeClass("page-main-open");$(".page-menu-btn").removeClass("page-menu-btn-open");$(".page-retop-btn").removeClass("page-main-open");$(".post-page-donate").removeClass("post-page-donate-open");$(".page-menu-btn .page-menu-btn-one").removeClass("page-menu-btn-rotate-left");$(".page-menu-btn .page-menu-btn-two").fadeIn();$(".page-menu-btn .page-menu-btn-three").removeClass("page-menu-btn-rotate-right");$(".mask").fadeOut(600);setTimeout(function(){$(".mask").css("display","none")},600)});$(".post-page-content a").attr("target","_blank");$(".links-page-content a").attr("target","_blank");$(".post-page-main img").attr("data-action","zoom");$(".post-page-content a").addClass("down-a");$(".tags-page-content a").addClass("down-a");$(".post-page-readmore a").addClass("down-a");$(".post-block>section a").addClass("down-a");var post_page_donate=$(".post-page-donate-btn").css("bottom");$(".post-page-donate-btn").click(function(){$(".post-page-donate").toggleClass("post-page-donate-open");$(".mask").fadeToggle(600)});var Pwidth=$(window).width();var donateW=(Pwidth-850)/2;$(".post-page-donate-box").css("left",donateW);$("mark").css("background","none");$(".page-body-color-night").click(function(){bodyColorLinght()});$(".page-body-color-light").click(function(){bodyColorNight()});var myDate=new Date();var syHours=myDate.getHours();if(syHours>21||syHours<6){bodyColorNight()}else{bodyColorLinght()}function bodyColorLinght(){$(".page-body-color-light").css("display","inline-block");$(".page-body-color-night").css("display","none");$("body").css("background","#fff");$(".page-header").css("background-color","#f5f8fa");$(".page-header-title>h1>a").css("color","#255");$(".page-header-title>p").css("color","#255");$(".post-block>section").css("color","#666");$(".post-page-main>section").css("color","#333");$(".post-page-main>section").css("border-color","#eee");$(".post-page-main>section img").css("box-shadow","0 0 4px 5px rgba(232, 232, 232, 0.5)");$("pre code").css("background","#fafafa");$(".waves-button").css("background-color","#fff");$(".links-btn").css("border-color","#e8e8e8");$(".links-btn>span").css({"color":"#d2bcbc","border-color":"#e8e8e8"});$(".page-retop-btn>i").css("color","#333");$(".page-nav").css("background","#fafafa");$(".page-nav-icon").css({"background":"#fff","border-top":"#eee"});$(".page-menu-btn>i").css("background","#857171");$(".page-nav-icon-bg").css("background","#eee");$(".page-nav-bar>ul>li>a").css("color","#F55852");$(".page-nav-bar>ul>li>a").hover(function(){$(this).css("background","#eee")},function(){$(this).css("background","rgba(0,0,0,0)")});$(".mask").css("background","rgba(255, 255, 255, 0.85)");$("section blockquote").css({"border-color":"#e2e2e2","background-color":"#fafafa"});$(".post-page-comments *").css("border-color","#eee");$("#ds-thread #ds-reset .ds-textarea-wrapper").css("background","none");$("#ds-thread #ds-reset .ds-comments").css("border-color","#eee");$("#ds-thread #ds-reset .ds-meta").css("border-color","#eee");$("#ds-thread #ds-reset .ds-comment-body p").css("color","#333");$(".post-page-donate").css("background","#fff");$(".post-page-donate-box").css("background","#fff");$(".post-page-donate-btn").css({"background":"#fff","box-shadow":"0 0 4px 1px rgba(255, 0, 0, 0.1)","color":"#999"})}function bodyColorNight(){$(".page-body-color-light").css("display","none");$(".page-body-color-night").css("display","inline-block");$("body").css("background","rgb(48, 36, 36)");$(".page-header").css("background-color","rgb(52, 52, 52)");$(".page-header-title>h1>a").css("color","#eee");$(".page-header-title>p").css("color","#eee");$(".post-block>section").css("color","#9b9b9b");$(".post-page-main>section").css("color","#bcbcbc");$(".post-page-main>section").css("border-color","#999");$(".post-page-main>section img").css("box-shadow","0 0 0 0 rgba(0, 0, 0, 0)");$("pre code").css("background","rgb(59, 45, 45)");$(".waves-button").css("background-color","#574040");$(".links-btn").css("border-color","#255");$(".links-btn>span").css({"color":"#736464","border-color":"#215454"}); 2 | $(".page-retop-btn>i").css("color","#fff");$(".page-nav").css("background","rgb(48, 36, 36)");$(".page-nav-icon").css({"background":"rgb(48, 36, 36)","border-top":"rgb(48, 36, 36)"});$(".page-menu-btn>i").css("background","#eee");$(".page-nav-icon-bg").css("background","#493939");$(".page-nav-bar>ul>li>a").css("color","#eee");$(".page-nav-bar>ul>li>a").hover(function(){$(this).css("background","#553939")},function(){$(this).css("background","rgba(0,0,0,0)")});$(".mask").css("background","rgba(0, 0, 0, 0.85)");$("section blockquote").css({"border-color":"#914343","background-color":"rgb(59, 45, 45)"});$(".post-page-comments *").css("border-color","#255");$("#ds-thread #ds-reset .ds-textarea-wrapper").css("background","none");$("#ds-thread #ds-reset .ds-comments").css("border-color","#255");$("#ds-thread #ds-reset .ds-meta").css("border-color","#255");$("#ds-thread #ds-reset .ds-comment-body p").css("color","#6d6d6d");$(".post-page-donate").css("background","rgb(48, 36, 36)");$(".post-page-donate-box").css("background","rgb(48, 36, 36)");$(".post-page-donate-btn").css({"background":"rgb(87, 64, 64)","box-shadow":"0 0 4px 1px rgba(255, 255, 255, 0.1)","color":"rgb(169, 167, 167)"})}}; -------------------------------------------------------------------------------- /assets/js/transition.js: -------------------------------------------------------------------------------- 1 | /* ======================================================================== 2 | * Bootstrap: transition.js v3.3.7 3 | * http://getbootstrap.com/javascript/#transitions 4 | * ======================================================================== 5 | * Copyright 2011-2016 Twitter, Inc. 6 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 7 | * ======================================================================== */ 8 | 9 | 10 | +function ($) { 11 | 'use strict'; 12 | 13 | // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) 14 | // ============================================================ 15 | 16 | function transitionEnd() { 17 | var el = document.createElement('bootstrap') 18 | 19 | var transEndEventNames = { 20 | WebkitTransition : 'webkitTransitionEnd', 21 | MozTransition : 'transitionend', 22 | OTransition : 'oTransitionEnd otransitionend', 23 | transition : 'transitionend' 24 | } 25 | 26 | for (var name in transEndEventNames) { 27 | if (el.style[name] !== undefined) { 28 | return { end: transEndEventNames[name] } 29 | } 30 | } 31 | 32 | return false // explicit for ie8 ( ._.) 33 | } 34 | 35 | // http://blog.alexmaccaw.com/css-transitions 36 | $.fn.emulateTransitionEnd = function (duration) { 37 | var called = false 38 | var $el = this 39 | $(this).one('bsTransitionEnd', function () { called = true }) 40 | var callback = function () { if (!called) $($el).trigger($.support.transition.end) } 41 | setTimeout(callback, duration) 42 | return this 43 | } 44 | 45 | $(function () { 46 | $.support.transition = transitionEnd() 47 | 48 | if (!$.support.transition) return 49 | 50 | $.event.special.bsTransitionEnd = { 51 | bindType: $.support.transition.end, 52 | delegateType: $.support.transition.end, 53 | handle: function (e) { 54 | if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments) 55 | } 56 | } 57 | }) 58 | 59 | }(jQuery); 60 | -------------------------------------------------------------------------------- /assets/js/waves.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Waves v0.7.5 3 | * http://fian.my.id/Waves 4 | * 5 | * Copyright 2014-2016 Alfiana E. Sibuea and other contributors 6 | * Released under the MIT license 7 | * https://github.com/fians/Waves/blob/master/LICENSE 8 | */ 9 | !function(a,b){"use strict";"function"==typeof define&&define.amd?define([],function(){return b.apply(a)}):"object"==typeof exports?module.exports=b.call(a):a.Waves=b.call(a)}("object"==typeof global?global:this,function(){"use strict";function a(a){return null!==a&&a===a.window}function b(b){return a(b)?b:9===b.nodeType&&b.defaultView}function c(a){var b=typeof a;return"function"===b||"object"===b&&!!a}function d(a){return c(a)&&a.nodeType>0}function e(a){var b=m.call(a);return"[object String]"===b?l(a):c(a)&&/^\[object (Array|HTMLCollection|NodeList|Object)\]$/.test(b)&&a.hasOwnProperty("length")?a:d(a)?[a]:[]}function f(a){var c,d,e={top:0,left:0},f=a&&a.ownerDocument;return c=f.documentElement,"undefined"!=typeof a.getBoundingClientRect&&(e=a.getBoundingClientRect()),d=b(f),{top:e.top+d.pageYOffset-c.clientTop,left:e.left+d.pageXOffset-c.clientLeft}}function g(a){var b="";for(var c in a)a.hasOwnProperty(c)&&(b+=c+":"+a[c]+";");return b}function h(a,b,c){if(c){c.classList.remove("waves-rippling");var d=c.getAttribute("data-x"),e=c.getAttribute("data-y"),f=c.getAttribute("data-scale"),h=c.getAttribute("data-translate"),i=Date.now()-Number(c.getAttribute("data-hold")),j=350-i;0>j&&(j=0),"mousemove"===a.type&&(j=150);var k="mousemove"===a.type?2500:o.duration;setTimeout(function(){var a={top:e+"px",left:d+"px",opacity:"0","-webkit-transition-duration":k+"ms","-moz-transition-duration":k+"ms","-o-transition-duration":k+"ms","transition-duration":k+"ms","-webkit-transform":f+" "+h,"-moz-transform":f+" "+h,"-ms-transform":f+" "+h,"-o-transform":f+" "+h,transform:f+" "+h};c.setAttribute("style",g(a)),setTimeout(function(){try{b.removeChild(c)}catch(a){return!1}},k)},j)}}function i(a){if(q.allowEvent(a)===!1)return null;for(var b=null,c=a.target||a.srcElement;c.parentElement;){if(!(c instanceof SVGElement)&&c.classList.contains("waves-effect")){b=c;break}c=c.parentElement}return b}function j(a){var b=i(a);if(null!==b){if(b.disabled||b.getAttribute("disabled")||b.classList.contains("disabled"))return;if(q.registerEvent(a),"touchstart"===a.type&&o.delay){var c=!1,d=setTimeout(function(){d=null,o.show(a,b)},o.delay),e=function(e){d&&(clearTimeout(d),d=null,o.show(a,b)),c||(c=!0,o.hide(e,b))},f=function(a){d&&(clearTimeout(d),d=null),e(a)};b.addEventListener("touchmove",f,!1),b.addEventListener("touchend",e,!1),b.addEventListener("touchcancel",e,!1)}else o.show(a,b),n&&(b.addEventListener("touchend",o.hide,!1),b.addEventListener("touchcancel",o.hide,!1)),b.addEventListener("mouseup",o.hide,!1),b.addEventListener("mouseleave",o.hide,!1)}}var k=k||{},l=document.querySelectorAll.bind(document),m=Object.prototype.toString,n="ontouchstart"in window,o={duration:750,delay:200,show:function(a,b,c){if(2===a.button)return!1;b=b||this;var d=document.createElement("div");d.className="waves-ripple waves-rippling",b.appendChild(d);var e=f(b),h=0,i=0;"touches"in a&&a.touches.length?(h=a.touches[0].pageY-e.top,i=a.touches[0].pageX-e.left):(h=a.pageY-e.top,i=a.pageX-e.left),i=i>=0?i:0,h=h>=0?h:0;var j="scale("+b.clientWidth/100*3+")",k="translate(0,0)";c&&(k="translate("+c.x+"px, "+c.y+"px)"),d.setAttribute("data-hold",Date.now()),d.setAttribute("data-x",i),d.setAttribute("data-y",h),d.setAttribute("data-scale",j),d.setAttribute("data-translate",k);var l={top:h+"px",left:i+"px"};d.classList.add("waves-notransition"),d.setAttribute("style",g(l)),d.classList.remove("waves-notransition"),l["-webkit-transform"]=j+" "+k,l["-moz-transform"]=j+" "+k,l["-ms-transform"]=j+" "+k,l["-o-transform"]=j+" "+k,l.transform=j+" "+k,l.opacity="1";var m="mousemove"===a.type?2500:o.duration;l["-webkit-transition-duration"]=m+"ms",l["-moz-transition-duration"]=m+"ms",l["-o-transition-duration"]=m+"ms",l["transition-duration"]=m+"ms",d.setAttribute("style",g(l))},hide:function(a,b){b=b||this;for(var c=b.getElementsByClassName("waves-rippling"),d=0,e=c.length;e>d;d++)h(a,b,c[d])}},p={input:function(a){var b=a.parentNode;if("i"!==b.tagName.toLowerCase()||!b.classList.contains("waves-effect")){var c=document.createElement("i");c.className=a.className+" waves-input-wrapper",a.className="waves-button-input",b.replaceChild(c,a),c.appendChild(a);var d=window.getComputedStyle(a,null),e=d.color,f=d.backgroundColor;c.setAttribute("style","color:"+e+";background:"+f),a.setAttribute("style","background-color:rgba(0,0,0,0);")}},img:function(a){var b=a.parentNode;if("i"!==b.tagName.toLowerCase()||!b.classList.contains("waves-effect")){var c=document.createElement("i");b.replaceChild(c,a),c.appendChild(a)}}},q={touches:0,allowEvent:function(a){var b=!0;return/^(mousedown|mousemove)$/.test(a.type)&&q.touches&&(b=!1),b},registerEvent:function(a){var b=a.type;"touchstart"===b?q.touches+=1:/^(touchend|touchcancel)$/.test(b)&&setTimeout(function(){q.touches&&(q.touches-=1)},500)}};return k.init=function(a){var b=document.body;a=a||{},"duration"in a&&(o.duration=a.duration),"delay"in a&&(o.delay=a.delay),n&&(b.addEventListener("touchstart",j,!1),b.addEventListener("touchcancel",q.registerEvent,!1),b.addEventListener("touchend",q.registerEvent,!1)),b.addEventListener("mousedown",j,!1)},k.attach=function(a,b){a=e(a),"[object Array]"===m.call(b)&&(b=b.join(" ")),b=b?" "+b:"";for(var c,d,f=0,g=a.length;g>f;f++)c=a[f],d=c.tagName.toLowerCase(),-1!==["input","img"].indexOf(d)&&(p[d](c),c=c.parentElement),-1===c.className.indexOf("waves-effect")&&(c.className+=" waves-effect"+b)},k.ripple=function(a,b){a=e(a);var c=a.length;if(b=b||{},b.wait=b.wait||0,b.position=b.position||null,c)for(var d,g,h,i={},j=0,k={type:"mousedown",button:1},l=function(a,b){return function(){o.hide(a,b)}};c>j;j++)if(d=a[j],g=b.position||{x:d.clientWidth/2,y:d.clientHeight/2},h=f(d),i.x=h.left+g.x,i.y=h.top+g.y,k.pageX=i.x,k.pageY=i.y,o.show(k,d),b.wait>=0&&null!==b.wait){var m={type:"mouseup",button:1};setTimeout(l(m,d),b.wait)}},k.calm=function(a){a=e(a);for(var b={type:"mouseup",button:1},c=0,d=a.length;d>c;c++)o.hide(b,a[c])},k.displayEffect=function(a){k.init(a)},k}); 10 | //# sourceMappingURL=waves.min.js.map -------------------------------------------------------------------------------- /assets/js/zoom.js: -------------------------------------------------------------------------------- 1 | +function ($) { "use strict"; 2 | 3 | /** 4 | * The zoom service 5 | */ 6 | function ZoomService () { 7 | this._activeZoom = 8 | this._initialScrollPosition = 9 | this._initialTouchPosition = 10 | this._touchMoveListener = null 11 | 12 | this._$document = $(document) 13 | this._$window = $(window) 14 | this._$body = $(document.body) 15 | 16 | this._boundClick = $.proxy(this._clickHandler, this) 17 | } 18 | 19 | ZoomService.prototype.listen = function () { 20 | this._$body.on('click', '[data-action="zoom"]', $.proxy(this._zoom, this)) 21 | } 22 | 23 | ZoomService.prototype._zoom = function (e) { 24 | var target = e.target 25 | 26 | if (!target || target.tagName != 'IMG') return 27 | 28 | if (this._$body.hasClass('zoom-overlay-open')) return 29 | 30 | if (e.metaKey || e.ctrlKey) { 31 | return window.open((e.target.getAttribute('data-original') || e.target.src), '_blank') 32 | } 33 | 34 | if (target.width >= ($(window).width() - Zoom.OFFSET)) return 35 | 36 | this._activeZoomClose(true) 37 | 38 | this._activeZoom = new Zoom(target) 39 | this._activeZoom.zoomImage() 40 | 41 | // todo(fat): probably worth throttling this 42 | this._$window.on('scroll.zoom', $.proxy(this._scrollHandler, this)) 43 | 44 | this._$document.on('keyup.zoom', $.proxy(this._keyHandler, this)) 45 | this._$document.on('touchstart.zoom', $.proxy(this._touchStart, this)) 46 | 47 | // we use a capturing phase here to prevent unintended js events 48 | // sadly no useCapture in jquery api (http://bugs.jquery.com/ticket/14953) 49 | if (document.addEventListener) { 50 | document.addEventListener('click', this._boundClick, true) 51 | } else { 52 | document.attachEvent('onclick', this._boundClick, true) 53 | } 54 | 55 | if ('bubbles' in e) { 56 | if (e.bubbles) e.stopPropagation() 57 | } else { 58 | // Internet Explorer before version 9 59 | e.cancelBubble = true 60 | } 61 | } 62 | 63 | ZoomService.prototype._activeZoomClose = function (forceDispose) { 64 | if (!this._activeZoom) return 65 | 66 | if (forceDispose) { 67 | this._activeZoom.dispose() 68 | } else { 69 | this._activeZoom.close() 70 | } 71 | 72 | this._$window.off('.zoom') 73 | this._$document.off('.zoom') 74 | 75 | document.removeEventListener('click', this._boundClick, true) 76 | 77 | this._activeZoom = null 78 | } 79 | 80 | ZoomService.prototype._scrollHandler = function (e) { 81 | if (this._initialScrollPosition === null) this._initialScrollPosition = $(window).scrollTop() 82 | var deltaY = this._initialScrollPosition - $(window).scrollTop() 83 | if (Math.abs(deltaY) >= 40) this._activeZoomClose() 84 | } 85 | 86 | ZoomService.prototype._keyHandler = function (e) { 87 | if (e.keyCode == 27) this._activeZoomClose() 88 | } 89 | 90 | ZoomService.prototype._clickHandler = function (e) { 91 | if (e.preventDefault) e.preventDefault() 92 | else event.returnValue = false 93 | 94 | if ('bubbles' in e) { 95 | if (e.bubbles) e.stopPropagation() 96 | } else { 97 | // Internet Explorer before version 9 98 | e.cancelBubble = true 99 | } 100 | 101 | this._activeZoomClose() 102 | } 103 | 104 | ZoomService.prototype._touchStart = function (e) { 105 | this._initialTouchPosition = e.touches[0].pageY 106 | $(e.target).on('touchmove.zoom', $.proxy(this._touchMove, this)) 107 | } 108 | 109 | ZoomService.prototype._touchMove = function (e) { 110 | if (Math.abs(e.touches[0].pageY - this._initialTouchPosition) > 10) { 111 | this._activeZoomClose() 112 | $(e.target).off('touchmove.zoom') 113 | } 114 | } 115 | 116 | 117 | /** 118 | * The zoom object 119 | */ 120 | function Zoom (img) { 121 | this._fullHeight = 122 | this._fullWidth = 123 | this._overlay = 124 | this._targetImageWrap = null 125 | 126 | this._targetImage = img 127 | 128 | this._$body = $(document.body) 129 | } 130 | 131 | Zoom.OFFSET = 80 132 | Zoom._MAX_WIDTH = 2560 133 | Zoom._MAX_HEIGHT = 4096 134 | 135 | Zoom.prototype.zoomImage = function () { 136 | var img = document.createElement('img') 137 | img.onload = $.proxy(function () { 138 | this._fullHeight = Number(img.height) 139 | this._fullWidth = Number(img.width) 140 | this._zoomOriginal() 141 | }, this) 142 | img.src = this._targetImage.src 143 | } 144 | 145 | Zoom.prototype._zoomOriginal = function () { 146 | this._targetImageWrap = document.createElement('div') 147 | this._targetImageWrap.className = 'zoom-img-wrap' 148 | 149 | this._targetImage.parentNode.insertBefore(this._targetImageWrap, this._targetImage) 150 | this._targetImageWrap.appendChild(this._targetImage) 151 | 152 | $(this._targetImage) 153 | .addClass('zoom-img') 154 | .attr('data-action', 'zoom-out') 155 | 156 | this._overlay = document.createElement('div') 157 | this._overlay.className = 'zoom-overlay' 158 | 159 | document.body.appendChild(this._overlay) 160 | 161 | this._calculateZoom() 162 | this._triggerAnimation() 163 | } 164 | 165 | Zoom.prototype._calculateZoom = function () { 166 | this._targetImage.offsetWidth // repaint before animating 167 | 168 | var originalFullImageWidth = this._fullWidth 169 | var originalFullImageHeight = this._fullHeight 170 | 171 | var scrollTop = $(window).scrollTop() 172 | 173 | var maxScaleFactor = originalFullImageWidth / this._targetImage.width 174 | 175 | var viewportHeight = ($(window).height() - Zoom.OFFSET) 176 | var viewportWidth = ($(window).width() - Zoom.OFFSET) 177 | 178 | var imageAspectRatio = originalFullImageWidth / originalFullImageHeight 179 | var viewportAspectRatio = viewportWidth / viewportHeight 180 | 181 | if (originalFullImageWidth < viewportWidth && originalFullImageHeight < viewportHeight) { 182 | this._imgScaleFactor = maxScaleFactor 183 | 184 | } else if (imageAspectRatio < viewportAspectRatio) { 185 | this._imgScaleFactor = (viewportHeight / originalFullImageHeight) * maxScaleFactor 186 | 187 | } else { 188 | this._imgScaleFactor = (viewportWidth / originalFullImageWidth) * maxScaleFactor 189 | } 190 | } 191 | 192 | Zoom.prototype._triggerAnimation = function () { 193 | this._targetImage.offsetWidth // repaint before animating 194 | 195 | var imageOffset = $(this._targetImage).offset() 196 | var scrollTop = $(window).scrollTop() 197 | 198 | var viewportY = scrollTop + ($(window).height() / 2) 199 | var viewportX = ($(window).width() / 2) 200 | 201 | var imageCenterY = imageOffset.top + (this._targetImage.height / 2) 202 | var imageCenterX = imageOffset.left + (this._targetImage.width / 2) 203 | 204 | this._translateY = viewportY - imageCenterY 205 | this._translateX = viewportX - imageCenterX 206 | 207 | var targetTransform = 'scale(' + this._imgScaleFactor + ')' 208 | var imageWrapTransform = 'translate(' + this._translateX + 'px, ' + this._translateY + 'px)' 209 | 210 | if ($.support.transition) { 211 | imageWrapTransform += ' translateZ(0)' 212 | } 213 | 214 | $(this._targetImage) 215 | .css({ 216 | '-webkit-transform': targetTransform, 217 | '-ms-transform': targetTransform, 218 | 'transform': targetTransform 219 | }) 220 | 221 | $(this._targetImageWrap) 222 | .css({ 223 | '-webkit-transform': imageWrapTransform, 224 | '-ms-transform': imageWrapTransform, 225 | 'transform': imageWrapTransform 226 | }) 227 | 228 | this._$body.addClass('zoom-overlay-open') 229 | } 230 | 231 | Zoom.prototype.close = function () { 232 | this._$body 233 | .removeClass('zoom-overlay-open') 234 | .addClass('zoom-overlay-transitioning') 235 | 236 | // we use setStyle here so that the correct vender prefix for transform is used 237 | $(this._targetImage) 238 | .css({ 239 | '-webkit-transform': '', 240 | '-ms-transform': '', 241 | 'transform': '' 242 | }) 243 | 244 | $(this._targetImageWrap) 245 | .css({ 246 | '-webkit-transform': '', 247 | '-ms-transform': '', 248 | 'transform': '' 249 | }) 250 | 251 | if (!$.support.transition) { 252 | return this.dispose() 253 | } 254 | 255 | $(this._targetImage) 256 | .one($.support.transition.end, $.proxy(this.dispose, this)) 257 | .emulateTransitionEnd(300) 258 | } 259 | 260 | Zoom.prototype.dispose = function () { 261 | if (this._targetImageWrap && this._targetImageWrap.parentNode) { 262 | $(this._targetImage) 263 | .removeClass('zoom-img') 264 | .attr('data-action', 'zoom') 265 | 266 | this._targetImageWrap.parentNode.replaceChild(this._targetImage, this._targetImageWrap) 267 | this._overlay.parentNode.removeChild(this._overlay) 268 | 269 | this._$body.removeClass('zoom-overlay-transitioning') 270 | } 271 | } 272 | 273 | // wait for dom ready (incase script included before body) 274 | $(function () { 275 | new ZoomService().listen() 276 | }) 277 | 278 | }(jQuery) 279 | -------------------------------------------------------------------------------- /author.hbs: -------------------------------------------------------------------------------- 1 | {{!< default}} 2 | <div class="page-main"> 3 | {{#author}} 4 | <div class="mask"></div> 5 | <header class="page-header"> 6 | <div class="page-header-title"> 7 | <h1><a href="{{@blog.url}}">{{@blog.title}}</a></h1> 8 | <p>{{@blog.description}}</p> 9 | </div> 10 | </header> 11 | <div class="container"> 12 | <div class="container-main"> 13 | {{#foreach posts}} 14 | <article class="post-block"> 15 | <header> 16 | <h2 class="animated2 fadeInDown"><a href="{{url}}">{{title}}</a></h2> 17 | <time datetime="{{date format="DD MMMM YYYY"}}">{{date format="DD MMMM YYYY"}}</time> 18 | </header> 19 | <section class="animated fadeInDown"> 20 | {{excerpt characters="130"}} 21 | </section> 22 | <footer></footer> 23 | </article> 24 | {{/foreach}} 25 | {{pagination}} 26 | </div> 27 | </div> 28 | {{/author}} 29 | {{> "footer"}} 30 | </div> 31 | -------------------------------------------------------------------------------- /default.hbs: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | {{!-- Document Settings --}} 5 | <meta charset="utf-8"> 6 | <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"> 7 | <meta name="renderer" content="webkit"> 8 | <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> 9 | {{!-- Page Meta --}} 10 | <title>{{meta_title}} 11 | 12 | {{!-- Mobile Meta --}} 13 | 14 | {{!-- Brand icon --}} 15 | 16 | {{!-- Styles'n'Scripts --}} 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | {{navigation}} 36 | {{{body}}} 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 |
46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 58 | 65 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /index.hbs: -------------------------------------------------------------------------------- 1 | {{!< default}} 2 | {{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}} 3 | {{!-- The big featured header --}} 4 |
5 |
6 | {{#if @blog.cover}} 7 | 20 | 26 | {{else}} 27 | 33 | {{/if}} 34 |
35 |
36 | {{#foreach posts}} 37 |
38 |
39 |

{{title}}

40 | 41 |
42 |
43 | {{content characters="130"}} 44 |
45 |
46 |
47 | {{/foreach}} 48 | {{pagination}} 49 |
50 |
51 | 52 | 53 | {{> "footer"}} 54 |
55 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Jian", 3 | <<<<<<< HEAD 4 | "version": "2.4.1", 5 | ======= 6 | "version": "2.4", 7 | >>>>>>> parent of abe4db6... update V2.5 8 | "Github":"https://github.com/Weic96/Jian", 9 | "Url":"https://weic96.cn/themes-jian", 10 | "author": "Weic Ma", 11 | "E-mail":"i@weic96.cn", 12 | "website": "https://weic96.cn" 13 | } 14 | -------------------------------------------------------------------------------- /page-links.hbs: -------------------------------------------------------------------------------- 1 | {{!< default}} 2 |
3 | {{#post}} 4 |
5 |
6 |
7 |
8 |
9 |

{{title}}

10 |
11 | 14 |
15 |
16 | 17 |
18 |
19 |
20 |
21 | {{/post}} 22 | {{> "footer"}} 23 |
24 | -------------------------------------------------------------------------------- /page-tags.hbs: -------------------------------------------------------------------------------- 1 | {{!< default}} 2 |
3 | {{#post}} 4 |
5 |
6 |
7 |
8 |
9 |

{{title}}

10 |
11 |
12 | {{! Tag Cloud }} 13 | {{#get "tags" limit="all" include="count.posts" order="count.posts desc" }} 14 | {{#foreach tags}} 15 | {{name}} 16 | {{/foreach}} 17 | {{/get}} 18 |
19 |
20 | 21 |
22 |
23 |
24 |
25 | {{/post}} 26 | {{> "footer"}} 27 |
28 | -------------------------------------------------------------------------------- /page.hbs: -------------------------------------------------------------------------------- 1 | {{!< default}} 2 |
3 | {{#post}} 4 |
5 |
6 |
7 |
8 |
9 |

{{title}}

10 |
11 |
12 | {{content}} 13 |
14 |
15 | 16 |
17 |
18 |
19 |
20 | {{/post}} 21 | {{> "footer"}} 22 |
23 | -------------------------------------------------------------------------------- /partials/comments.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machengwei1024/Jian-Ghost/838a6cfd008404df29a4a497819a1e20a2021fee/partials/comments.hbs -------------------------------------------------------------------------------- /partials/footer.hbs: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /partials/loop.hbs: -------------------------------------------------------------------------------- 1 | {{!-- Previous/next page links - only displayed on page 2+ --}} 2 |
3 | {{pagination}} 4 |
5 | 6 | {{!-- This is the post loop - each post will be output using this markup --}} 7 |
8 | 14 |
15 |
16 | {{#foreach posts}} 17 |
18 |
19 |

{{title}}

20 | 21 |
22 |
23 | {{excerpt words="15"}} 24 |
25 |
26 |
27 | {{/foreach}} 28 | 29 | {{!-- Previous/next page links - displayed on every page --}} 30 | {{pagination}} 31 | -------------------------------------------------------------------------------- /partials/navigation.hbs: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /partials/pagination.hbs: -------------------------------------------------------------------------------- 1 | {{!-- Previous/next page links - displayed on every page --}} 2 | {{!-- pagination --}} 3 | 14 | -------------------------------------------------------------------------------- /post.hbs: -------------------------------------------------------------------------------- 1 | {{!< default}} 2 |
3 | {{#post}} 4 |
5 | {{#if image}} 6 | 47 |
48 |
49 |

{{title}}

50 | 51 |
52 |
53 | {{else}} 54 | 73 |
74 |

{{title}}

75 | 76 |
77 | {{/if}} 78 |
79 |
80 |
81 |
82 | {{content}} 83 |
84 |
85 |
86 | 标签:{{tags prefix=""}} 87 |
88 |
89 | {{#next_post}} 90 |
91 | 下一篇:   92 | {{title}} 93 |
94 | {{/next_post}} 95 | {{#prev_post}} 96 |
97 | 上一篇:   98 | {{title}} 99 |
100 | {{/prev_post}} 101 |
102 | {{> "comments"}} 103 |
104 |
105 |
106 |
107 | 108 | {{/post}} 109 | {{> "footer"}} 110 |
111 | 112 |
113 | 114 |
115 |

如果我的文章对你有帮助,或许可以打赏一下呀!

116 |
117 |
118 | 支付宝 119 |
120 | 121 |
122 |
123 |
124 | 微信 125 |
126 | 127 |
128 |
129 |
130 | QQ 131 |
132 | 133 |
134 |
135 |
136 |
137 |
138 |
139 | -------------------------------------------------------------------------------- /tag.hbs: -------------------------------------------------------------------------------- 1 | {{!< default}} 2 | {{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}} 3 | 4 | {{!-- If we have a tag cover, display that - else blog cover - else nothing --}} 5 |
6 | 12 |
13 |
14 | {{#foreach posts}} 15 |
16 |
17 |

{{title}}

18 | 19 |
20 |
21 | {{excerpt characters="130"}} 22 |
23 | 24 |
25 | {{/foreach}} 26 | {{pagination}} 27 |
28 |
29 | --------------------------------------------------------------------------------