frame9-jekyll-theme 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +39 -0
  4. data/_config.yml +85 -0
  5. data/_includes/banner.html +5 -0
  6. data/_includes/custom_head.html +0 -0
  7. data/_includes/fonts.html +4 -0
  8. data/_includes/footer.html +17 -0
  9. data/_includes/gallery.html +17 -0
  10. data/_includes/gallery_item.html +24 -0
  11. data/_includes/head.html +27 -0
  12. data/_includes/header.html +42 -0
  13. data/_includes/image.html +5 -0
  14. data/_includes/section.html +6 -0
  15. data/_includes/siblings.html +41 -0
  16. data/_layouts/default.html +7 -0
  17. data/_layouts/post.html +9 -0
  18. data/_layouts/root.html +31 -0
  19. data/_layouts/section.html +2 -0
  20. data/_sass/block/banner.sass +28 -0
  21. data/_sass/block/footer.sass +2 -0
  22. data/_sass/block/gallery.sass +14 -0
  23. data/_sass/block/img-wrap.sass +81 -0
  24. data/_sass/block/logo.sass +20 -0
  25. data/_sass/block/menu.sass +27 -0
  26. data/_sass/block/root-layout.sass +43 -0
  27. data/_sass/block/sibling-nav.sass +30 -0
  28. data/_sass/composition/action.sass +35 -0
  29. data/_sass/composition/code.scss +20 -0
  30. data/_sass/composition/normalize.sass +12 -0
  31. data/_sass/composition/size.sass +5 -0
  32. data/_sass/composition/table.sass +13 -0
  33. data/_sass/composition/text.sass +6 -0
  34. data/_sass/composition/theme.sass +8 -0
  35. data/_sass/exception/img-wrap.sass +34 -0
  36. data/_sass/frame9-jekyll-theme.sass +43 -0
  37. data/_sass/gorko-config.scss +79 -0
  38. data/_sass/theme/colors.scss +108 -0
  39. data/_sass/theme/font.scss +32 -0
  40. data/_sass/theme/monokai.scss +70 -0
  41. data/_sass/utility/bleed.sass +10 -0
  42. data/_sass/utility/box.sass +32 -0
  43. data/_sass/utility/columns.sass +3 -0
  44. data/_sass/utility/shadow.sass +13 -0
  45. data/assets/404.html +25 -0
  46. data/assets/css/style.sass +7 -0
  47. data/assets/img/avatar.png +0 -0
  48. data/assets/js/main.js +5 -0
  49. data/assets/js/openGallery.js +50 -0
  50. data/package.json +22 -0
  51. metadata +180 -0
@@ -0,0 +1,108 @@
1
+
2
+ // Site Color Config
3
+
4
+ $colors: (
5
+ 'white-a': #fff,
6
+ 'white-b': #dcdcdc,
7
+ 'white-c': #ddd,
8
+
9
+ 'red-a': rgb(117, 45, 45),
10
+ 'red-b': rgb(139, 49, 49),
11
+ 'red-c': rgb(223, 79, 79),
12
+ 'red-d': rgb(175, 63, 63),
13
+ 'red-e': #b75251,
14
+
15
+ 'gray-a': #555,
16
+
17
+ 'black-a': #000000,
18
+ 'black-c': #101010,
19
+ 'black-d': #2b2b2b,
20
+ 'black-e': #222,
21
+ 'black-b': rgb(75, 75, 75)
22
+ );
23
+
24
+ // Light theme colors
25
+
26
+ $light-theme: (
27
+ 'fill-main': map-get( $colors, 'white-a' ),
28
+ 'fill-main-a': map-get( $colors, 'white-a' ),
29
+ 'fill-main-b': map-get( $colors, 'white-b' ),
30
+ 'fill-mute': map-get($colors, 'white-c' ),
31
+ 'fill-gallery': map-get( $colors, 'gray-a' ),
32
+ 'fill-banner': map-get( $colors, 'red-e' ),
33
+
34
+ 'fill-overlay': #0002,
35
+
36
+ 'scribe-action': map-get( $colors, 'red-a'),
37
+ 'scribe-action-hover': map-get( $colors, 'red-b'),
38
+
39
+
40
+ 'fill-code': map-get($colors, 'black-d'),
41
+ 'scribe-code': map-get($colors, 'white-b'),
42
+
43
+ 'scribe-white': map-get( $colors, 'white-a'),
44
+ 'scribe-main': map-get( $colors, 'black-a'),
45
+ 'scribe-main-a': map-get( $colors, 'black-a'),
46
+ 'scribe-main-b': map-get( $colors, 'black-b'),
47
+ 'scribe-mute': map-get( $colors, 'gray-a'),
48
+ 'scribe-invert': map-get( $colors, 'white-a')
49
+ );
50
+
51
+
52
+ // Dark theme colors
53
+
54
+ $dark-theme: (
55
+ 'fill-main': map-get( $colors, 'black-d'),
56
+ 'fill-main-a': map-get( $colors, 'black-d'),
57
+ 'fill-main-b': map-get( $colors, 'black-c'),
58
+ 'fill-mute': map-get($colors, 'black-e' ),
59
+ 'fill-gallery': map-get( $colors, 'black-d'),
60
+ 'fill-banner': map-get( $colors, 'red-e'),
61
+
62
+ 'fill-overlay': #0002,
63
+
64
+ 'fill-code': map-get($colors, 'black-c'),
65
+ 'scribe-code': map-get($colors, 'white-b'),
66
+
67
+ 'scribe-action': map-get( $colors, 'red-c'),
68
+ 'scribe-action-hover': map-get( $colors, 'red-d'),
69
+
70
+ 'scribe-white': map-get( $colors, 'white-a'),
71
+ 'scribe-main': map-get( $colors, 'white-a'),
72
+ 'scribe-main-a': map-get( $colors, 'white-a'),
73
+ 'scribe-main-b': map-get( $colors, 'white-b'),
74
+ 'scribe-mute': map-get( $colors, 'gray-a'),
75
+ 'scribe-invert': map-get( $colors, 'white-a')
76
+ );
77
+
78
+
79
+ // Scribe colors are text color,
80
+ // or any color that takes up a small area of the page
81
+ //
82
+ // this generates css class tokens
83
+ // ie. `.scribe-main { color: var(--scribe-main-a); } `
84
+
85
+ $scribe-colors: (
86
+ 'main': 'var(--scribe-main-a)',
87
+ 'main-a': 'var(--scribe-main-a)',
88
+ 'main-b': 'var(--scribe-main-b)',
89
+ 'scribe-mute': 'var(--scribe-mute)',
90
+ 'invert': 'var(--scribe-invert)'
91
+ );
92
+
93
+
94
+ // Fill colors are background color,
95
+ // or any color that takes up a large area of the page
96
+ //
97
+ // this will generate css class tokens as well
98
+ // ie. `.fill-banner { color: var(--fill-banner); } `
99
+
100
+ $fill-colors: (
101
+ 'banner': 'var(--fill-banner)',
102
+ 'overlay': 'var(--fill-overlay)',
103
+ 'gallery': 'var(--fill-gallery)',
104
+ 'main': 'var(--fill-main-a)',
105
+ 'main-a': 'var(--fill-main-a)',
106
+ 'main-b': 'var(--fill-main-b)'
107
+ );
108
+
@@ -0,0 +1,32 @@
1
+
2
+
3
+
4
+ body {
5
+ line-height: 1.8em;
6
+ font-weight: 400;
7
+ font-family: 'Poppins', sans-serif;
8
+ @include media-query('md') {
9
+ font-size: 1.2rem;
10
+ }
11
+ }
12
+
13
+ h1, h2, h3, .h1, .h2, .h3 {
14
+ padding: .2em 0;
15
+ font-weight: 700;
16
+ font-family: 'Cinzel', serif;
17
+ font-size: 1.8em;
18
+ line-height: 1em;
19
+ }
20
+
21
+ h1, .h1 {
22
+ font-size: get-size('900');
23
+ font-weight: 400;
24
+ @include media-query('md') {
25
+ font-size: 2.2*get-size('900')
26
+ }
27
+ }
28
+
29
+ .menu {
30
+ font-family: 'Cinzel', serif;
31
+ }
32
+
@@ -0,0 +1,70 @@
1
+ .highlight .hll { background-color: #49483e }
2
+ .highlight { background: var(--fill-code); color: #f8f8f2 }
3
+ .highlight .c { color: #75715e } /* Comment */
4
+ .highlight .err { color: #960050; background-color: #1e0010 } /* Error */
5
+ .highlight .k { color: #66d9ef } /* Keyword */
6
+ .highlight .l { color: #ae81ff } /* Literal */
7
+ .highlight .n { color: #f8f8f2 } /* Name */
8
+ .highlight .o { color: #f92672 } /* Operator */
9
+ .highlight .p { color: #f8f8f2 } /* Punctuation */
10
+ .highlight .ch { color: #75715e } /* Comment.Hashbang */
11
+ .highlight .cm { color: #75715e } /* Comment.Multiline */
12
+ .highlight .cp { color: #75715e } /* Comment.Preproc */
13
+ .highlight .cpf { color: #75715e } /* Comment.PreprocFile */
14
+ .highlight .c1 { color: #75715e } /* Comment.Single */
15
+ .highlight .cs { color: #75715e } /* Comment.Special */
16
+ .highlight .gd { color: #f92672 } /* Generic.Deleted */
17
+ .highlight .ge { font-style: italic } /* Generic.Emph */
18
+ .highlight .gi { color: #a6e22e } /* Generic.Inserted */
19
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
20
+ .highlight .gu { color: #75715e } /* Generic.Subheading */
21
+ .highlight .kc { color: #66d9ef } /* Keyword.Constant */
22
+ .highlight .kd { color: #66d9ef } /* Keyword.Declaration */
23
+ .highlight .kn { color: #f92672 } /* Keyword.Namespace */
24
+ .highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
25
+ .highlight .kr { color: #66d9ef } /* Keyword.Reserved */
26
+ .highlight .kt { color: #66d9ef } /* Keyword.Type */
27
+ .highlight .ld { color: #e6db74 } /* Literal.Date */
28
+ .highlight .m { color: #ae81ff } /* Literal.Number */
29
+ .highlight .s { color: #e6db74 } /* Literal.String */
30
+ .highlight .na { color: #a6e22e } /* Name.Attribute */
31
+ .highlight .nb { color: #f8f8f2 } /* Name.Builtin */
32
+ .highlight .nc { color: #a6e22e } /* Name.Class */
33
+ .highlight .no { color: #66d9ef } /* Name.Constant */
34
+ .highlight .nd { color: #a6e22e } /* Name.Decorator */
35
+ .highlight .ni { color: #f8f8f2 } /* Name.Entity */
36
+ .highlight .ne { color: #a6e22e } /* Name.Exception */
37
+ .highlight .nf { color: #a6e22e } /* Name.Function */
38
+ .highlight .nl { color: #f8f8f2 } /* Name.Label */
39
+ .highlight .nn { color: #f8f8f2 } /* Name.Namespace */
40
+ .highlight .nx { color: #a6e22e } /* Name.Other */
41
+ .highlight .py { color: #f8f8f2 } /* Name.Property */
42
+ .highlight .nt { color: #f92672 } /* Name.Tag */
43
+ .highlight .nv { color: #f8f8f2 } /* Name.Variable */
44
+ .highlight .ow { color: #f92672 } /* Operator.Word */
45
+ .highlight .w { color: #f8f8f2 } /* Text.Whitespace */
46
+ .highlight .mb { color: #ae81ff } /* Literal.Number.Bin */
47
+ .highlight .mf { color: #ae81ff } /* Literal.Number.Float */
48
+ .highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
49
+ .highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
50
+ .highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
51
+ .highlight .sa { color: #e6db74 } /* Literal.String.Affix */
52
+ .highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
53
+ .highlight .sc { color: #e6db74 } /* Literal.String.Char */
54
+ .highlight .dl { color: #e6db74 } /* Literal.String.Delimiter */
55
+ .highlight .sd { color: #e6db74 } /* Literal.String.Doc */
56
+ .highlight .s2 { color: #e6db74 } /* Literal.String.Double */
57
+ .highlight .se { color: #ae81ff } /* Literal.String.Escape */
58
+ .highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
59
+ .highlight .si { color: #e6db74 } /* Literal.String.Interpol */
60
+ .highlight .sx { color: #e6db74 } /* Literal.String.Other */
61
+ .highlight .sr { color: #e6db74 } /* Literal.String.Regex */
62
+ .highlight .s1 { color: #e6db74 } /* Literal.String.Single */
63
+ .highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
64
+ .highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
65
+ .highlight .fm { color: #a6e22e } /* Name.Function.Magic */
66
+ .highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
67
+ .highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
68
+ .highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
69
+ .highlight .vm { color: #f8f8f2 } /* Name.Variable.Magic */
70
+ .highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
@@ -0,0 +1,10 @@
1
+
2
+ .bleed
3
+
4
+ width: 100vw
5
+ margin-left: calc( 50% - 50vw )
6
+
7
+ @include media-query('md')
8
+ width: 120%
9
+ margin-left: -10%
10
+
@@ -0,0 +1,32 @@
1
+
2
+
3
+ .box
4
+ margin: var(--x) var(--x)
5
+
6
+ .ml-x
7
+ margin-left: var(--x)
8
+ .mr-x
9
+ margin-right: var(--x)
10
+ .mt-x
11
+ margin-top: var(--x)
12
+ .mb-x
13
+ margin-bottom: var(--x)
14
+
15
+ .mx-x
16
+ margin-right: var(--x)
17
+ margin-left: var(--x)
18
+ .my-x
19
+ margin-top: var(--x)
20
+ margin-bottom: var(--x)
21
+
22
+ .hbox
23
+ display: grid
24
+ grid-auto-flow: column
25
+ justify-content: start
26
+ gap: 1em
27
+
28
+ .vbox
29
+ display: grid
30
+ grid-auto-flow: row
31
+ align-content: start
32
+ gap: 1em
@@ -0,0 +1,3 @@
1
+
2
+ .columns
3
+ columns: 15em auto
@@ -0,0 +1,13 @@
1
+
2
+
3
+ .box-shadow
4
+ box-shadow: 0 0 30px -10px black
5
+
6
+ .box-shadow-sm
7
+ box-shadow: 0 0 20px -10px black
8
+
9
+ .text-shadow
10
+ text-shadow: 0 0 20px black
11
+
12
+ .drop-shadow
13
+ filter: drop-shadow( 0 0 20px black )
data/assets/404.html ADDED
@@ -0,0 +1,25 @@
1
+ ---
2
+ permalink: /404.html
3
+ layout: default
4
+ ---
5
+
6
+ <style type="text/css" media="screen">
7
+ .container {
8
+ margin: 10px auto;
9
+ max-width: 600px;
10
+ text-align: center;
11
+ }
12
+ h1 {
13
+ margin: 30px 0;
14
+ font-size: 4em;
15
+ line-height: 1;
16
+ letter-spacing: -1px;
17
+ }
18
+ </style>
19
+
20
+ <div class="container">
21
+ <h1>404</h1>
22
+
23
+ <p><strong>Page not found :(</strong></p>
24
+ <p>The requested page could not be found.</p>
25
+ </div>
@@ -0,0 +1,7 @@
1
+ ---
2
+ ---
3
+
4
+ $banner-url: "{{site.frame9.banner | relative_url }}"
5
+
6
+ @import "{{ site.theme }}";
7
+
Binary file
data/assets/js/main.js ADDED
@@ -0,0 +1,5 @@
1
+ import {OpenGallery} from './openGallery.js';
2
+
3
+ window.addEventListener('load', function(){
4
+ OpenGallery.init('viewer', {reset_all: true} );
5
+ }, false);
@@ -0,0 +1,50 @@
1
+
2
+ export var OpenGallery = {
3
+
4
+ init: function(node_tag, options = {}) {
5
+
6
+ OpenGallery.options = options
7
+ OpenGallery.tag = node_tag
8
+
9
+
10
+ OpenGallery.nodes = document.querySelectorAll(`[${node_tag}]`);
11
+ OpenGallery.addMenuEventListeners()
12
+ },
13
+
14
+
15
+ setOpenAttr: function(obj, val) {
16
+ if( val ){
17
+ obj.setAttribute(OpenGallery.tag, 'open')
18
+ }else{
19
+ obj.setAttribute(OpenGallery.tag, 'closed')
20
+ }
21
+ },
22
+
23
+
24
+ onToggle: function(toggle_node) {
25
+ if( toggle_node.getAttribute(OpenGallery.tag) == 'open' ){
26
+
27
+ OpenGallery.setOpenAttr(toggle_node, false)
28
+
29
+ } else {
30
+
31
+ if( OpenGallery.options.reset_all ){
32
+ OpenGallery.nodes.forEach( function(n){
33
+ OpenGallery.setOpenAttr(n,false)
34
+ },false);
35
+ }
36
+
37
+ OpenGallery.setOpenAttr(toggle_node, true)
38
+ }
39
+ },
40
+
41
+ addMenuEventListeners: function() {
42
+ OpenGallery.nodes.forEach( function(n){
43
+
44
+ n.addEventListener("click",function(){
45
+ OpenGallery.onToggle(n)
46
+ },false);
47
+
48
+ })
49
+ },
50
+ }
data/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "framedpaneswebsite",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/CodeKarmaDev/FramedPanesWebsite.git"
12
+ },
13
+ "author": "",
14
+ "license": "ISC",
15
+ "bugs": {
16
+ "url": "https://github.com/CodeKarmaDev/FramedPanesWebsite/issues"
17
+ },
18
+ "homepage": "https://github.com/CodeKarmaDev/FramedPanesWebsite#readme",
19
+ "dependencies": {
20
+ "gorko": "^0.2.3"
21
+ }
22
+ }
metadata ADDED
@@ -0,0 +1,180 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: frame9-jekyll-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - opsaaaaa
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-08-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.1'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 2.1.4
23
+ type: :development
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '2.1'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 2.1.4
33
+ - !ruby/object:Gem::Dependency
34
+ name: webrick
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.6'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 1.6.1
43
+ type: :development
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '1.6'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 1.6.1
53
+ - !ruby/object:Gem::Dependency
54
+ name: jekyll-seo-tag
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '2.7'
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 2.7.0
63
+ type: :runtime
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '2.7'
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: 2.7.0
73
+ - !ruby/object:Gem::Dependency
74
+ name: jekyll
75
+ requirement: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - "~>"
78
+ - !ruby/object:Gem::Version
79
+ version: '4.1'
80
+ type: :runtime
81
+ prerelease: false
82
+ version_requirements: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - "~>"
85
+ - !ruby/object:Gem::Version
86
+ version: '4.1'
87
+ - !ruby/object:Gem::Dependency
88
+ name: jekyll-feed
89
+ requirement: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - "~>"
92
+ - !ruby/object:Gem::Version
93
+ version: '0.12'
94
+ type: :runtime
95
+ prerelease: false
96
+ version_requirements: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - "~>"
99
+ - !ruby/object:Gem::Version
100
+ version: '0.12'
101
+ description: Frame9's core feature is a 9 pane gallary.
102
+ email:
103
+ - sean@codekarma.dev
104
+ executables: []
105
+ extensions: []
106
+ extra_rdoc_files: []
107
+ files:
108
+ - LICENSE.txt
109
+ - README.md
110
+ - _config.yml
111
+ - _includes/banner.html
112
+ - _includes/custom_head.html
113
+ - _includes/fonts.html
114
+ - _includes/footer.html
115
+ - _includes/gallery.html
116
+ - _includes/gallery_item.html
117
+ - _includes/head.html
118
+ - _includes/header.html
119
+ - _includes/image.html
120
+ - _includes/section.html
121
+ - _includes/siblings.html
122
+ - _layouts/default.html
123
+ - _layouts/post.html
124
+ - _layouts/root.html
125
+ - _layouts/section.html
126
+ - _sass/block/banner.sass
127
+ - _sass/block/footer.sass
128
+ - _sass/block/gallery.sass
129
+ - _sass/block/img-wrap.sass
130
+ - _sass/block/logo.sass
131
+ - _sass/block/menu.sass
132
+ - _sass/block/root-layout.sass
133
+ - _sass/block/sibling-nav.sass
134
+ - _sass/composition/action.sass
135
+ - _sass/composition/code.scss
136
+ - _sass/composition/normalize.sass
137
+ - _sass/composition/size.sass
138
+ - _sass/composition/table.sass
139
+ - _sass/composition/text.sass
140
+ - _sass/composition/theme.sass
141
+ - _sass/exception/img-wrap.sass
142
+ - _sass/frame9-jekyll-theme.sass
143
+ - _sass/gorko-config.scss
144
+ - _sass/theme/colors.scss
145
+ - _sass/theme/font.scss
146
+ - _sass/theme/monokai.scss
147
+ - _sass/utility/bleed.sass
148
+ - _sass/utility/box.sass
149
+ - _sass/utility/columns.sass
150
+ - _sass/utility/shadow.sass
151
+ - assets/404.html
152
+ - assets/css/style.sass
153
+ - assets/img/avatar.png
154
+ - assets/js/main.js
155
+ - assets/js/openGallery.js
156
+ - package.json
157
+ homepage: https://github.com/CodeKarmaDev/frame9-jekyll-theme
158
+ licenses:
159
+ - MIT
160
+ metadata: {}
161
+ post_install_message:
162
+ rdoc_options: []
163
+ require_paths:
164
+ - lib
165
+ required_ruby_version: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - ">="
168
+ - !ruby/object:Gem::Version
169
+ version: 2.4.0
170
+ required_rubygems_version: !ruby/object:Gem::Requirement
171
+ requirements:
172
+ - - ">="
173
+ - !ruby/object:Gem::Version
174
+ version: '0'
175
+ requirements: []
176
+ rubygems_version: 3.2.3
177
+ signing_key:
178
+ specification_version: 4
179
+ summary: A simple multipurpose gallary focused jekyll template
180
+ test_files: []