hexo-theme-shokax 0.0.2-alpha2 → 0.0.2-alpha3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (157) hide show
  1. package/CODE_OF_CONDUCT.md +128 -0
  2. package/CONTRIBUTING.md +56 -0
  3. package/LICENSE +28 -28
  4. package/LICENSE-shoka +21 -21
  5. package/README.md +46 -55
  6. package/README_en.MD +25 -0
  7. package/_config.yml +392 -355
  8. package/_images.yml +100 -100
  9. package/languages/README.md +19 -19
  10. package/languages/default.yml +1 -1
  11. package/languages/en.yml +151 -151
  12. package/languages/ja.yml +146 -146
  13. package/languages/zh-CN.yml +154 -154
  14. package/languages/zh-HK.yml +146 -146
  15. package/languages/zh-TW.yml +146 -146
  16. package/layout/_alternate/atom.ejs +30 -30
  17. package/layout/_alternate/json.ejs +16 -16
  18. package/layout/_alternate/rss.ejs +34 -34
  19. package/layout/_mixin/breadcrumb.pug +33 -33
  20. package/layout/_mixin/card.pug +37 -37
  21. package/layout/_mixin/comment.pug +66 -12
  22. package/layout/_mixin/postmeta.pug +30 -30
  23. package/layout/_mixin/segment.pug +32 -32
  24. package/layout/_mixin/sidebar.pug +36 -36
  25. package/layout/_mixin/widgets.pug +31 -29
  26. package/layout/_partials/footer.pug +40 -40
  27. package/layout/_partials/head/head.pug +51 -58
  28. package/layout/_partials/head/head_com.pug +17 -17
  29. package/layout/_partials/head/pwa.pug +18 -18
  30. package/layout/_partials/header.pug +18 -18
  31. package/layout/_partials/layout.pug +143 -153
  32. package/layout/_partials/loading.pug +13 -13
  33. package/layout/_partials/pagination.pug +4 -4
  34. package/layout/_partials/post/copyright.pug +20 -20
  35. package/layout/_partials/post/footer.pug +14 -14
  36. package/layout/_partials/post/nav.pug +13 -13
  37. package/layout/_partials/post/post.pug +28 -28
  38. package/layout/_partials/post/reward.pug +18 -18
  39. package/layout/_partials/sidebar/menu.pug +37 -37
  40. package/layout/_partials/sidebar/overview.pug +41 -42
  41. package/layout/_partials/third-party/baidu-analytics.pug +11 -11
  42. package/layout/_partials/third-party/clarity.pug +8 -8
  43. package/layout/archive.pug +118 -118
  44. package/layout/category.pug +63 -63
  45. package/layout/index.pug +33 -33
  46. package/layout/page.pug +56 -56
  47. package/layout/post.pug +35 -35
  48. package/layout/tag.pug +43 -43
  49. package/package.json +35 -35
  50. package/scripts/filters/locals.js +59 -59
  51. package/scripts/filters/post.js +23 -23
  52. package/scripts/generaters/archive.js +141 -141
  53. package/scripts/generaters/config.js +43 -43
  54. package/scripts/generaters/images.js +26 -26
  55. package/scripts/generaters/index.js +110 -110
  56. package/scripts/generaters/pages.js +19 -19
  57. package/scripts/generaters/script.js +89 -89
  58. package/scripts/helpers/asset.js +183 -237
  59. package/scripts/helpers/engine.js +190 -190
  60. package/scripts/helpers/list_categories.js +140 -140
  61. package/scripts/helpers/symbols_count_time.js +76 -76
  62. package/scripts/plugin/index.js +6 -6
  63. package/scripts/plugin/lib/injects-point.js +19 -19
  64. package/scripts/plugin/lib/injects.js +89 -88
  65. package/scripts/tags/links.js +86 -86
  66. package/scripts/tags/media.js +19 -19
  67. package/source/assets/algolia_logo.svg +9 -9
  68. package/source/assets/logo.svg +16 -16
  69. package/source/css/_colors.styl +207 -207
  70. package/source/css/_common/components/components.styl +6 -6
  71. package/source/css/_common/components/highlight/highlight.styl +353 -353
  72. package/source/css/_common/components/highlight/operation.styl +21 -21
  73. package/source/css/_common/components/pages/collapse.styl +119 -119
  74. package/source/css/_common/components/pages/home.styl +385 -385
  75. package/source/css/_common/components/pages/pages.styl +56 -56
  76. package/source/css/_common/components/pages/tag-cloud.styl +12 -12
  77. package/source/css/_common/components/post/breadcrumb.styl +39 -39
  78. package/source/css/_common/components/post/copyright.styl +41 -41
  79. package/source/css/_common/components/post/expand.styl +264 -264
  80. package/source/css/_common/components/post/footer.styl +11 -11
  81. package/source/css/_common/components/post/header.styl +79 -79
  82. package/source/css/_common/components/post/nav.styl +63 -63
  83. package/source/css/_common/components/post/post.styl +29 -29
  84. package/source/css/_common/components/post/reward.styl +50 -50
  85. package/source/css/_common/components/post/rtl.styl +12 -12
  86. package/source/css/_common/components/post/tags.styl +39 -39
  87. package/source/css/_common/components/tags/collapse.styl +72 -72
  88. package/source/css/_common/components/tags/container.styl +49 -49
  89. package/source/css/_common/components/tags/label.styl +12 -12
  90. package/source/css/_common/components/tags/links.styl +77 -77
  91. package/source/css/_common/components/tags/list.styl +131 -131
  92. package/source/css/_common/components/tags/note.styl +70 -70
  93. package/source/css/_common/components/tags/player.styl +361 -361
  94. package/source/css/_common/components/tags/quiz.styl +200 -200
  95. package/source/css/_common/components/tags/tabs.styl +83 -83
  96. package/source/css/_common/components/tags/tags.styl +9 -9
  97. package/source/css/_common/components/third-party/loading.styl +222 -222
  98. package/source/css/_common/components/third-party/mermaid/class.styl +90 -90
  99. package/source/css/_common/components/third-party/mermaid/flowchart.styl +72 -72
  100. package/source/css/_common/components/third-party/mermaid/gantt.styl +251 -251
  101. package/source/css/_common/components/third-party/mermaid/git.styl +7 -7
  102. package/source/css/_common/components/third-party/mermaid/mermaid.styl +37 -37
  103. package/source/css/_common/components/third-party/mermaid/pie.styl +9 -9
  104. package/source/css/_common/components/third-party/mermaid/sequence.styl +95 -95
  105. package/source/css/_common/components/third-party/mermaid/state.styl +130 -130
  106. package/source/css/_common/components/third-party/pace.styl +18 -18
  107. package/source/css/_common/components/third-party/search.styl +167 -167
  108. package/source/css/_common/components/third-party/theme.styl +151 -151
  109. package/source/css/_common/components/third-party/third-party.styl +22 -22
  110. package/source/css/_common/components/third-party/valine.styl +548 -548
  111. package/source/css/_common/components/third-party/widgets.styl +57 -57
  112. package/source/css/_common/outline/footer/footer.styl +69 -69
  113. package/source/css/_common/outline/header/brand.styl +77 -77
  114. package/source/css/_common/outline/header/header.styl +20 -20
  115. package/source/css/_common/outline/header/image.styl +79 -79
  116. package/source/css/_common/outline/header/menu.styl +117 -117
  117. package/source/css/_common/outline/header/nav.styl +81 -81
  118. package/source/css/_common/outline/header/right.styl +15 -15
  119. package/source/css/_common/outline/header/tool.styl +207 -207
  120. package/source/css/_common/outline/header/waves.styl +50 -50
  121. package/source/css/_common/outline/mobile.styl +46 -46
  122. package/source/css/_common/outline/outline.styl +78 -78
  123. package/source/css/_common/outline/sidebar/author.styl +59 -59
  124. package/source/css/_common/outline/sidebar/dimmer.styl +23 -23
  125. package/source/css/_common/outline/sidebar/menu.styl +63 -63
  126. package/source/css/_common/outline/sidebar/quick.styl +43 -43
  127. package/source/css/_common/outline/sidebar/related.styl +56 -56
  128. package/source/css/_common/outline/sidebar/sidebar.styl +75 -75
  129. package/source/css/_common/outline/sidebar/social.styl +69 -69
  130. package/source/css/_common/outline/sidebar/state.styl +37 -37
  131. package/source/css/_common/outline/sidebar/tab.styl +71 -71
  132. package/source/css/_common/outline/sidebar/toc.styl +47 -47
  133. package/source/css/_common/scaffolding/animate.styl +318 -318
  134. package/source/css/_common/scaffolding/base.styl +172 -172
  135. package/source/css/_common/scaffolding/buttons.styl +48 -48
  136. package/source/css/_common/scaffolding/divider.styl +36 -36
  137. package/source/css/_common/scaffolding/iconfont.styl +443 -443
  138. package/source/css/_common/scaffolding/normalize.styl +289 -289
  139. package/source/css/_common/scaffolding/pagination.styl +81 -81
  140. package/source/css/_common/scaffolding/ribbon.styl +38 -38
  141. package/source/css/_common/scaffolding/scaffolding.styl +14 -14
  142. package/source/css/_common/scaffolding/scrollbar.styl +37 -37
  143. package/source/css/_common/scaffolding/tables.styl +50 -50
  144. package/source/css/_common/scaffolding/tip.styl +19 -19
  145. package/source/css/_common/scaffolding/toggles.styl +59 -59
  146. package/source/css/_iconfont.styl +451 -451
  147. package/source/css/_mixins.styl +146 -146
  148. package/source/css/_variables.styl +89 -89
  149. package/source/css/app.styl +36 -36
  150. package/source/css/comment.styl +5 -5
  151. package/source/css/mermaid.styl +5 -5
  152. package/source/js/_app/components.js +330 -330
  153. package/source/js/_app/global.js +317 -317
  154. package/source/js/_app/library.js +302 -302
  155. package/source/js/_app/page.js +623 -623
  156. package/source/js/_app/player.js +748 -748
  157. package/source/js/_app/vue.js +43 -43
@@ -1,13 +1,13 @@
1
- mixin navpost(item, type)
2
- - var postText = item.title || item.link || __('post.untitled')
3
- - var lastcat = item.categories.last()
4
- - var itemlink=`<span class="type">${__('post.' + type)}</span><span class="category"><i class="ic i-flag"></i>${lastcat?.name}</span><h3>${ postText }</h3>`
5
- != _url(item.path, itemlink, {itemprop: 'url', rel: type, 'data-background-image': _cover(item), title: postText})
6
-
7
- div(class="post-nav")
8
- div(class="item left")
9
- if post.next
10
- +navpost(post.next, 'prev')
11
- div(class="item right")
12
- if post.prev
13
- +navpost(post.prev, 'next')
1
+ mixin navpost(item, type)
2
+ - var postText = item.title || item.link || __('post.untitled')
3
+ - var lastcat = item.categories.last()
4
+ - var itemlink=`<span class="type">${__('post.' + type)}</span><span class="category"><i class="ic i-flag"></i>${lastcat?.name}</span><h3>${ postText }</h3>`
5
+ != _url(item.path, itemlink, {itemprop: 'url', rel: type, 'data-background-image': _cover(item), title: postText})
6
+
7
+ div(class="post-nav")
8
+ div(class="item left")
9
+ if post.next
10
+ +navpost(post.next, 'prev')
11
+ div(class="item right")
12
+ if post.prev
13
+ +navpost(post.prev, 'next')
@@ -1,28 +1,28 @@
1
- - var temp = post.lang || config.language
2
- article(itemscope itemtype="http://schema.org/Article" class="post block" lang=temp)
3
- link(itemprop="mainEntityOfPage" href!=post.permalink)
4
- span(hidden itemprop="author" itemscope itemtype="http://schema.org/Person")
5
- meta(itemprop="image" content=url_for(theme.statics + theme.images + '/' + theme.sidebar.avatar))
6
- meta(itemprop="name" content=author)
7
- meta(itemprop="description" content=`${ subtitle }, ${ description }`)
8
- span(hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization")
9
- meta(itemprop="name" content=title)
10
- div(class=`body md${post.direction && post.direction.toLowerCase() === 'rtl'? rtl:""}` itemprop="articleBody")
11
- if post.photos && post.photos.length
12
- div(class="gallery" itemscope itemtype="http://schema.org/ImageGallery")
13
- each photo in post.photos
14
- img(data-src=_image_url(photo, post.path) itemprop="contentUrl")
15
- != post.content
16
- if post.tags && post.tags.length
17
- div(class="tags")
18
- each tag in post.tags.toArray()
19
- a(href!=url_for(tag.path) rel="tag")
20
- i(class="ic i-tag")
21
- != tag.name
22
- footer
23
- != partial('_partials/post/footer.pug')
24
- if theme.reward.enable
25
- != partial('_partials/post/reward.pug', {}, {cache: true})
26
- if theme.creative_commons.license
27
- != partial('_partials/post/copyright.pug')
28
- != shokax_inject('postBodyEnd')
1
+ - var temp = post.lang || config.language
2
+ article(itemscope itemtype="http://schema.org/Article" class="post block" lang=temp)
3
+ link(itemprop="mainEntityOfPage" href!=post.permalink)
4
+ span(hidden itemprop="author" itemscope itemtype="http://schema.org/Person")
5
+ meta(itemprop="image" content=url_for(theme.statics + theme.images + '/' + theme.sidebar.avatar))
6
+ meta(itemprop="name" content=author)
7
+ meta(itemprop="description" content=`${ subtitle }, ${ description }`)
8
+ span(hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization")
9
+ meta(itemprop="name" content=title)
10
+ div(class=`body md${post.direction && post.direction.toLowerCase() === 'rtl'? rtl:""}` itemprop="articleBody")
11
+ if post.photos && post.photos.length
12
+ div(class="gallery" itemscope itemtype="http://schema.org/ImageGallery")
13
+ each photo in post.photos
14
+ img(data-src=_image_url(photo, post.path) itemprop="contentUrl")
15
+ != post.content
16
+ if post.tags && post.tags.length
17
+ div(class="tags")
18
+ each tag in post.tags.toArray()
19
+ a(href!=url_for(tag.path) rel="tag")
20
+ i(class="ic i-tag")
21
+ != tag.name
22
+ footer
23
+ != partial('_partials/post/footer.pug')
24
+ if theme.reward.enable
25
+ != partial('_partials/post/reward.pug', {}, {cache: true})
26
+ if theme.creative_commons.license
27
+ != partial('_partials/post/copyright.pug')
28
+ != shokax_inject('postBodyEnd')
@@ -1,18 +1,18 @@
1
- if page.reward !== false
2
- div(class="reward")
3
- button
4
- i(class="ic i-heartbeat")
5
- != __('reward.donate')
6
- p
7
- != __('reward.text')
8
- div(id="qr")
9
- each name, image in theme.reward.account
10
- - var builtin = ['wechatpay', 'alipay', 'paypal', 'bitcoin']
11
- if builtin.includes(name)
12
- - var translation = __('reward.' + name)
13
- else
14
- - var translation = name
15
- div
16
- img(data-src=`${url_for(theme.statics + theme.images + image) }` alt=`${ author } ${ translation }`)
17
- p
18
- != translation
1
+ if page.reward !== false
2
+ div(class="reward")
3
+ button
4
+ i(class="ic i-heartbeat")
5
+ != __('reward.donate')
6
+ p
7
+ != __('reward.text')
8
+ div(id="qr")
9
+ each name, image in theme.reward.account
10
+ - var builtin = ['wechatpay', 'alipay', 'paypal', 'bitcoin']
11
+ if builtin.includes(name)
12
+ - var translation = __('reward.' + name)
13
+ else
14
+ - var translation = name
15
+ div
16
+ img(data-src=`${url_for(theme.statics + theme.images + image) }` alt=`${ author } ${ translation }`)
17
+ p
18
+ != translation
@@ -1,37 +1,37 @@
1
- mixin item(name, path, parent, dropdown, sublist)
2
- - var trimn = (str)=>{if (str!=null) return str.trim(); else return ""}
3
- - var path = path.split('||')
4
- - var itemURL = path[0].trim()
5
- - if (!itemURL.startsWith('http')){ itemURL = itemURL.replace('//', '/') }
6
- - var menuIcon = '<i class="ic i-' + trimn(path[1]) + '"></i>'
7
- - var menuText = __('menu.' + name).replace('menu.', '')
8
- if parent
9
- li(class="item dropdown")
10
- if itemURL == '/'
11
- a(href="javascript:void(0);")
12
- != menuIcon + menuText
13
- else
14
- != _url(itemURL, menuIcon + menuText, {rel: 'section'})
15
- if dropdown
16
- ul(class="submenu")
17
- each subvalue, subname in sublist
18
- - var path = subvalue.split('||')
19
- - var itemURL = path[0].trim()
20
- - if (itemURL==='/') itemURL='javascript:void(0)'
21
- - var menuText = __('menu.' + subname).replace('menu.', '')
22
- if subname == 'default'
23
- - var menuText = __('menu.' + name).replace('menu.', '')
24
- - var menuIcon = '<i class="ic i-' + trimn(path[1]) + '"></i>'
25
- li(class="item")
26
- != _url(itemURL, menuIcon + menuText, {rel: 'section'})
27
- else
28
- li(class="item")
29
- != _url(itemURL, menuIcon + menuText, {rel: 'section'})
30
-
31
- each value, name in theme.menu
32
- if value == '[object Object]'
33
- each subvalue, subname in value
34
- if subname == 'default'
35
- +item(name, subvalue, true, true, value)
36
- else
37
- +item(name, value)
1
+ mixin item(name, path, parent, dropdown, sublist)
2
+ - var trimn = (str)=>{if (str!=null) return str.trim(); else return ""}
3
+ - var path = path.split('||')
4
+ - var itemURL = path[0].trim()
5
+ - if (!itemURL.startsWith('http')){ itemURL = itemURL.replace('//', '/') }
6
+ - var menuIcon = '<i class="ic i-' + trimn(path[1]) + '"></i>'
7
+ - var menuText = __('menu.' + name).replace('menu.', '')
8
+ if parent
9
+ li(class="item dropdown")
10
+ if itemURL == '/'
11
+ a(href="javascript:void(0);")
12
+ != menuIcon + menuText
13
+ else
14
+ != _url(itemURL, menuIcon + menuText, {rel: 'section'})
15
+ if dropdown
16
+ ul(class="submenu")
17
+ each subvalue, subname in sublist
18
+ - var path = subvalue.split('||')
19
+ - var itemURL = path[0].trim()
20
+ - if (itemURL==='/') itemURL='javascript:void(0)'
21
+ - var menuText = __('menu.' + subname).replace('menu.', '')
22
+ if subname == 'default'
23
+ - var menuText = __('menu.' + name).replace('menu.', '')
24
+ - var menuIcon = '<i class="ic i-' + trimn(path[1]) + '"></i>'
25
+ li(class="item")
26
+ != _url(itemURL, menuIcon + menuText, {rel: 'section'})
27
+ else
28
+ li(class="item")
29
+ != _url(itemURL, menuIcon + menuText, {rel: 'section'})
30
+
31
+ each value, name in theme.menu
32
+ if value == '[object Object]'
33
+ each subvalue, subname in value
34
+ if subname == 'default'
35
+ +item(name, subvalue, true, true, value)
36
+ else
37
+ +item(name, value)
@@ -1,42 +1,41 @@
1
- div(class="author" itemprop="author" itemscope itemtype="http://schema.org/Person")
2
- img(class="image" itemprop="image" alt=author
3
- data-src=url_for(theme.statics + theme.assets + '/'+ theme.sidebar.avatar))
4
- p(class="name" itemprop="name")
5
- != author
6
- div(class="description" itemprop="description")
7
- != description
8
-
9
- nav(class="state")
10
- if config.archive_dir !== '/' && site.posts.length > 0
11
- div(class="item posts")
12
- a(href=url_for(config.archive_dir + '/'))
13
- span(class="count")
14
- != site.posts.length
15
- span(class="name")
16
- != __('state.posts')
17
- if config.category_dir !== '/' && site.categories.length > 0
18
- div(class="item categories")
19
- a(href=url_for(config.category_dir + '/'))
20
- span(class="count")
21
- != site.categories.length
22
- span(class="name")
23
- != __('state.categories')
24
- if config.tag_dir !== '/' && site.tags.length > 0
25
- div(class="item tags")
26
- a(href=url_for(config.tag_dir + '/'))
27
- span(class="count")
28
- != site.tags.length
29
- span(class="name")
30
- != __('state.tags')
31
-
32
- div(class="social")
33
- each link, name in theme.social
34
- - var sidebarURL = link.split('||')[0].trim()
35
- - var sidebarIcon = '<i class="ic i-' + link.split('||')[1].trim() + '"></i>'
36
- != _url(sidebarURL, sidebarIcon, {title: sidebarURL, class: 'item ' + name})
37
-
38
- != shokax_inject('sidebar')
39
-
40
- div(class="menu")
41
- //!= partial('_partials/sidebar/menu.pug', {}, {cache: true})
42
- != partial('_partials/sidebar/menu.pug')
1
+ div(class="author" itemprop="author" itemscope itemtype="http://schema.org/Person")
2
+ img(class="image" itemprop="image" alt=author
3
+ data-src=url_for(theme.statics + theme.assets + '/'+ theme.sidebar.avatar))
4
+ p(class="name" itemprop="name")
5
+ != author
6
+ div(class="description" itemprop="description")
7
+ != description
8
+
9
+ nav(class="state")
10
+ if config.archive_dir !== '/' && site.posts.length > 0
11
+ div(class="item posts")
12
+ a(href=url_for(config.archive_dir + '/'))
13
+ span(class="count")
14
+ != site.posts.length
15
+ span(class="name")
16
+ != __('state.posts')
17
+ if config.category_dir !== '/' && site.categories.length > 0
18
+ div(class="item categories")
19
+ a(href=url_for(config.category_dir + '/'))
20
+ span(class="count")
21
+ != site.categories.length
22
+ span(class="name")
23
+ != __('state.categories')
24
+ if config.tag_dir !== '/' && site.tags.length > 0
25
+ div(class="item tags")
26
+ a(href=url_for(config.tag_dir + '/'))
27
+ span(class="count")
28
+ != site.tags.length
29
+ span(class="name")
30
+ != __('state.tags')
31
+
32
+ div(class="social")
33
+ each link, name in theme.social
34
+ - var sidebarURL = link.split('||')[0].trim()
35
+ - var sidebarIcon = '<i class="ic i-' + link.split('||')[1].trim() + '"></i>'
36
+ != _url(sidebarURL, sidebarIcon, {title: sidebarURL, class: 'item ' + name})
37
+
38
+ != shokax_inject('sidebar')
39
+
40
+ div(class="menu")
41
+ != partial('_partials/sidebar/menu.pug')
@@ -1,11 +1,11 @@
1
- - var hmSrc = `https://hm.baidu.com/hm.js?${ theme.visitor.baiduAnalytics }`
2
- if theme.visitor.baiduAnalytics
3
- script(data-pjax=true).
4
- var _hmt = _hmt || [];
5
- (function () {
6
- const hm = document.createElement("script");
7
- hm.src = "#{hmSrc}"
8
- hm.async = true;
9
- const s = document.getElementsByTagName("script")[0];
10
- s.parentNode.insertBefore(hm, s);
11
- })();
1
+ - var hmSrc = `https://hm.baidu.com/hm.js?${ theme.visitor.baiduAnalytics }`
2
+ if theme.visitor.baiduAnalytics
3
+ script(data-pjax=true).
4
+ var _hmt = _hmt || [];
5
+ (function () {
6
+ const hm = document.createElement("script");
7
+ hm.src = "#{hmSrc}"
8
+ hm.async = true;
9
+ const s = document.getElementsByTagName("script")[0];
10
+ s.parentNode.insertBefore(hm, s);
11
+ })();
@@ -1,8 +1,8 @@
1
- - var code = theme?.visitor?.clarity
2
- if code
3
- script.
4
- (function(c,l,a,r,i,t,y){
5
- c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
6
- t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
7
- y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
8
- })(window, document, "clarity", "script", "#{code}");
1
+ - var code = theme?.visitor?.clarity
2
+ if code
3
+ script.
4
+ (function(c,l,a,r,i,t,y){
5
+ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
6
+ t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
7
+ y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
8
+ })(window, document, "clarity", "script", "#{code}");
@@ -1,118 +1,118 @@
1
- extends _partials/layout.pug
2
-
3
- block title
4
- if is_month()
5
- != `${page.year}${__('symbol.year')}/${page.month}${__('symbol.month')}`
6
- else if is_year()
7
- != `${page.year}${__('symbol.year')}`
8
- != `${__('title.archive')}|`
9
-
10
- block header
11
- h1(itemprop="name headline")
12
- if is_month()
13
- != _p('title.archive_in', page.year + __('symbol.year') + page.month + __('symbol.month'))
14
- else if is_year()
15
- != _p('title.archive_in', page.year + __('symbol.year'))
16
- else
17
- != __('title.archive')
18
-
19
- block content
20
- div(class="collapse wrap")
21
- h2(class="item header")
22
- if is_month()
23
- a(href=url_for(config.archive_dir))
24
- != __('title.all')
25
- small /
26
- a(href=url_for(config.archive_dir + '/' + page.year ))
27
- != `${page.year} ${__('symbol.year')}`
28
- small /
29
- != `${page.month}${__('symbol.month')}`
30
- small
31
- != __('title.archive')
32
- else if is_year()
33
- a(href=url_for(config.archive_dir))
34
- != __('title.all')
35
- small /
36
- != page.year + __('symbol.year')
37
- small
38
- != __('title.archive')
39
- else
40
- a(href=url_for(site.path))
41
- != __('menu.home')
42
- small /
43
- - var posts_length = site.posts.length,cheers
44
- if posts_length > 210
45
- - cheers = 'excellent'
46
- else if posts_length > 130
47
- - cheers = 'great'
48
- else if posts_length > 80
49
- - cheers = 'good'
50
- else if posts_length > 50
51
- - cheers = 'nice'
52
- else if posts_length > 30
53
- - cheers = 'ok'
54
- else
55
- - cheers = 'um'
56
- != _p('counter.archive_posts', site.posts.length)
57
- small(class="cheers")
58
- != __('cheers.' + cheers)
59
- != ' '
60
- != __('keep_on')
61
-
62
- - var current_year = '1970'
63
- - var current_month = '01'
64
- - var count_post = 1
65
- each post in page.posts.toArray()
66
- - var year = date(post.date, 'YYYY')
67
- - var month = date(post.date, 'MM')
68
- if !is_year()
69
- if year !== current_year || month !== current_month
70
- if current_year !== '1970'
71
- small (#{count_post})
72
- </h3>
73
- <h3 class="item section">
74
- a(href=url_for(config.archive_dir + '/' + year )) #{year} #{__('symbol.year')}
75
- small /
76
- a(href=url_for(config.archive_dir + '/' + year + '/' + month)) #{ month } #{__('symbol.month')}
77
- - current_year = year
78
- - current_month = month
79
- - count_post = 1
80
- else
81
- - count_post = count_post + 1
82
- else
83
- if year !== current_year && !is_year()
84
- - current_year = year
85
- h3(class="item section")
86
- a(href=url_for(config.archive_dir + '/' + year )) #{ year } #{__('symbol.year')}
87
- if month !== current_month && is_year() && !is_month()
88
- - current_month = month
89
- h3(class="item section")
90
- a(href=url_for(config.archive_dir + '/' + year + '/' + month)) #{ month } #{__('symbol.month')}
91
- article(class="item normal" itemscope itemtype="http://schema.org/Article")
92
- div(class="meta")
93
- time(
94
- itemprop="dateCreated"
95
- datetime=moment(post.date).format()
96
- content=date(post.date, config.date_format)
97
- ) #{date(post.date, 'MM-DD')}
98
- if post.categories && post.categories.length
99
- - var cat_length = post.categories.length
100
- each cat,index in post.categories.toArray()
101
- if index == cat_length && cat.name !== page.category
102
- span
103
- a(href=url_for(cat.path)) #{cat.name}
104
- div(class="title")
105
- if post.link
106
- - var postTitleIcon = '<i class="ic i-link-alt"></i>'
107
- - var postText = post.title || post.link
108
- != _url(post.link, postText + postTitleIcon, {class: 'external', itemprop: 'url'})
109
- else
110
- - var postTitle = post.title || __('post.untitled')
111
- a(href=url_for(post.path) itemprop="url")
112
- span(itemprop="name") #{postTitle}
113
- if !is_year()
114
- small (#{count_post})
115
- </h3>
116
-
117
- include _partials/pagination.pug
118
-
1
+ extends _partials/layout.pug
2
+
3
+ block title
4
+ if is_month()
5
+ != `${page.year}${__('symbol.year')}/${page.month}${__('symbol.month')}`
6
+ else if is_year()
7
+ != `${page.year}${__('symbol.year')}`
8
+ != `${__('title.archive')}|`
9
+
10
+ block header
11
+ h1(itemprop="name headline")
12
+ if is_month()
13
+ != _p('title.archive_in', page.year + __('symbol.year') + page.month + __('symbol.month'))
14
+ else if is_year()
15
+ != _p('title.archive_in', page.year + __('symbol.year'))
16
+ else
17
+ != __('title.archive')
18
+
19
+ block content
20
+ div(class="collapse wrap")
21
+ h2(class="item header")
22
+ if is_month()
23
+ a(href=url_for(config.archive_dir))
24
+ != __('title.all')
25
+ small /
26
+ a(href=url_for(config.archive_dir + '/' + page.year ))
27
+ != `${page.year} ${__('symbol.year')}`
28
+ small /
29
+ != `${page.month}${__('symbol.month')}`
30
+ small
31
+ != __('title.archive')
32
+ else if is_year()
33
+ a(href=url_for(config.archive_dir))
34
+ != __('title.all')
35
+ small /
36
+ != page.year + __('symbol.year')
37
+ small
38
+ != __('title.archive')
39
+ else
40
+ a(href=url_for(site.path))
41
+ != __('menu.home')
42
+ small /
43
+ - var posts_length = site.posts.length,cheers
44
+ if posts_length > 210
45
+ - cheers = 'excellent'
46
+ else if posts_length > 130
47
+ - cheers = 'great'
48
+ else if posts_length > 80
49
+ - cheers = 'good'
50
+ else if posts_length > 50
51
+ - cheers = 'nice'
52
+ else if posts_length > 30
53
+ - cheers = 'ok'
54
+ else
55
+ - cheers = 'um'
56
+ != _p('counter.archive_posts', site.posts.length)
57
+ small(class="cheers")
58
+ != __('cheers.' + cheers)
59
+ != ' '
60
+ != __('keep_on')
61
+
62
+ - var current_year = '1970'
63
+ - var current_month = '01'
64
+ - var count_post = 1
65
+ each post in page.posts.toArray()
66
+ - var year = date(post.date, 'YYYY')
67
+ - var month = date(post.date, 'MM')
68
+ if !is_year()
69
+ if year !== current_year || month !== current_month
70
+ if current_year !== '1970'
71
+ small (#{count_post})
72
+ </h3>
73
+ <h3 class="item section">
74
+ a(href=url_for(config.archive_dir + '/' + year )) #{year} #{__('symbol.year')}
75
+ small /
76
+ a(href=url_for(config.archive_dir + '/' + year + '/' + month)) #{ month } #{__('symbol.month')}
77
+ - current_year = year
78
+ - current_month = month
79
+ - count_post = 1
80
+ else
81
+ - count_post = count_post + 1
82
+ else
83
+ if year !== current_year && !is_year()
84
+ - current_year = year
85
+ h3(class="item section")
86
+ a(href=url_for(config.archive_dir + '/' + year )) #{ year } #{__('symbol.year')}
87
+ if month !== current_month && is_year() && !is_month()
88
+ - current_month = month
89
+ h3(class="item section")
90
+ a(href=url_for(config.archive_dir + '/' + year + '/' + month)) #{ month } #{__('symbol.month')}
91
+ article(class="item normal" itemscope itemtype="http://schema.org/Article")
92
+ div(class="meta")
93
+ time(
94
+ itemprop="dateCreated"
95
+ datetime=moment(post.date).format()
96
+ content=date(post.date, config.date_format)
97
+ ) #{date(post.date, 'MM-DD')}
98
+ if post.categories && post.categories.length
99
+ - var cat_length = post.categories.length
100
+ each cat,index in post.categories.toArray()
101
+ if index == cat_length && cat.name !== page.category
102
+ span
103
+ a(href=url_for(cat.path)) #{cat.name}
104
+ div(class="title")
105
+ if post.link
106
+ - var postTitleIcon = '<i class="ic i-link-alt"></i>'
107
+ - var postText = post.title || post.link
108
+ != _url(post.link, postText + postTitleIcon, {class: 'external', itemprop: 'url'})
109
+ else
110
+ - var postTitle = post.title || __('post.untitled')
111
+ a(href=url_for(post.path) itemprop="url")
112
+ span(itemprop="name") #{postTitle}
113
+ if !is_year()
114
+ small (#{count_post})
115
+ </h3>
116
+
117
+ include _partials/pagination.pug
118
+