jekyll-text-theme 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +161 -0
- data/_includes/blog/article-data.html +43 -0
- data/_includes/blog/footer.html +14 -0
- data/_includes/blog/header.html +22 -0
- data/_includes/blog/license.html +17 -0
- data/_includes/blog/tags.html +49 -0
- data/_includes/common-head.html +7 -0
- data/_includes/head-icons-rel.html +25 -0
- data/_includes/icon/mail.svg +6 -0
- data/_includes/icon/menu.svg +3 -0
- data/_includes/icon/next.svg +3 -0
- data/_includes/icon/previous.svg +3 -0
- data/_includes/icon/social/behance.svg +3 -0
- data/_includes/icon/social/douban.svg +5 -0
- data/_includes/icon/social/facebook.svg +3 -0
- data/_includes/icon/social/flicker.svg +5 -0
- data/_includes/icon/social/github.svg +3 -0
- data/_includes/icon/social/googleplus.svg +3 -0
- data/_includes/icon/social/linkedin.svg +3 -0
- data/_includes/icon/social/pinterest.svg +3 -0
- data/_includes/icon/social/qq.svg +3 -0
- data/_includes/icon/social/twitter.svg +3 -0
- data/_includes/icon/social/weibo.svg +6 -0
- data/_includes/icon/social/weixin.svg +3 -0
- data/_includes/icon/social/zhihu.svg +3 -0
- data/_includes/info/follow-me.html +74 -0
- data/_includes/logo/logo.svg +8 -0
- data/_includes/snippets/page-url.html +1 -0
- data/_includes/snippets/rss-url.html +1 -0
- data/_includes/utils/comment-disqus.html +22 -0
- data/_includes/utils/google-analytics.html +13 -0
- data/_includes/utils/mathjax.html +5 -0
- data/_layouts/all.html +114 -0
- data/_layouts/blog-base.html +34 -0
- data/_layouts/blog-default.html +9 -0
- data/_layouts/error-404.html +9 -0
- data/_layouts/home-base.html +15 -0
- data/_layouts/home.html +92 -0
- data/_layouts/none.html +1 -0
- data/_layouts/page.html +15 -0
- data/_layouts/post.html +206 -0
- data/_sass/base/_animate.scss +19 -0
- data/_sass/base/_base.scss +55 -0
- data/_sass/base/_image&icon.scss +20 -0
- data/_sass/base/_links.scss +84 -0
- data/_sass/base/_text.scss +50 -0
- data/_sass/blog/_layout.base.scss +3 -0
- data/_sass/blog/_layout.default.scss +20 -0
- data/_sass/blog/_layout.page.scss +1 -0
- data/_sass/blog/_layout.post.scss +66 -0
- data/_sass/blog/_page.all.scss +35 -0
- data/_sass/blog/_page.error-404.scss +7 -0
- data/_sass/blog/_page.index.scss +45 -0
- data/_sass/colors/_colors.dark.scss +38 -0
- data/_sass/colors/_colors.default.scss +39 -0
- data/_sass/colors/_colors.forest.scss +39 -0
- data/_sass/colors/_colors.ocean.scss +39 -0
- data/_sass/components/_article.content.scss +140 -0
- data/_sass/components/_article.data.scss +35 -0
- data/_sass/components/_follow-me.scss +70 -0
- data/_sass/components/_footer.scss +36 -0
- data/_sass/components/_header.scss +44 -0
- data/_sass/components/_license.scss +27 -0
- data/_sass/components/_pagination.scss +7 -0
- data/_sass/components/_tags.scss +33 -0
- data/_sass/components/_toc.scss +61 -0
- data/_sass/components/_wrapper.scss +23 -0
- data/_sass/mixins/_flex.scss +394 -0
- data/_sass/mixins/_link.scss +60 -0
- data/_sass/mixins/_media.scss +12 -0
- data/_sass/mixins/_prefix.scss +14 -0
- data/_sass/settings/_base.scss +12 -0
- data/_sass/settings/_colors.scss +4 -0
- data/_sass/settings/_font.scss +32 -0
- data/_sass/settings/_highlighting.scss +72 -0
- data/assets/css/blog.scss +46 -0
- data/assets/images/license-cc4.png +0 -0
- data/assets/images/logo/icon-120x120.png +0 -0
- data/assets/images/logo/icon-128x128.png +0 -0
- data/assets/images/logo/icon-150x150.png +0 -0
- data/assets/images/logo/icon-152x152.png +0 -0
- data/assets/images/logo/icon-167x167.png +0 -0
- data/assets/images/logo/icon-16x16.png +0 -0
- data/assets/images/logo/icon-180x180.png +0 -0
- data/assets/images/logo/icon-192x192.png +0 -0
- data/assets/images/logo/icon-310x150.png +0 -0
- data/assets/images/logo/icon-310x310.png +0 -0
- data/assets/images/logo/icon-48x48.png +0 -0
- data/assets/images/logo/icon-70x70.png +0 -0
- data/assets/images/logo/logo.svg +8 -0
- data/assets/images/octocat.jpg +0 -0
- metadata +234 -0
@@ -0,0 +1,60 @@
|
|
1
|
+
@mixin link-normal {
|
2
|
+
&, &:visited {
|
3
|
+
@content;
|
4
|
+
}
|
5
|
+
}
|
6
|
+
|
7
|
+
@mixin link-emphasize {
|
8
|
+
&.hover, &.active, &.focus,
|
9
|
+
&:hover, &:active, &:focus {
|
10
|
+
@content;
|
11
|
+
}
|
12
|
+
}
|
13
|
+
|
14
|
+
@mixin link-emphasize-no-focus {
|
15
|
+
&.hover, &.active,
|
16
|
+
&:hover, &:active {
|
17
|
+
@content;
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
@mixin link-colors($nc, $nbc, $ec, $ebc) {
|
22
|
+
@include link-normal {
|
23
|
+
color: $nc;
|
24
|
+
background-color: $nbc;
|
25
|
+
}
|
26
|
+
@include link-emphasize {
|
27
|
+
color: $ec;
|
28
|
+
background-color: $ebc;
|
29
|
+
}
|
30
|
+
svg {
|
31
|
+
@include link-normal {
|
32
|
+
path {
|
33
|
+
fill: $nc;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
@include link-emphasize {
|
37
|
+
path {
|
38
|
+
fill: $ec;
|
39
|
+
}
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
@mixin link-text-colors($nc, $ec) {
|
45
|
+
@include link-normal {
|
46
|
+
color: $nc;
|
47
|
+
}
|
48
|
+
@include link-emphasize {
|
49
|
+
color: $ec;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
@mixin link-background-colors($nbc, $ebc) {
|
54
|
+
@include link-normal {
|
55
|
+
background-color: $nbc;
|
56
|
+
}
|
57
|
+
@include link-emphasize {
|
58
|
+
background-color: $ebc;
|
59
|
+
}
|
60
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
// Use media queries like this:
|
2
|
+
// @include media-query($on-palm) {
|
3
|
+
// .wrapper {
|
4
|
+
// padding-right: $spacing-unit / 2;
|
5
|
+
// padding-left: $spacing-unit / 2;
|
6
|
+
// }
|
7
|
+
// }
|
8
|
+
@mixin media-query($device) {
|
9
|
+
@media screen and (max-width: $device) {
|
10
|
+
@content;
|
11
|
+
}
|
12
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
@mixin transition($value) {
|
2
|
+
-webkit-transition: $value;
|
3
|
+
transition: $value;
|
4
|
+
}
|
5
|
+
|
6
|
+
@mixin transform($value) {
|
7
|
+
-webkit-transform: $value;
|
8
|
+
transform: $value;
|
9
|
+
}
|
10
|
+
|
11
|
+
@mixin animation($value) {
|
12
|
+
-webkit-animation: $value;
|
13
|
+
animation: $value;
|
14
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
$base-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
|
2
|
+
Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', SimSun, sans-serif;
|
3
|
+
$code-font-family: Menlo, Consolas, "Courier New", Courier, "Liberation Mono", monospace;
|
4
|
+
|
5
|
+
$base-line-height: 1.6;
|
6
|
+
$code-line-height: 1.5;
|
7
|
+
$toc-line-height: 1.4;
|
8
|
+
$article-line-height: 1.8;
|
9
|
+
$base-font-size: 1em;
|
10
|
+
$base-font-weight: 400;
|
11
|
+
$bold-font-weight: 700;
|
12
|
+
|
13
|
+
$h1-font-size: $base-font-size * 2.25;
|
14
|
+
$h2-font-size: $base-font-size * 1.5;
|
15
|
+
$h3-font-size: $base-font-size * 1.2;
|
16
|
+
$h4-font-size: $base-font-size * 1.1;
|
17
|
+
$h5-font-size: $base-font-size;
|
18
|
+
$h6-font-size: $base-font-size;
|
19
|
+
|
20
|
+
$h1-font-size-palm: $base-font-size * 1.7;
|
21
|
+
$h2-font-size-palm: $base-font-size * 1.4;
|
22
|
+
|
23
|
+
$article-list-head: $base-font-size * 1.6;
|
24
|
+
|
25
|
+
$h1-font-size-excerpt: $base-font-size * 1.4;
|
26
|
+
$h2-font-size-excerpt: $base-font-size * 1.3;
|
27
|
+
$h3-font-size-excerpt: $base-font-size * 1.2;
|
28
|
+
$h4-font-size-excerpt: $base-font-size * 1.1;
|
29
|
+
|
30
|
+
$code-font-size: $base-font-size * 14 / 16;
|
31
|
+
$small-font-size: $base-font-size * .9;
|
32
|
+
$tiny-font-size: $base-font-size * .8;
|
@@ -0,0 +1,72 @@
|
|
1
|
+
/**
|
2
|
+
* Syntax highlighting styles
|
3
|
+
*/
|
4
|
+
pre {
|
5
|
+
background-color: $text-background-color;
|
6
|
+
code {
|
7
|
+
color: $text-color;
|
8
|
+
}
|
9
|
+
}
|
10
|
+
|
11
|
+
.highlight {
|
12
|
+
.c { color: #998; font-style: italic } // Comment
|
13
|
+
.err { color: #a61717; background-color: #e3d2d2 } // Error
|
14
|
+
.k { font-weight: bold } // Keyword
|
15
|
+
.o { font-weight: bold } // Operator
|
16
|
+
.cm { color: #998; font-style: italic } // Comment.Multiline
|
17
|
+
.cp { color: #999; font-weight: bold } // Comment.Preproc
|
18
|
+
.c1 { color: #998; font-style: italic } // Comment.Single
|
19
|
+
.cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
|
20
|
+
.gd { color: #000; background-color: #fdd } // Generic.Deleted
|
21
|
+
.gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
|
22
|
+
.ge { font-style: italic } // Generic.Emph
|
23
|
+
.gr { color: #a00 } // Generic.Error
|
24
|
+
.gh { color: #999 } // Generic.Heading
|
25
|
+
.gi { color: #000; background-color: #dfd } // Generic.Inserted
|
26
|
+
.gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
|
27
|
+
.go { color: #888 } // Generic.Output
|
28
|
+
.gp { color: #555 } // Generic.Prompt
|
29
|
+
.gs { font-weight: bold } // Generic.Strong
|
30
|
+
.gu { color: #aaa } // Generic.Subheading
|
31
|
+
.gt { color: #a00 } // Generic.Traceback
|
32
|
+
.kc { font-weight: bold } // Keyword.Constant
|
33
|
+
.kd { font-weight: bold } // Keyword.Declaration
|
34
|
+
.kp { font-weight: bold } // Keyword.Pseudo
|
35
|
+
.kr { font-weight: bold } // Keyword.Reserved
|
36
|
+
.kt { color: #458; font-weight: bold } // Keyword.Type
|
37
|
+
.m { color: #099 } // Literal.Number
|
38
|
+
.s { color: #d14 } // Literal.String
|
39
|
+
.na { color: #008080 } // Name.Attribute
|
40
|
+
.nb { color: #0086B3 } // Name.Builtin
|
41
|
+
.nc { color: #458; font-weight: bold } // Name.Class
|
42
|
+
.no { color: #008080 } // Name.Constant
|
43
|
+
.ni { color: #800080 } // Name.Entity
|
44
|
+
.ne { color: #900; font-weight: bold } // Name.Exception
|
45
|
+
.nf { color: #900; font-weight: bold } // Name.Function
|
46
|
+
.nn { color: #555 } // Name.Namespace
|
47
|
+
.nt { color: #000080 } // Name.Tag
|
48
|
+
.nv { color: #008080 } // Name.Variable
|
49
|
+
.ow { font-weight: bold } // Operator.Word
|
50
|
+
.w { color: #bbb } // Text.Whitespace
|
51
|
+
.mf { color: #099 } // Literal.Number.Float
|
52
|
+
.mh { color: #099 } // Literal.Number.Hex
|
53
|
+
.mi { color: #099 } // Literal.Number.Integer
|
54
|
+
.mo { color: #099 } // Literal.Number.Oct
|
55
|
+
.sb { color: #d14 } // Literal.String.Backtick
|
56
|
+
.sc { color: #d14 } // Literal.String.Char
|
57
|
+
.sd { color: #d14 } // Literal.String.Doc
|
58
|
+
.s2 { color: #d14 } // Literal.String.Double
|
59
|
+
.se { color: #d14 } // Literal.String.Escape
|
60
|
+
.sh { color: #d14 } // Literal.String.Heredoc
|
61
|
+
.si { color: #d14 } // Literal.String.Interpol
|
62
|
+
.sx { color: #d14 } // Literal.String.Other
|
63
|
+
.sr { color: #009926 } // Literal.String.Regex
|
64
|
+
.s1 { color: #d14 } // Literal.String.Single
|
65
|
+
.ss { color: #990073 } // Literal.String.Symbol
|
66
|
+
.bp { color: #999 } // Name.Builtin.Pseudo
|
67
|
+
.vc { color: #008080 } // Name.Variable.Class
|
68
|
+
.vg { color: #008080 } // Name.Variable.Global
|
69
|
+
.vi { color: #008080 } // Name.Variable.Instance
|
70
|
+
.il { color: #099 } // Literal.Number.Integer.Long
|
71
|
+
|
72
|
+
}
|
@@ -0,0 +1,46 @@
|
|
1
|
+
---
|
2
|
+
# Only the main Sass file needs front matter (the dashes are enough)
|
3
|
+
---
|
4
|
+
@charset "utf-8";
|
5
|
+
|
6
|
+
@import
|
7
|
+
"settings/base",
|
8
|
+
"settings/colors",
|
9
|
+
"settings/font",
|
10
|
+
"settings/highlighting",
|
11
|
+
|
12
|
+
"mixins/prefix",
|
13
|
+
"mixins/media",
|
14
|
+
"mixins/link",
|
15
|
+
"mixins/flex",
|
16
|
+
|
17
|
+
"base/base",
|
18
|
+
"base/text",
|
19
|
+
"base/links",
|
20
|
+
"base/image&icon",
|
21
|
+
"base/animate",
|
22
|
+
|
23
|
+
"components/wrapper",
|
24
|
+
|
25
|
+
"components/follow-me",
|
26
|
+
|
27
|
+
"components/header",
|
28
|
+
"components/footer",
|
29
|
+
|
30
|
+
"components/toc",
|
31
|
+
"components/tags",
|
32
|
+
"components/pagination",
|
33
|
+
|
34
|
+
"components/article.data",
|
35
|
+
"components/article.content",
|
36
|
+
"components/license",
|
37
|
+
|
38
|
+
"blog/layout.base",
|
39
|
+
"blog/layout.default",
|
40
|
+
"blog/layout.page",
|
41
|
+
"blog/layout.post",
|
42
|
+
|
43
|
+
"blog/page.all",
|
44
|
+
"blog/page.index",
|
45
|
+
"blog/page.error-404"
|
46
|
+
;
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
2
|
+
width="24px" height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
3
|
+
<style type="text/css">
|
4
|
+
.st0{fill:#666666;}
|
5
|
+
</style>
|
6
|
+
<path class="st0" d="M1.7,22.3c5.7-5.7,11.3-5.7,17,0c3.3-3.3,3.5-5.3,0.8-6c2.7,0.7,3.5-1.1,2.3-5.6s-3.3-5.2-6.3-2.1
|
7
|
+
c3-3,2.3-5.2-2.1-6.3S7,1.8,7.7,4.6C7,1.8,5,2.1,1.7,5.3C7.3,11,7.3,16.7,1.7,22.3"/>
|
8
|
+
</svg>
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,234 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jekyll-text-theme
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.3.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- kitian616
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-11-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.5'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.5'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jekyll-paginate
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.1'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.1'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: jekyll-sitemap
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: jekyll-feed
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.9.2
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.9.2
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: jemoji
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.8'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.8'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: bundler
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '1.12'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '1.12'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rake
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '10.0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '10.0'
|
111
|
+
description:
|
112
|
+
email:
|
113
|
+
- kitian616@outlook.com
|
114
|
+
executables: []
|
115
|
+
extensions: []
|
116
|
+
extra_rdoc_files: []
|
117
|
+
files:
|
118
|
+
- LICENSE
|
119
|
+
- README.md
|
120
|
+
- _includes/blog/article-data.html
|
121
|
+
- _includes/blog/footer.html
|
122
|
+
- _includes/blog/header.html
|
123
|
+
- _includes/blog/license.html
|
124
|
+
- _includes/blog/tags.html
|
125
|
+
- _includes/common-head.html
|
126
|
+
- _includes/head-icons-rel.html
|
127
|
+
- _includes/icon/mail.svg
|
128
|
+
- _includes/icon/menu.svg
|
129
|
+
- _includes/icon/next.svg
|
130
|
+
- _includes/icon/previous.svg
|
131
|
+
- _includes/icon/social/behance.svg
|
132
|
+
- _includes/icon/social/douban.svg
|
133
|
+
- _includes/icon/social/facebook.svg
|
134
|
+
- _includes/icon/social/flicker.svg
|
135
|
+
- _includes/icon/social/github.svg
|
136
|
+
- _includes/icon/social/googleplus.svg
|
137
|
+
- _includes/icon/social/linkedin.svg
|
138
|
+
- _includes/icon/social/pinterest.svg
|
139
|
+
- _includes/icon/social/qq.svg
|
140
|
+
- _includes/icon/social/twitter.svg
|
141
|
+
- _includes/icon/social/weibo.svg
|
142
|
+
- _includes/icon/social/weixin.svg
|
143
|
+
- _includes/icon/social/zhihu.svg
|
144
|
+
- _includes/info/follow-me.html
|
145
|
+
- _includes/logo/logo.svg
|
146
|
+
- _includes/snippets/page-url.html
|
147
|
+
- _includes/snippets/rss-url.html
|
148
|
+
- _includes/utils/comment-disqus.html
|
149
|
+
- _includes/utils/google-analytics.html
|
150
|
+
- _includes/utils/mathjax.html
|
151
|
+
- _layouts/all.html
|
152
|
+
- _layouts/blog-base.html
|
153
|
+
- _layouts/blog-default.html
|
154
|
+
- _layouts/error-404.html
|
155
|
+
- _layouts/home-base.html
|
156
|
+
- _layouts/home.html
|
157
|
+
- _layouts/none.html
|
158
|
+
- _layouts/page.html
|
159
|
+
- _layouts/post.html
|
160
|
+
- _sass/base/_animate.scss
|
161
|
+
- _sass/base/_base.scss
|
162
|
+
- _sass/base/_image&icon.scss
|
163
|
+
- _sass/base/_links.scss
|
164
|
+
- _sass/base/_text.scss
|
165
|
+
- _sass/blog/_layout.base.scss
|
166
|
+
- _sass/blog/_layout.default.scss
|
167
|
+
- _sass/blog/_layout.page.scss
|
168
|
+
- _sass/blog/_layout.post.scss
|
169
|
+
- _sass/blog/_page.all.scss
|
170
|
+
- _sass/blog/_page.error-404.scss
|
171
|
+
- _sass/blog/_page.index.scss
|
172
|
+
- _sass/colors/_colors.dark.scss
|
173
|
+
- _sass/colors/_colors.default.scss
|
174
|
+
- _sass/colors/_colors.forest.scss
|
175
|
+
- _sass/colors/_colors.ocean.scss
|
176
|
+
- _sass/components/_article.content.scss
|
177
|
+
- _sass/components/_article.data.scss
|
178
|
+
- _sass/components/_follow-me.scss
|
179
|
+
- _sass/components/_footer.scss
|
180
|
+
- _sass/components/_header.scss
|
181
|
+
- _sass/components/_license.scss
|
182
|
+
- _sass/components/_pagination.scss
|
183
|
+
- _sass/components/_tags.scss
|
184
|
+
- _sass/components/_toc.scss
|
185
|
+
- _sass/components/_wrapper.scss
|
186
|
+
- _sass/mixins/_flex.scss
|
187
|
+
- _sass/mixins/_link.scss
|
188
|
+
- _sass/mixins/_media.scss
|
189
|
+
- _sass/mixins/_prefix.scss
|
190
|
+
- _sass/settings/_base.scss
|
191
|
+
- _sass/settings/_colors.scss
|
192
|
+
- _sass/settings/_font.scss
|
193
|
+
- _sass/settings/_highlighting.scss
|
194
|
+
- assets/css/blog.scss
|
195
|
+
- assets/images/license-cc4.png
|
196
|
+
- assets/images/logo/icon-120x120.png
|
197
|
+
- assets/images/logo/icon-128x128.png
|
198
|
+
- assets/images/logo/icon-150x150.png
|
199
|
+
- assets/images/logo/icon-152x152.png
|
200
|
+
- assets/images/logo/icon-167x167.png
|
201
|
+
- assets/images/logo/icon-16x16.png
|
202
|
+
- assets/images/logo/icon-180x180.png
|
203
|
+
- assets/images/logo/icon-192x192.png
|
204
|
+
- assets/images/logo/icon-310x150.png
|
205
|
+
- assets/images/logo/icon-310x310.png
|
206
|
+
- assets/images/logo/icon-48x48.png
|
207
|
+
- assets/images/logo/icon-70x70.png
|
208
|
+
- assets/images/logo/logo.svg
|
209
|
+
- assets/images/octocat.jpg
|
210
|
+
homepage: https://github.com/kitian616/jekyll-TeXt-theme
|
211
|
+
licenses:
|
212
|
+
- MIT
|
213
|
+
metadata: {}
|
214
|
+
post_install_message:
|
215
|
+
rdoc_options: []
|
216
|
+
require_paths:
|
217
|
+
- lib
|
218
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '0'
|
223
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
224
|
+
requirements:
|
225
|
+
- - ">="
|
226
|
+
- !ruby/object:Gem::Version
|
227
|
+
version: '0'
|
228
|
+
requirements: []
|
229
|
+
rubyforge_project:
|
230
|
+
rubygems_version: 2.6.8
|
231
|
+
signing_key:
|
232
|
+
specification_version: 4
|
233
|
+
summary: A text first theme for Jekyll.
|
234
|
+
test_files: []
|