jekyll-theme-polar 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +21 -0
  3. data/README.md +6 -0
  4. data/_config.yml +101 -0
  5. data/_includes/article/comment.html +5 -0
  6. data/_includes/article/info.html +8 -0
  7. data/_includes/article/origin.html +13 -0
  8. data/_includes/article/paginate.html +3 -0
  9. data/_includes/article/people.html +13 -0
  10. data/_includes/article/person_card.html +27 -0
  11. data/_includes/article/read_more.html +11 -0
  12. data/_includes/article/revise.html +8 -0
  13. data/_includes/article/title.html +9 -0
  14. data/_includes/article.html +19 -0
  15. data/_includes/config/date/long.html +12 -0
  16. data/_includes/config/date/short.html +17 -0
  17. data/_includes/config/empty/about.md +7 -0
  18. data/_includes/config/empty/common_listing.md +7 -0
  19. data/_includes/config/empty/homepage.md +7 -0
  20. data/_includes/config/empty/unconfig.md +7 -0
  21. data/_includes/display/date.html +19 -0
  22. data/_includes/display/year_range.html +11 -0
  23. data/_includes/footer.html +9 -0
  24. data/_includes/header.html +20 -0
  25. data/_includes/listing/archive.html +20 -0
  26. data/_includes/listing/docs.html +13 -0
  27. data/_includes/listing/posts.html +18 -0
  28. data/_includes/listing/projects.html +17 -0
  29. data/_includes/listing/tags.html +47 -0
  30. data/_includes/listing.html +9 -0
  31. data/_includes/menu/archive_tags.html +8 -0
  32. data/_includes/menu/demo_source.html +14 -0
  33. data/_includes/meta/base.html +7 -0
  34. data/_includes/meta/color.html +2 -0
  35. data/_includes/meta/facebook_og.html +16 -0
  36. data/_includes/meta/icon.html +2 -0
  37. data/_includes/meta/twitter_card.html +8 -0
  38. data/_includes/meta/verification.html +3 -0
  39. data/_includes/paginate/base.html +19 -0
  40. data/_includes/paginate/multiple.html +13 -0
  41. data/_includes/paginate/single.html +13 -0
  42. data/_includes/postload.html +2 -0
  43. data/_includes/preload.html +11 -0
  44. data/_includes/script/analytics.html +10 -0
  45. data/_includes/script/disqus.html +15 -0
  46. data/_includes/script/force_https.html +5 -0
  47. data/_includes/script/mathjax.html +6 -0
  48. data/_includes/script/onload.html +19 -0
  49. data/_includes/style/fonts.html +31 -0
  50. data/_includes/style/load_first.html +1 -0
  51. data/_includes/variables/article.liquid +19 -0
  52. data/_includes/variables/color.liquid +12 -0
  53. data/_includes/variables/fonts.liquid +21 -0
  54. data/_includes/variables/header.liquid +10 -0
  55. data/_includes/variables/homepage.liquid +13 -0
  56. data/_includes/variables/meta.liquid +71 -0
  57. data/_includes/variables/unconfig.liquid +5 -0
  58. data/_layouts/compress.html +10 -0
  59. data/_layouts/default.html +21 -0
  60. data/_layouts/doc.html +8 -0
  61. data/_layouts/empty/about.html +16 -0
  62. data/_layouts/empty/archive.html +17 -0
  63. data/_layouts/empty/docs.html +16 -0
  64. data/_layouts/empty/homepage.html +26 -0
  65. data/_layouts/empty/posts.html +18 -0
  66. data/_layouts/empty/projects.html +16 -0
  67. data/_layouts/empty/tags.html +17 -0
  68. data/_layouts/page.html +5 -0
  69. data/_layouts/post.html +10 -0
  70. data/_layouts/project.html +9 -0
  71. data/_sass/_article.scss +83 -0
  72. data/_sass/_base.scss +123 -0
  73. data/_sass/_classes.scss +249 -0
  74. data/_sass/_footer.scss +4 -0
  75. data/_sass/_header.scss +41 -0
  76. data/_sass/_mixins.scss +15 -0
  77. data/_sass/_variables.scss +35 -0
  78. data/_sass/highlight/custom.scss +4 -0
  79. data/_sass/highlight/github.scss +209 -0
  80. data/_sass/highlight/monokai.scss +210 -0
  81. data/_sass/normalize.scss +424 -0
  82. data/assets/AUTO_INSTALL/archive.html +6 -0
  83. data/assets/AUTO_INSTALL/docs.html +6 -0
  84. data/assets/AUTO_INSTALL/feed.xml +31 -0
  85. data/assets/AUTO_INSTALL/index.md +5 -0
  86. data/assets/AUTO_INSTALL/posts.html +8 -0
  87. data/assets/AUTO_INSTALL/projects.html +6 -0
  88. data/assets/AUTO_INSTALL/tags.html +6 -0
  89. data/assets/img/404.png +0 -0
  90. data/assets/img/north-pole.png +0 -0
  91. data/assets/img/polar-bear.png +0 -0
  92. data/assets/img/tired-bear.png +0 -0
  93. data/assets/style.scss +25 -0
  94. metadata +177 -0
data/assets/style.scss ADDED
@@ -0,0 +1,25 @@
1
+ ---
2
+ ---
3
+
4
+ @charset "utf-8";
5
+
6
+
7
+ $palette: "{{ site.data.theme.color.palette }}";
8
+
9
+ {% include variables/fonts.liquid %}
10
+ $font-head: {{ font_head }};
11
+ $font-body: {{ font_body }};
12
+ $font-mono: {{ font_mono }};
13
+ $font-mono-size: {{ font_mono_size }};
14
+ $font-mono-line-height: {{ font_mono_line_height }};
15
+
16
+
17
+ @import "variables";
18
+ @import "normalize";
19
+ @import "mixins";
20
+ @import "base";
21
+ @import "classes";
22
+ @import "header";
23
+ @import "article";
24
+ @import "footer";
25
+ @import "{{ site.data.theme.color.highlight | default: 'custom' | prepend: 'highlight/' }}";
metadata ADDED
@@ -0,0 +1,177 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-polar
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Nattawut Phetmak
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-01-20 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: '4.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-sitemap
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.4'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.4'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-paginate-v2
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description:
56
+ email:
57
+ - neizod@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.md
63
+ - README.md
64
+ - _config.yml
65
+ - _includes/article.html
66
+ - _includes/article/comment.html
67
+ - _includes/article/info.html
68
+ - _includes/article/origin.html
69
+ - _includes/article/paginate.html
70
+ - _includes/article/people.html
71
+ - _includes/article/person_card.html
72
+ - _includes/article/read_more.html
73
+ - _includes/article/revise.html
74
+ - _includes/article/title.html
75
+ - _includes/config/date/long.html
76
+ - _includes/config/date/short.html
77
+ - _includes/config/empty/about.md
78
+ - _includes/config/empty/common_listing.md
79
+ - _includes/config/empty/homepage.md
80
+ - _includes/config/empty/unconfig.md
81
+ - _includes/display/date.html
82
+ - _includes/display/year_range.html
83
+ - _includes/footer.html
84
+ - _includes/header.html
85
+ - _includes/listing.html
86
+ - _includes/listing/archive.html
87
+ - _includes/listing/docs.html
88
+ - _includes/listing/posts.html
89
+ - _includes/listing/projects.html
90
+ - _includes/listing/tags.html
91
+ - _includes/menu/archive_tags.html
92
+ - _includes/menu/demo_source.html
93
+ - _includes/meta/base.html
94
+ - _includes/meta/color.html
95
+ - _includes/meta/facebook_og.html
96
+ - _includes/meta/icon.html
97
+ - _includes/meta/twitter_card.html
98
+ - _includes/meta/verification.html
99
+ - _includes/paginate/base.html
100
+ - _includes/paginate/multiple.html
101
+ - _includes/paginate/single.html
102
+ - _includes/postload.html
103
+ - _includes/preload.html
104
+ - _includes/script/analytics.html
105
+ - _includes/script/disqus.html
106
+ - _includes/script/force_https.html
107
+ - _includes/script/mathjax.html
108
+ - _includes/script/onload.html
109
+ - _includes/style/fonts.html
110
+ - _includes/style/load_first.html
111
+ - _includes/variables/article.liquid
112
+ - _includes/variables/color.liquid
113
+ - _includes/variables/fonts.liquid
114
+ - _includes/variables/header.liquid
115
+ - _includes/variables/homepage.liquid
116
+ - _includes/variables/meta.liquid
117
+ - _includes/variables/unconfig.liquid
118
+ - _layouts/compress.html
119
+ - _layouts/default.html
120
+ - _layouts/doc.html
121
+ - _layouts/empty/about.html
122
+ - _layouts/empty/archive.html
123
+ - _layouts/empty/docs.html
124
+ - _layouts/empty/homepage.html
125
+ - _layouts/empty/posts.html
126
+ - _layouts/empty/projects.html
127
+ - _layouts/empty/tags.html
128
+ - _layouts/page.html
129
+ - _layouts/post.html
130
+ - _layouts/project.html
131
+ - _sass/_article.scss
132
+ - _sass/_base.scss
133
+ - _sass/_classes.scss
134
+ - _sass/_footer.scss
135
+ - _sass/_header.scss
136
+ - _sass/_mixins.scss
137
+ - _sass/_variables.scss
138
+ - _sass/highlight/custom.scss
139
+ - _sass/highlight/github.scss
140
+ - _sass/highlight/monokai.scss
141
+ - _sass/normalize.scss
142
+ - assets/AUTO_INSTALL/archive.html
143
+ - assets/AUTO_INSTALL/docs.html
144
+ - assets/AUTO_INSTALL/feed.xml
145
+ - assets/AUTO_INSTALL/index.md
146
+ - assets/AUTO_INSTALL/posts.html
147
+ - assets/AUTO_INSTALL/projects.html
148
+ - assets/AUTO_INSTALL/tags.html
149
+ - assets/img/404.png
150
+ - assets/img/north-pole.png
151
+ - assets/img/polar-bear.png
152
+ - assets/img/tired-bear.png
153
+ - assets/style.scss
154
+ homepage: https://github.com/neizod/polar
155
+ licenses:
156
+ - MIT
157
+ metadata: {}
158
+ post_install_message:
159
+ rdoc_options: []
160
+ require_paths:
161
+ - lib
162
+ required_ruby_version: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ required_rubygems_version: !ruby/object:Gem::Requirement
168
+ requirements:
169
+ - - ">="
170
+ - !ruby/object:Gem::Version
171
+ version: '0'
172
+ requirements: []
173
+ rubygems_version: 3.1.2
174
+ signing_key:
175
+ specification_version: 4
176
+ summary: White, clean, no JavaScript Jekyll Theme
177
+ test_files: []