coppermind 0.1.1 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +195 -0
- data/_includes/archive-by-tagories.html +71 -0
- data/_includes/archive-by-years.html +32 -0
- data/_includes/back-to-top.html +6 -0
- data/_includes/custom-head.html +6 -0
- data/_includes/disqus.html +17 -0
- data/_includes/footer.html +39 -0
- data/_includes/google-analytics.html +9 -0
- data/_includes/head.html +13 -0
- data/_includes/header.html +20 -0
- data/_includes/mathjax.html +2 -0
- data/_layouts/archive.html +15 -0
- data/_layouts/default.html +23 -0
- data/_layouts/home.html +44 -0
- data/_layouts/page.html +8 -0
- data/_layouts/post.html +86 -0
- data/_sass/monophase/_base.scss +128 -0
- data/_sass/monophase/_highlight-dark.scss +91 -0
- data/_sass/monophase/_highlight-light.scss +217 -0
- data/_sass/monophase/_layout.scss +358 -0
- data/_sass/monophase/_predefined.scss +59 -0
- data/_sass/monophase/_variables.scss +54 -0
- data/_sass/monophase/main.scss +9 -0
- data/assets/monophase/styles.scss +3 -0
- data/assets/normalize.css +349 -0
- data/assets/open-color.css +343 -0
- metadata +32 -5
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: coppermind
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Jesse
|
7
|
+
- Jesse WIlliamson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-10-
|
11
|
+
date: 2021-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -86,7 +86,34 @@ email:
|
|
86
86
|
executables: []
|
87
87
|
extensions: []
|
88
88
|
extra_rdoc_files: []
|
89
|
-
files:
|
89
|
+
files:
|
90
|
+
- LICENSE.txt
|
91
|
+
- README.md
|
92
|
+
- _includes/archive-by-tagories.html
|
93
|
+
- _includes/archive-by-years.html
|
94
|
+
- _includes/back-to-top.html
|
95
|
+
- _includes/custom-head.html
|
96
|
+
- _includes/disqus.html
|
97
|
+
- _includes/footer.html
|
98
|
+
- _includes/google-analytics.html
|
99
|
+
- _includes/head.html
|
100
|
+
- _includes/header.html
|
101
|
+
- _includes/mathjax.html
|
102
|
+
- _layouts/archive.html
|
103
|
+
- _layouts/default.html
|
104
|
+
- _layouts/home.html
|
105
|
+
- _layouts/page.html
|
106
|
+
- _layouts/post.html
|
107
|
+
- _sass/monophase/_base.scss
|
108
|
+
- _sass/monophase/_highlight-dark.scss
|
109
|
+
- _sass/monophase/_highlight-light.scss
|
110
|
+
- _sass/monophase/_layout.scss
|
111
|
+
- _sass/monophase/_predefined.scss
|
112
|
+
- _sass/monophase/_variables.scss
|
113
|
+
- _sass/monophase/main.scss
|
114
|
+
- assets/monophase/styles.scss
|
115
|
+
- assets/normalize.css
|
116
|
+
- assets/open-color.css
|
90
117
|
homepage: https://github.com/zivhub/monophase
|
91
118
|
licenses:
|
92
119
|
- MIT
|
@@ -106,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
106
133
|
- !ruby/object:Gem::Version
|
107
134
|
version: '0'
|
108
135
|
requirements: []
|
109
|
-
rubygems_version: 3.
|
136
|
+
rubygems_version: 3.1.6
|
110
137
|
signing_key:
|
111
138
|
specification_version: 4
|
112
139
|
summary: A one-column minimal responsive Jekyll blog theme
|