├── 404.php
├── LICENSE
├── README.md
├── archive.php
├── comments.php
├── css
└── main.css
├── fonts
├── icon-default
│ ├── icomoon.eot
│ ├── icomoon.svg
│ ├── icomoon.ttf
│ ├── icomoon.woff
│ └── selection.json
├── icon-feather
│ ├── icomoon.eot
│ ├── icomoon.svg
│ ├── icomoon.ttf
│ ├── icomoon.woff
│ └── selection.json
├── icon-fifty-shades
│ ├── icomoon.eot
│ ├── icomoon.svg
│ ├── icomoon.ttf
│ ├── icomoon.woff
│ └── selection.json
├── icon-icomoon
│ ├── icomoon.eot
│ ├── icomoon.svg
│ ├── icomoon.ttf
│ └── icomoon.woff
└── icon-linecons
│ ├── icomoon.eot
│ ├── icomoon.svg
│ ├── icomoon.ttf
│ ├── icomoon.woff
│ └── selection.json
├── footer.php
├── functions.php
├── header.php
├── images
├── bkdefault_avatar.jpg
├── cc-by-nc-nd.svg
├── cc-by-nc-sa.svg
├── cc-by-nc.svg
├── cc-by-nd.svg
├── cc-by-sa.svg
├── cc-by.svg
├── cc-zero.svg
├── loading.gif
├── placeholder.gif
├── quote-l.svg
├── quote-r.svg
└── searchicon.png
├── index.php
├── js
├── bootstrap.js
├── bootstrap.scrollspy.js
├── fancy-box.js
├── helpers.js
├── hook-duoshuo.js
├── lazyload.js
├── motion.js
├── motion_fallback.js
├── motion_global.js
├── nav-toggle.js
├── post_sidebar.js
└── ua-parser.min.js
├── page-archive.php
├── page-categories.php
├── page-link.php
├── page-tags.php
├── page.php
├── post.php
├── screenshot.png
├── search.php
├── sidebar.php
└── vendors
├── fancybox
└── source
│ ├── blank.gif
│ ├── fancybox_loading.gif
│ ├── fancybox_loading@2x.gif
│ ├── fancybox_overlay.png
│ ├── fancybox_sprite.png
│ ├── fancybox_sprite@2x.png
│ ├── helpers
│ ├── fancybox_buttons.png
│ ├── jquery.fancybox-buttons.css
│ ├── jquery.fancybox-buttons.js
│ ├── jquery.fancybox-media.js
│ ├── jquery.fancybox-thumbs.css
│ └── jquery.fancybox-thumbs.js
│ ├── jquery.fancybox.css
│ ├── jquery.fancybox.js
│ └── jquery.fancybox.pack.js
├── fastclick
├── LICENSE
├── README.html
├── bower.json
└── lib
│ ├── fastclick.js
│ └── fastclick.min.js
├── font-awesome
├── HELP-US-OUT.txt
├── bower.json
├── css
│ ├── font-awesome.css
│ ├── font-awesome.css.map
│ └── font-awesome.min.css
└── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ ├── fontawesome-webfont.woff
│ └── fontawesome-webfont.woff2
├── jquery
└── index.js
└── velocity
├── bower.json
├── velocity.js
├── velocity.min.js
├── velocity.ui.js
└── velocity.ui.min.js
/404.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | is('index')): ?>options->title(); ?>
10 |
11 | archiveTitle('.', '', ' - '); ?>options->title(); ?>
12 |
13 |
16 |
17 |
18 |
94 | header("generator=&template=&"); ?>
95 |
96 |
97 |
113 | footer(); ?>
114 |
115 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2015 zgq354
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
23 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # typecho-theme-next
2 |
3 | Hexo 主题 [Next.Mist](https://github.com/iissnan/hexo-theme-next) 的 Typecho 移植版。
4 |
5 | ## 特性
6 | 1. 支持typecho原生评论(评论样式来自cho的Navy主题)
7 | 2. 侧边栏显示友情链接,友情链接在启用 [Hanny](http://www.imhan.com/) 的 [Links插件](http://www.imhan.com/tag/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/) 才会显示
8 | 3. 自带分类、归档、标签页面模板
9 |
10 | ## 使用方法
11 | 1. 点击 download zip 下载最新源码,解压,将其中文件夹重命名为 next 并上传至博客的 `/usr/themes` 目录下
12 | 2. 在 Typecho 后台启用
13 | 3. 新建分类页,缩略名为 `categories`,自定义模板选择 `categories`
14 | 4. 新建归档页,缩略名为 `archive`,自定义模板选择 `archive`
15 | 5. 新建标签页,缩略名为 `tags`,自定义模板选择 `tags`
16 | 6. 前往外观设置设置头像,昵称等等
17 |
18 | ## 相关链接
19 |
20 | * NexT.Pisces:[NexT.Pisces](https://github.com/newraina/typecho-theme-NexTPisces)
21 |
22 | ## License
23 |
24 | Open sourced under the MIT license.
25 |
--------------------------------------------------------------------------------
/archive.php:
--------------------------------------------------------------------------------
1 |
2 | need('header.php'); ?>
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | archiveTitle(array(
12 | 'category' => _t('分类 %s 下的文章'),
13 | 'search' => _t('包含关键字 %s 的文章'),
14 | 'tag' => _t('标签 %s 下的文章'),
15 | 'author' => _t('%s 发布的文章')
16 | ), '', ''); ?>
17 |
18 | next()):
22 | $year_tmp = date('Y',$this->created);
23 | $mon_tmp = date('m',$this->created);
24 | //var_dump($year_tmp);
25 | $y=$year; $m=$mon;
26 | //if ($mon != $mon_tmp && $mon > 0) $output .= '';
27 | //if ($year != $year_tmp && $year > 0) $output .= '';
28 | if ($year != $year_tmp) {
29 | $year = $year_tmp;
30 | //$output .= ''. $year .' 年
'; //输出年份
31 | $output .= '
32 |
'.$year.'
33 |
34 | '; //输出年份
35 | }
36 | $output .='
37 |
47 |
48 | ';
49 | endwhile;
50 | echo $output;
51 | ?>
52 |
53 |
54 |
55 | need('sidebar.php'); ?>
56 |
57 | need('footer.php'); ?>
--------------------------------------------------------------------------------
/comments.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/fonts/icon-default/icomoon.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-default/icomoon.eot
--------------------------------------------------------------------------------
/fonts/icon-default/icomoon.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Generated by IcoMoon
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/fonts/icon-default/icomoon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-default/icomoon.ttf
--------------------------------------------------------------------------------
/fonts/icon-default/icomoon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-default/icomoon.woff
--------------------------------------------------------------------------------
/fonts/icon-default/selection.json:
--------------------------------------------------------------------------------
1 | {"IcoMoonType":"selection","icons":[{"icon":{"paths":["M170 470v84h86v-84h-86zM86 598v-172h852v172h-852zM256 298v-84h-86v84h86zM86 170h852v172h-852v-172zM170 726v84h86v-84h-86zM86 854v-172h852v172h-852z"],"attrs":[{}],"isMulticolor":false,"tags":["storage"],"defaultCode":57532,"grid":24},"attrs":[{}],"properties":{"order":392,"id":188,"prevSize":24,"code":57532,"name":"storage","ligatures":"storage"},"setIdx":0,"setId":0,"iconIdx":188},{"icon":{"paths":["M512 746q-74 0-133-41t-85-107h436q-26 66-85 107t-133 41zM362 470q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM662 470q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"],"attrs":[{}],"isMulticolor":false,"tags":["insert_emoticon"],"defaultCode":57576,"grid":24},"attrs":[{}],"properties":{"order":384,"id":232,"prevSize":24,"code":57576,"name":"insert_emoticon","ligatures":"insert_emoticon"},"setIdx":0,"setId":0,"iconIdx":232},{"icon":{"paths":["M512 768q106 0 181-75t75-181-75-181-181-75q-52 0-106 24 66 30 107 93t41 139-41 139-107 93q54 24 106 24zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200z"],"attrs":[{}],"isMulticolor":false,"tags":["brightness_4"],"defaultCode":57662,"grid":24},"attrs":[{}],"properties":{"order":383,"id":318,"prevSize":24,"code":57662,"name":"brightness_4","ligatures":"brightness_4"},"setIdx":0,"setId":0,"iconIdx":318},{"icon":{"paths":["M500 810q86 0 145-59t59-145q0-88-24-172-62 82-198 110-120 26-120 132 0 56 40 95t98 39zM576 28q128 104 203 253t75 317q0 140-100 240t-242 100-242-100-100-240q0-216 138-380v16q0 66 44 112t110 46q64 0 105-45t41-113q0-40-8-92t-16-82z"],"attrs":[{}],"isMulticolor":false,"tags":["whatshot"],"defaultCode":57947,"grid":24},"attrs":[{}],"properties":{"order":390,"id":603,"prevSize":24,"code":57947,"name":"whatshot","ligatures":"whatshot"},"setIdx":0,"setId":0,"iconIdx":603},{"icon":{"paths":["M726 128q34 0 59 26t25 60v682l-298-128-298 128v-682q0-34 25-60t59-26h428z"],"attrs":[{}],"isMulticolor":false,"tags":["bookmark"],"defaultCode":57979,"grid":24},"attrs":[{}],"properties":{"order":389,"id":635,"prevSize":24,"code":57979,"name":"bookmark","ligatures":"bookmark"},"setIdx":0,"setId":0,"iconIdx":635},{"icon":{"paths":["M516 792q96-86 142-130t100-104 75-106 21-90q0-64-43-106t-107-42q-50 0-93 28t-59 72h-80q-16-44-59-72t-93-28q-64 0-107 42t-43 106q0 44 21 90t75 106 100 104 142 130l4 4zM704 128q100 0 167 68t67 166q0 58-22 113t-81 123-107 114-154 142l-62 56-62-54q-138-124-199-186t-113-146-52-162q0-98 67-166t167-68q116 0 192 90 76-90 192-90z"],"attrs":[{}],"isMulticolor":false,"tags":["favorite_outline"],"defaultCode":58002,"grid":24},"attrs":[{}],"properties":{"order":385,"id":658,"prevSize":24,"code":58002,"name":"favorite_outline","ligatures":"favorite_outline"},"setIdx":0,"setId":0,"iconIdx":658},{"icon":{"paths":["M426 854h-212v-342h-128l426-384 426 384h-128v342h-212v-256h-172v256z"],"attrs":[{}],"isMulticolor":false,"tags":["home"],"defaultCode":58014,"grid":24},"attrs":[{}],"properties":{"order":391,"id":670,"prevSize":24,"code":58014,"name":"home","ligatures":"home"},"setIdx":0,"setId":0,"iconIdx":670},{"icon":{"paths":["M598 128h298v298h-86v-152l-418 418-60-60 418-418h-152v-86zM810 810v-298h86v298q0 34-26 60t-60 26h-596q-36 0-61-26t-25-60v-596q0-34 25-60t61-26h298v86h-298v596h596z"],"attrs":[{}],"isMulticolor":false,"tags":["open_in_new"],"defaultCode":58034,"grid":24},"attrs":[{}],"properties":{"order":386,"id":690,"prevSize":24,"code":58034,"name":"open_in_new","ligatures":"open_in_new"},"setIdx":0,"setId":0,"iconIdx":690},{"icon":{"paths":["M406 598q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM662 598l212 212-64 64-212-212v-34l-12-12q-76 66-180 66-116 0-197-80t-81-196 81-197 197-81 196 81 80 197q0 104-66 180l12 12h34z"],"attrs":[{}],"isMulticolor":false,"tags":["search"],"defaultCode":58058,"grid":24},"attrs":[{}],"properties":{"order":393,"id":714,"prevSize":24,"code":58058,"name":"search","ligatures":"search"},"setIdx":0,"setId":0,"iconIdx":714},{"icon":{"paths":["M768 256h170v470h-170v-470zM86 726v-470h170v470h-170zM298 810v-640h428v640h-428z"],"attrs":[{}],"isMulticolor":false,"tags":["view_carousel"],"defaultCode":58109,"grid":24},"attrs":[{}],"properties":{"order":387,"id":765,"prevSize":24,"code":58109,"name":"view_carousel","ligatures":"view_carousel"},"setIdx":0,"setId":0,"iconIdx":765}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"autoHost":true,"showSelector":true,"selector":"","showMetrics":true,"showMetadata":true,"showVersion":true},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":4473924,"bgColor":16777215,"classSelector":".icon"},"historySize":100,"showCodes":true,"quickUsageToken":{"UntitledProject":"NGQ3ZDQyOTcwODQxMzQ5NWMwZDZjNDBmNzUxM2JhYTUjMSMxNDIzMTI2NDkyIyMj"},"showLiga":true,"fontHostingName":false}}
--------------------------------------------------------------------------------
/fonts/icon-feather/icomoon.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-feather/icomoon.eot
--------------------------------------------------------------------------------
/fonts/icon-feather/icomoon.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Generated by IcoMoon
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/fonts/icon-feather/icomoon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-feather/icomoon.ttf
--------------------------------------------------------------------------------
/fonts/icon-feather/icomoon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-feather/icomoon.woff
--------------------------------------------------------------------------------
/fonts/icon-feather/selection.json:
--------------------------------------------------------------------------------
1 | {"IcoMoonType":"selection","icons":[{"icon":{"paths":["M298.667 42.667h426.667q53 0 90.5 37.5t37.5 90.5v810.667l-341.333-256-341.333 256v-810.667q0-53 37.5-90.5t90.5-37.5zM725.333 128h-426.667q-17.667 0-30.167 12.5t-12.5 30.167v640l256-192 256 192v-640q0-17.667-12.5-30.167t-30.167-12.5z"],"attrs":[],"isMulticolor":false,"tags":["ribbon"],"defaultCode":57353,"grid":24},"attrs":[],"properties":{"id":9,"order":138,"prevSize":24,"code":57353,"name":"ribbon"},"setIdx":0,"setId":0,"iconIdx":9},{"icon":{"paths":["M512 170.667q131 0 255 46t225 135.333q14.333 12.333 14.333 32 0 16.667-10.667 28.333l-2 2q-12.333 12.333-30 12.333-16.667 0-28.333-10.667-89-78.667-198.5-119.333t-224.833-40.667-224.833 40.667-198.5 119.333q-11.667 10.667-28.333 10.667-19.667 0-32-14.333-10.667-11.667-10.667-28.333 0-19.667 14.333-32 101.333-89.333 225.167-135.333t254.833-46zM512.333 682.667q58 0 107.667 29.333 10 6 15.667 15.833t5.667 21.167-6 21.333q-3 5-6.667 8.667-12.333 12.333-30.333 12.333-12 0-21.333-5.667-30.333-17.667-64.667-17.667-34.667 0-65 17.667-10.667 6-21.667 6-24.333 0-37-21-6-10-6-21.333 0-24.333 21-37 50.333-29.667 108.667-29.667zM512 427q80.667 0 157 26.667t140 79q15.667 12.667 15.667 33 0 15.333-9.667 27-2 2.667-2.667 3.333-12.333 12.333-30 12.333-15.667 0-27.333-9.667-52-42.667-114.667-64.667t-128.333-22-128.333 22-114.667 64.667q-11.667 9.667-27 9.667-20.333 0-33-15.667-9.667-11.667-9.667-27 0-20.333 15.667-33 63.333-52.333 140-79t157-26.667z"],"attrs":[],"isMulticolor":false,"tags":["signal","wave"],"defaultCode":57361,"grid":24},"attrs":[],"properties":{"id":11,"order":137,"prevSize":24,"code":57361,"name":"signal"},"setIdx":0,"setId":0,"iconIdx":11},{"icon":{"paths":["M512 42.667q87.333 0 169 10.5t149.833 30.667 109.333 53.667 41.167 75.833v597.333q0 42.333-41.167 75.833t-109.333 53.667-149.833 30.667-169 10.5-169-10.5-149.833-30.667-109.333-53.667-41.167-75.833v-597.333q0-42.333 41.167-75.833t109.333-53.667 149.833-30.667 169-10.5zM896 810v-194.333q-65.333 33-168.333 50t-215.667 17-215.667-17-168.333-50v195q2 7.333 17.833 17.667t48.5 22.333 76 22 107 16.667 134.667 6.667 134.667-6.667 107-16.833 76-22.167 48.5-22.333 17.833-18zM896 511.333v-194.333q-65.333 33-168.333 50t-215.667 17-215.667-17-168.333-50v195q2 7.333 17.833 17.667t48.5 22.333 76 22 107 16.667 134.667 6.667 134.667-6.667 106.833-16.667 75.833-22 48.667-22.5 18-18.167zM512 128q-70.333 0-133.667 6.667t-106.333 16.5-75.833 21.667-49.167 22.333-19 18.167q2.667 7.667 19 18.167t49.167 22.333 75.833 21.667 106.333 16.5 133.667 6.667 133.667-6.667 106.333-16.5 75.833-21.667 49.167-22.333 19-18.167q-2.667-7.667-19-18.167t-49.167-22.333-75.833-21.667-106.333-16.5-133.667-6.667z"],"attrs":[],"isMulticolor":false,"tags":["server"],"defaultCode":57378,"grid":24},"attrs":[],"properties":{"id":22,"order":134,"prevSize":24,"code":57378,"name":"server"},"setIdx":0,"setId":0,"iconIdx":22},{"icon":{"paths":["M753.333 85.333q69.667 0 128.5 34.333t93.167 93.167 34.333 128.5q0 50-19.167 97.167t-55.833 83.833l-422.333 422.333-422.333-422.333q-36.667-36.667-55.833-83.833t-19.167-97.167q0-69.667 34.333-128.5t93.167-93.167 128.5-34.333q50.333 0 97.167 19t83.833 56l60.333 60.333 60.333-60.333q36.667-36.667 83.833-55.833t97.167-19.167zM753.333 170.667q-33.333 0-64.667 12.667t-56 37.333l-120.667 120.667-120.667-120.667q-24.667-24.667-56-37.333t-64.667-12.667q-46.667 0-85.833 22.833t-62 62-22.833 85.833q0 33.333 12.667 64.667t37.333 56l362 362 362-362q24.667-24.667 37.333-56t12.667-64.667q0-46.667-22.833-85.833t-62-62-85.833-22.833z"],"attrs":[],"isMulticolor":false,"tags":["heart"],"defaultCode":57380,"grid":24},"attrs":[],"properties":{"id":24,"order":136,"prevSize":24,"code":57380,"name":"heart"},"setIdx":0,"setId":0,"iconIdx":24},{"icon":{"paths":["M0 298.667l512-256 512 256-512 256zM512 821.667l416-208.333 96 48-512 256.333-512-256.333 96-48zM512 640.333l416-208 96 48-512 256-512-256 96-48zM833.333 298.667l-321.333-160.667-321.333 160.667 321.333 160.667z"],"attrs":[],"isMulticolor":false,"tags":["layers"],"defaultCode":57393,"grid":24},"attrs":[],"properties":{"id":31,"order":133,"prevSize":24,"code":57393,"name":"layers"},"setIdx":0,"setId":0,"iconIdx":31},{"icon":{"paths":["M426.667 42.667q78 0 149.167 30.5t122.5 81.833 81.833 122.5 30.5 149.167q0 67-21.833 128.333t-62.167 111.333l242.333 242q12.333 12.333 12.333 30.333 0 18.333-12.167 30.5t-30.5 12.167q-18 0-30.333-12.333l-242-242.333q-50 40.333-111.333 62.167t-128.333 21.833q-78 0-149.167-30.5t-122.5-81.833-81.833-122.5-30.5-149.167 30.5-149.167 81.833-122.5 122.5-81.833 149.167-30.5zM426.667 128q-60.667 0-116 23.667t-95.333 63.667-63.667 95.333-23.667 116 23.667 116 63.667 95.333 95.333 63.667 116 23.667 116-23.667 95.333-63.667 63.667-95.333 23.667-116-23.667-116-63.667-95.333-95.333-63.667-116-23.667z"],"attrs":[],"isMulticolor":false,"tags":["search"],"defaultCode":57398,"grid":24},"attrs":[],"properties":{"id":36,"order":140,"prevSize":24,"code":57398,"name":"search"},"setIdx":0,"setId":0,"iconIdx":36},{"icon":{"paths":["M240.333 325.667l271.667-271.667 271.667 271.667q55.333 55.333 83.833 126t28.5 145.667q0 75.333-28.5 145.667t-83.833 125.667-126 84-145.667 28.667-145.667-28.667-126-84q-55-55.333-83.667-125.833t-28.667-145.5 28.667-145.667 83.667-126zM723.333 386l-211.333-211.333-211.333 211.333q-42.667 43-65 98t-22.333 113.333 22.167 113.167 65.167 97.833 98 65.333 113.333 22.333q58.667 0 113.5-22.333t97.833-65.333 65.167-97.667 22.167-113.333q0-58.333-22.167-113.333t-65.167-98z"],"attrs":[],"isMulticolor":false,"tags":["drop"],"defaultCode":57443,"grid":24},"attrs":[],"properties":{"id":63,"order":131,"prevSize":24,"code":57443,"name":"drop","ligatures":""},"setIdx":0,"setId":0,"iconIdx":63},{"icon":{"paths":["M512 0q69.667 0 128.5 34.333t93.167 93.167 34.333 128.5v128q0 53.333-20.667 101t-57.667 83q97.333 15.333 173 45.167t118.5 70.5 42.833 85.667v84q0 53-37.5 90.5t-90.5 37.5h-768q-53 0-90.5-37.5t-37.5-90.5v-84.333q0-45 42.833-85.667t118.333-70.5 172.833-44.833q-36.667-35.667-57.333-83.167t-20.667-100.833v-128q0-69.667 34.333-128.5t93.167-93.167 128.5-34.333zM512 640q-92.667 0-178.833 14.833t-150.167 41.5q-25.667 10.667-45.833 22.667t-30.667 21.667-15.833 16.833-5.333 11.5v84.333q0 17.667 12.5 30.167t30.167 12.5h768q17.667 0 30.167-12.5t12.5-30.167v-84q0-4.333-5.333-11.5t-15.833-16.833-30.667-21.667-45.833-23q-64-26.667-150.167-41.5t-178.833-14.833zM512 85.333q-70.667 0-120.667 50t-50 120.667v128q0 70.667 50 120.667t120.667 50 120.667-50 50-120.667v-128q0-70.667-50-120.667t-120.667-50z"],"attrs":[],"isMulticolor":false,"tags":["head"],"defaultCode":57460,"grid":24},"attrs":[],"properties":{"id":74,"order":135,"prevSize":24,"code":57460,"name":"head"},"setIdx":0,"setId":0,"iconIdx":74},{"icon":{"paths":["M298.667 42.667q35.333 0 76 8.833t78.333 21.333l75.333 25t78.333 21.333 76 8.833q36 0 71-4.333t59.667-10.667 44.167-12.667 29.167-10.667l9.333-4.333v597.333q-3.333 1.667-10 4.5t-28.167 10.333-44.833 13-58.833 10.167-71.5 4.667q-35.333 0-76-8.833t-78.333-21.333l-75.333-25t-78.333-21.333-76-8.833q-63.667 0-128 14.333v284.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-853.333q3.333-1.667 10-4.5t28.167-10.333 44.833-13 58.833-10.167 71.5-4.667zM298.667 128q-65.333 0-128 17v422.333q64-12.667 128-12.667 47.333 0 94.667 10.833t107.667 30.833q7.667 2.667 28.833 9.833t31 10.333 28.833 8.667 31.833 8 29.5 4.667 31.667 2.167q65.333 0 128-17v-422.333q-64 12.667-128 12.667-47.333 0-94.667-10.833t-107.667-30.833q-7.667-2.667-28.833-9.833t-31-10.333-28.833-8.667-31.833-8-29.5-4.667-31.667-2.167z"],"attrs":[],"isMulticolor":false,"tags":["flag"],"defaultCode":57608,"grid":24},"attrs":[],"properties":{"id":108,"order":132,"prevSize":24,"code":57608,"name":"flag"},"setIdx":0,"setId":0,"iconIdx":108},{"icon":{"paths":["M170.667 42.667h298.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-298.667q-17.667 0-30.167 12.5t-12.5 30.167v682.667q0 17.667 12.5 30.167t30.167 12.5h682.667q17.667 0 30.167-12.5t12.5-30.167v-298.667q0-17.667 12.5-30.167t30.167-12.5 30.167 12.5 12.5 30.167v298.667q0 53-37.5 90.5t-90.5 37.5h-682.667q-53 0-90.5-37.5t-37.5-90.5v-682.667q0-53 37.5-90.5t90.5-37.5zM682.667 42.667h256q17.667 0 30.167 12.5t12.5 30.167v256q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-153l-354 354q-12.333 12.333-30 12.333-18.333 0-30.5-12.167t-12.167-30.5q0-17.667 12.333-30l354-354h-153q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z"],"attrs":[],"isMulticolor":false,"tags":["open"],"defaultCode":57640,"grid":24},"attrs":[],"properties":{"id":128,"order":139,"prevSize":24,"code":57640,"name":"open"},"setIdx":0,"setId":0,"iconIdx":128}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"autoHost":true,"showSelector":true,"selector":"","showMetrics":true,"showMetadata":true,"showVersion":true},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":4473924,"bgColor":16777215,"classSelector":".icon"},"historySize":100,"showCodes":true,"quickUsageToken":{"UntitledProject":"NGQ3ZDQyOTcwODQxMzQ5NWMwZDZjNDBmNzUxM2JhYTUjMSMxNDIzMTI2NDkyIyMj"},"showLiga":true,"fontHostingName":false}}
--------------------------------------------------------------------------------
/fonts/icon-fifty-shades/icomoon.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-fifty-shades/icomoon.eot
--------------------------------------------------------------------------------
/fonts/icon-fifty-shades/icomoon.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Generated by IcoMoon
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/fonts/icon-fifty-shades/icomoon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-fifty-shades/icomoon.ttf
--------------------------------------------------------------------------------
/fonts/icon-fifty-shades/icomoon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-fifty-shades/icomoon.woff
--------------------------------------------------------------------------------
/fonts/icon-fifty-shades/selection.json:
--------------------------------------------------------------------------------
1 | {"IcoMoonType":"selection","icons":[{"icon":{"paths":["M960 448c-35.376 0-64 28.656-64 64v384h-768v-384c0-35.344-28.624-64-64-64s-64 28.656-64 64v448c0 35.344 28.624 64 64 64h896c35.376 0 64-28.656 64-64v-448c0-35.344-28.624-64-64-64zM448 640c0 35.344 28.624 64 64 64s64-28.656 64-64v-384h192l-256-256-256 256h192v384z"],"attrs":[],"isMulticolor":false,"tags":["out","upload","load","outbox"],"grid":16},"attrs":[],"properties":{"id":1,"order":403,"prevSize":16,"code":58880,"name":"out"},"setIdx":0,"setId":0,"iconIdx":1},{"icon":{"paths":["M1005.376 396.968l-378.218-378.186c-14.434-14.496-33.802-20.088-52.736-18.526h-124.844c-18.932-1.562-38.302 4.030-52.736 18.526l-76.792 76.794-0-95.32h-191.952v287.272l-109.474 109.44c-14.496 14.496-20.056 33.834-18.494 52.736v126.404c0 35.336 28.618 63.986 63.982 63.986h63.984v319.918c0 35.336 28.618 63.984 63.984 63.984h639.84c35.366 0 63.984-28.648 63.984-63.984v-319.916h63.982c35.368 0 63.984-28.65 63.984-63.986v-126.404c1.564-18.904-3.996-38.242-18.494-52.738zM895.904 512.126h-127.968v383.902h-127.966v-255.932h-255.936v255.934h-127.968v-383.904h-127.968v-35.492l348.412-348.412h70.982l348.412 348.412v35.492z"],"attrs":[],"isMulticolor":false,"tags":["home","house","building"],"grid":16},"attrs":[],"properties":{"id":4,"order":394,"prevSize":16,"code":58881,"name":"home"},"setIdx":0,"setId":0,"iconIdx":4},{"icon":{"paths":["M544 0h-64c-194.438 0-352 157.594-352 352 0 136.796 78.018 255.364 192 313.624v38.376c0 35.344 28.624 64 64 64h256c35.376 0 64-28.656 64-64v-38.39c113.964-58.266 192-176.824 192-313.61 0-194.406-157.624-352-352-352zM576 573.714v66.286h-128v-66.286c-108.534-15.532-192-108.866-192-221.714 0-123.718 100.312-224 224-224h64c123.688 0 224 100.282 224 224 0 112.85-83.466 206.184-192 221.714zM416 832h192c17.688 0 32 14.344 32 32s-14.312 32-32 32h-192c-17.688 0-32-14.344-32-32s14.312-32 32-32zM480 960h64c17.688 0 32 14.344 32 32s-14.312 32-32 32h-64c-17.688 0-32-14.344-32-32s14.312-32 32-32z"],"attrs":[],"isMulticolor":false,"tags":["light bulb","idea","bulb"],"grid":16},"attrs":[],"properties":{"id":5,"order":398,"prevSize":16,"code":58882,"name":"lightbulb"},"setIdx":0,"setId":0,"iconIdx":5},{"icon":{"paths":["M866.412 85.244c-35.778-19.724-134.4-68.29-198.738-81.634-66.828-13.876-166.26 247.054-197.87 248.206-51.27 1.834-6.222-178.144 42.498-251.816-76.038 50.774-211.122 118.94-242.73 197.34-61.104 151.512 113.244 424.172 20.222 439.852-28.996 4.884-109.326-188.038-130.17-246.898-58.926 112.624-14.56 218.058 34.16 349.786v8.18c-1.868 7.124-3.484 13.94-5.166 20.876h5.166v191.148c0 35.218 28.498 63.716 63.714 63.716 35.218 0 63.716-28.498 63.716-63.716v-191.148-2.022c118.908-13.378 174.846 25.604 256.294-128.832-49.714 20.562-148.96-42.094-128.366-71.682 41.378-59.546 210.562 3.362 318.394-179.668-170.678 45.484-190.838-19.724-192.456-43.494-3.422-49.216 170.616-23.146 249.95-91.56 45.988-39.668 101.116-133.656 41.382-166.634z"],"attrs":[],"isMulticolor":false,"tags":["feather","quill","write","blog"],"grid":16},"attrs":[],"properties":{"id":7,"order":402,"prevSize":16,"code":58883,"name":"feather"},"setIdx":0,"setId":0,"iconIdx":7},{"icon":{"paths":["M995.828 995.826c-37.566 37.564-98.45 37.564-136.016 0l-169.726-169.726c-69.776 44.764-152.26 71.434-241.318 71.434-247.83 0-448.768-200.908-448.768-448.768s200.938-448.766 448.768-448.766c247.862 0 448.768 200.904 448.768 448.766 0 89.028-26.704 171.542-71.436 241.352l169.728 169.726c37.562 37.564 37.562 98.418 0 135.982zM448.768 128.218c-177.022 0-320.548 143.494-320.548 320.546s143.526 320.548 320.548 320.548c177.052 0 320.548-143.496 320.548-320.548s-143.496-320.546-320.548-320.546z"],"attrs":[],"isMulticolor":false,"tags":["search","find","lookup","magnifier"],"grid":16},"attrs":[],"properties":{"id":10,"order":395,"prevSize":16,"code":58884,"name":"search"},"setIdx":0,"setId":0,"iconIdx":10},{"icon":{"paths":["M512 192l-384-192h-64c-35.376 0-64 28.656-64 64v704c0 35.376 28.624 64 64 64l448 192 448-192c35.376 0 64-28.624 64-64v-704c0-35.344-28.624-64-64-64h-64M448 864l-320-160v-512l320 106.656v565.344zM896 704l-320 160v-565.344l320-106.656v512z"],"attrs":[],"isMulticolor":false,"tags":["book","read","bookmark"],"grid":16},"attrs":[],"properties":{"id":20,"order":401,"prevSize":16,"code":58885,"name":"book"},"setIdx":0,"setId":0,"iconIdx":20},{"icon":{"paths":["M960 1024h-896c-35.344 0-64-28.624-64-64v-896c0-35.376 28.656-64 64-64h640l-128 128h-448v768h768v-448l128-128v640c0 35.376-28.656 64-64 64zM256 768v-192l576-576h64l128 128v64l-576 576h-192zM544 544l352-352-64-64-352 352 64 64zM384 576l-64 64v64h64l64-64-64-64z"],"attrs":[],"isMulticolor":false,"tags":["compose","write","blog","edit"],"grid":16},"attrs":[],"properties":{"id":34,"order":397,"prevSize":16,"code":58886,"name":"compose"},"setIdx":0,"setId":0,"iconIdx":34},{"icon":{"paths":["M384 576h-320c-35.376 0-64 28.624-64 64v320c0 35.376 28.624 64 64 64h320c35.376 0 64-28.624 64-64v-320c0-35.376-28.624-64-64-64zM320 896h-192v-192h192v192zM384 0h-320c-35.376 0-64 28.624-64 64v320c0 35.376 28.624 64 64 64h320c35.376 0 64-28.624 64-64v-320c0-35.376-28.624-64-64-64zM320 320h-192v-192h192v192zM960 576h-320c-35.376 0-64 28.624-64 64v320c0 35.376 28.624 64 64 64h320c35.376 0 64-28.624 64-64v-320c0-35.376-28.624-64-64-64zM896 896h-192v-192h192v192zM960 0h-320c-35.376 0-64 28.624-64 64v320c0 35.376 28.624 64 64 64h320c35.376 0 64-28.624 64-64v-320c0-35.376-28.624-64-64-64zM896 320h-192v-192h192v192z"],"attrs":[],"isMulticolor":false,"tags":["grid","apps","squares","blocks"],"grid":16},"attrs":[],"properties":{"id":42,"order":400,"prevSize":16,"code":58887,"name":"grid"},"setIdx":0,"setId":0,"iconIdx":42},{"icon":{"paths":["M763.688 490.812c2.374-13.936 4.312-28.124 4.312-42.812v-192c0-141.376-114.624-256-256-256s-256 114.624-256 256v192c0 14.688 1.938 28.876 4.312 42.812-154.874 55-260.312 157.938-260.312 277.188v192c0 35.376 28.624 64 64 64h896c35.376 0 64-28.624 64-64v-192c0-119.25-105.438-222.188-260.312-277.188zM384 256c0-70.688 57.312-128 128-128s128 57.312 128 128v192c0 70.688-57.312 128-128 128s-128-57.312-128-128v-192zM896 896h-768v-128c0-69.124 73.624-129.188 183.188-163 46.874 59.876 118.936 99 200.812 99s153.938-39.124 200.812-99c109.564 33.812 183.188 93.876 183.188 163v128z"],"attrs":[],"isMulticolor":false,"tags":["user","profile","avatar"],"grid":16},"attrs":[],"properties":{"id":55,"order":396,"prevSize":16,"code":58888,"name":"user"},"setIdx":0,"setId":0,"iconIdx":55},{"icon":{"paths":["M1024 384c0 283.938-512 640-512 640s-512-356.062-512-640c-0.562-28.312 2.376-60.062 0-96-10.562-158.688 128.938-288 288-288 91.062 0 171.25 62.062 224 128 52.75-65.938 132.938-128 224-128 159.062 0 298.562 129.312 288 288-2.376 35.938 0.562 67.688 0 96zM896 288c7.938-88-71.624-160-160-160-165.812 0-160 128-160 128 0 35.376-28.624 64-64 64s-64-28.624-64-64c0 0 5.812-128-160-128-88.376 0-167.938 72-160 160 3.25 36.124-2.062 69.25 0.876 96-0.062 0-0.75 0-0.876 0 4-0.938-22 188.562 383.25 478.438 0.312-0.188 0.5-0.376 0.75-0.562 0.25 0.188 0.438 0.376 0.75 0.562 405.25-289.876 379.25-479.376 383.25-478.438-0.124 0-0.812 0-0.876 0 2.938-26.75-2.374-59.876 0.876-96z"],"attrs":[],"isMulticolor":false,"tags":["heart","love","like","favorite"],"grid":16},"attrs":[],"properties":{"id":57,"order":399,"prevSize":16,"code":58889,"name":"heart"},"setIdx":0,"setId":0,"iconIdx":57}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"autoHost":true,"showSelector":true,"selector":"","showMetrics":true,"showMetadata":true,"showVersion":true},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":4473924,"bgColor":16777215,"classSelector":".icon"},"historySize":100,"showCodes":true,"quickUsageToken":{"UntitledProject":"NGQ3ZDQyOTcwODQxMzQ5NWMwZDZjNDBmNzUxM2JhYTUjMSMxNDIzMTI2NDkyIyMj"},"showLiga":true,"fontHostingName":false}}
--------------------------------------------------------------------------------
/fonts/icon-icomoon/icomoon.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-icomoon/icomoon.eot
--------------------------------------------------------------------------------
/fonts/icon-icomoon/icomoon.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Generated by IcoMoon
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/fonts/icon-icomoon/icomoon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-icomoon/icomoon.ttf
--------------------------------------------------------------------------------
/fonts/icon-icomoon/icomoon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-icomoon/icomoon.woff
--------------------------------------------------------------------------------
/fonts/icon-linecons/icomoon.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-linecons/icomoon.eot
--------------------------------------------------------------------------------
/fonts/icon-linecons/icomoon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-linecons/icomoon.ttf
--------------------------------------------------------------------------------
/fonts/icon-linecons/icomoon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zgq354/typecho-theme-next/651c2a105be2e1e23b33335524f0e406970d2ce7/fonts/icon-linecons/icomoon.woff
--------------------------------------------------------------------------------
/footer.php:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 | is('post')): ?>
42 |
43 |
44 |
45 |
46 | is('page','archive')||$this->is('archive')): ?>
47 |
50 |
51 |
52 |
53 |
61 |
62 |
63 | options->next_comments)): ?>
64 |
65 |
76 |
77 |
78 |
79 | footer(); ?>
80 |