spaacedout 1.0.2

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.
Files changed (45) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/LICENSE.haackbar +21 -0
  4. data/LICENSE.plainwhite-jekyll +21 -0
  5. data/README.md +131 -0
  6. data/_includes/comments/comments.html +3 -0
  7. data/_includes/comments/comments_link.html +3 -0
  8. data/_includes/comments/disqus_comments.html +20 -0
  9. data/_includes/comments/disqus_comments_link.html +7 -0
  10. data/_includes/end-notice.html +2 -0
  11. data/_includes/footer.html +3 -0
  12. data/_includes/head.html +22 -0
  13. data/_includes/head/google-adsense.html +1 -0
  14. data/_includes/head/google-analytics.html +6 -0
  15. data/_includes/head/stylesheets.html +4 -0
  16. data/_includes/head/twitter.html +8 -0
  17. data/_includes/header.html +43 -0
  18. data/_includes/info-notice.html +2 -0
  19. data/_includes/pagination.html +10 -0
  20. data/_includes/post/archive_post.html +19 -0
  21. data/_includes/post/edit.html +11 -0
  22. data/_includes/post/meta.html +23 -0
  23. data/_includes/post/tags.html +4 -0
  24. data/_includes/social-links.html +11 -0
  25. data/_includes/warning-notice.html +2 -0
  26. data/_layouts/default.html +14 -0
  27. data/_layouts/home.html +40 -0
  28. data/_layouts/page.html +14 -0
  29. data/_layouts/post.html +23 -0
  30. data/_sass/SpaacedOut.scss +3 -0
  31. data/_sass/core/base.scss +67 -0
  32. data/_sass/core/core.scss +8 -0
  33. data/_sass/core/footer.scss +6 -0
  34. data/_sass/core/header.scss +204 -0
  35. data/_sass/core/main.scss +19 -0
  36. data/_sass/core/notice.scss +16 -0
  37. data/_sass/core/post.scss +72 -0
  38. data/_sass/syntax-highlight.scss +156 -0
  39. data/_sass/variables/variables.scss +54 -0
  40. data/assets/js/utils.js +114 -0
  41. data/assets/pages/archives.md +14 -0
  42. data/assets/pages/tags.md +49 -0
  43. data/assets/style.scss +4 -0
  44. data/assets/syntax-highlight.scss +4 -0
  45. metadata +213 -0
@@ -0,0 +1,156 @@
1
+ $font-sans: Raleway, sans-serif;
2
+
3
+ // This was modified slightly from the post found at https://textuploader.com/1odmf, originally posted https://frankindev.com/2017/03/18/syntax-highlight-with-rouge-in-jekyll/
4
+ figure.highlight,
5
+ pre.highlight {
6
+ padding: 1rem 1.5rem;
7
+ margin: 1.5rem 0;
8
+ overflow: auto;
9
+ line-height: 1.4rem;
10
+ position: relative;
11
+ }
12
+
13
+ .highlighter-rouge {
14
+ font-weight: 300;
15
+ position: relative;
16
+ }
17
+
18
+ li code.highlighter-rouge,
19
+ p code.highlighter-rouge,
20
+ p kbd {
21
+ color: #c66;
22
+ font-size: 1rem;
23
+ background-color: #f7f7f5;
24
+ padding: 2px 4px;
25
+ border-radius: 2px;
26
+ word-break: break-word;
27
+ }
28
+
29
+ kbd {
30
+ border: 1px solid #343a40;
31
+ border-radius: 4px;
32
+ }
33
+
34
+ figure.highlight::before,
35
+ div.highlighter-rouge::before {
36
+ content: attr(data-lang);
37
+ font-family: $font-sans;
38
+ text-transform: lowercase;
39
+ font-size: .8rem;
40
+ color: #e9ecef;
41
+ position: absolute;
42
+ display: block;
43
+ height: 1rem;
44
+ right: .5rem;
45
+ z-index: 5;
46
+ }
47
+
48
+ figure.highlight::before {
49
+ margin-top: -1rem;
50
+ }
51
+
52
+ .rouge-table .code pre {
53
+ overflow: hidden;
54
+ }
55
+
56
+ table.rouge-table,
57
+ table.rouge-table tr,
58
+ table.rouge-table td,
59
+ table.rouge-table pre {
60
+ border: 0;
61
+ padding: 0;
62
+ margin: 0;
63
+ }
64
+
65
+ table.rouge-table td.gutter {
66
+ padding-right: .5rem;
67
+ border-right: 1px solid #adb5bd;
68
+ }
69
+
70
+ table.rouge-table td.code {
71
+ padding-left: .5rem;
72
+ }
73
+
74
+ figure pre {
75
+ margin-bottom: 0;
76
+ }
77
+
78
+ .lineno {
79
+ text-align: right;
80
+ margin-right: 10px!important;
81
+ }
82
+
83
+ /* Base16 Tomorrow Dark by Chris Kempson; https://github.com/idleberg */
84
+ .highlight,
85
+ .highlight pre,
86
+ .highlight table {
87
+ background: #2e3e4e;
88
+ color: #e9ecef;
89
+ border-radius: 4px;
90
+ font-size: 1rem;
91
+ }
92
+
93
+ .highlight .hll { background-color: #373b41 }
94
+ .highlight .c { color: #969896 } /* Comment */
95
+ .highlight .err { color: #cc6666 } /* Error */
96
+ .highlight .k { color: #b294bb } /* Keyword */
97
+ .highlight .l { color: #de935f } /* Literal */
98
+ .highlight .n, .highlight .h { color: #ffffff } /* Name */
99
+ .highlight .o { color: #8abeb7 } /* Operator */
100
+ .highlight .p { color: #ffffff } /* Punctuation */
101
+ .highlight .cm { color: #969896 } /* Comment.Multiline */
102
+ .highlight .cp { color: #969896 } /* Comment.Preproc */
103
+ .highlight .c1 { color: #969896 } /* Comment.Single */
104
+ .highlight .cs { color: #969896 } /* Comment.Special */
105
+ .highlight .gd { color: #cc6666 } /* Generic.Deleted */
106
+ .highlight .ge { font-style: italic } /* Generic.Emph */
107
+ .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
108
+ .highlight .gi { color: #b5bd68 } /* Generic.Inserted */
109
+ .highlight .gp { color: #969896; font-weight: bold } /* Generic.Prompt */
110
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
111
+ .highlight .gu { color: #8abeb7; font-weight: bold } /* Generic.Subheading */
112
+ .highlight .kc { color: #b294bb } /* Keyword.Constant */
113
+ .highlight .kd { color: #b294bb } /* Keyword.Declaration */
114
+ .highlight .kn { color: #8abeb7 } /* Keyword.Namespace */
115
+ .highlight .kp { color: #b294bb } /* Keyword.Pseudo */
116
+ .highlight .kr { color: #b294bb } /* Keyword.Reserved */
117
+ .highlight .kt { color: #f0c674 } /* Keyword.Type */
118
+ .highlight .ld { color: #b5bd68 } /* Literal.Date */
119
+ .highlight .m { color: #de935f } /* Literal.Number */
120
+ .highlight .s { color: #b5bd68 } /* Literal.String */
121
+ .highlight .na { color: #81a2be } /* Name.Attribute */
122
+ .highlight .nb { color: #ffffff } /* Name.Builtin */
123
+ .highlight .nc { color: #f0c674 } /* Name.Class */
124
+ .highlight .no { color: #cc6666 } /* Name.Constant */
125
+ .highlight .nd { color: #8abeb7 } /* Name.Decorator */
126
+ .highlight .ni { color: #ffffff } /* Name.Entity */
127
+ .highlight .ne { color: #cc6666 } /* Name.Exception */
128
+ .highlight .nf { color: #81a2be } /* Name.Function */
129
+ .highlight .nl { color: #ffffff } /* Name.Label */
130
+ .highlight .nn { color: #f0c674 } /* Name.Namespace */
131
+ .highlight .nx { color: #81a2be } /* Name.Other */
132
+ .highlight .py { color: #ffffff } /* Name.Property */
133
+ .highlight .nt { color: #8abeb7 } /* Name.Tag */
134
+ .highlight .nv { color: #cc6666 } /* Name.Variable */
135
+ .highlight .ow { color: #8abeb7 } /* Operator.Word */
136
+ .highlight .w { color: #ffffff } /* Text.Whitespace */
137
+ .highlight .mf { color: #de935f } /* Literal.Number.Float */
138
+ .highlight .mh { color: #de935f } /* Literal.Number.Hex */
139
+ .highlight .mi { color: #de935f } /* Literal.Number.Integer */
140
+ .highlight .mo { color: #de935f } /* Literal.Number.Oct */
141
+ .highlight .sb { color: #b5bd68 } /* Literal.String.Backtick */
142
+ .highlight .sc { color: #ffffff } /* Literal.String.Char */
143
+ .highlight .sd { color: #969896 } /* Literal.String.Doc */
144
+ .highlight .s2 { color: #b5bd68 } /* Literal.String.Double */
145
+ .highlight .se { color: #de935f } /* Literal.String.Escape */
146
+ .highlight .sh { color: #b5bd68 } /* Literal.String.Heredoc */
147
+ .highlight .si { color: #de935f } /* Literal.String.Interpol */
148
+ .highlight .sx { color: #b5bd68 } /* Literal.String.Other */
149
+ .highlight .sr { color: #b5bd68 } /* Literal.String.Regex */
150
+ .highlight .s1 { color: #b5bd68 } /* Literal.String.Single */
151
+ .highlight .ss { color: #b5bd68 } /* Literal.String.Symbol */
152
+ .highlight .bp { color: #ffffff } /* Name.Builtin.Pseudo */
153
+ .highlight .vc { color: #cc6666 } /* Name.Variable.Class */
154
+ .highlight .vg { color: #cc6666 } /* Name.Variable.Global */
155
+ .highlight .vi { color: #cc6666 } /* Name.Variable.Instance */
156
+ .highlight .il { color: #de935f } /* Literal.Number.Integer.Long */
@@ -0,0 +1,54 @@
1
+ $baseurl: '{{ site.baseurl }}' !default;
2
+ $transition-time: 0.3s !default;
3
+
4
+ // Fonts
5
+ $font-standard: Merriweather, serif !default;
6
+ $font-sans: Raleway, sans-serif !default;
7
+ $font-site-title: Lato, sans-serif !default;
8
+ $font-icons: "FontAwesome" !default;
9
+
10
+ // Colors
11
+ $color-primary: #222 !default;
12
+ $color-secondary: #021523 !default;
13
+ $color-darkgrey: #555 !default;
14
+ $color-grey: #2e3e4e !default;
15
+ $color-lightgrey: #e9ecef !default;
16
+ $color-lightblue: #81a2be !default;
17
+ $color-blue: #0a59b0 !default;
18
+ $color-teal: #5CCDDE !default;
19
+ $color-navy: #021523 !default;
20
+ $color-yellow: #ffc107 !default;
21
+ $color-red: #D9534F !default;
22
+ $color-orange: #FF6154 !default;
23
+ $color-purple: #98b8fe !default;
24
+ $color-white: #fff !default;
25
+
26
+ $color-link: $color-teal !default;
27
+ $color-link-hover: $color-lightblue !default;
28
+
29
+ $color-background: #f4f4f4 !default;
30
+ $color-header-background: $color-navy !default;
31
+ $color-header-background-active: rgba(104,123,137,.5) !default;
32
+ $color-social-icons-background: $color-navy !default;
33
+ $color-social-icons-color: $color-lightgrey !default;
34
+ $color-social-icons-hover: $color-purple !default;
35
+ $color-post-title: $color-blue !default;
36
+ $color-post-meta: $color-darkgrey !default;
37
+
38
+ // Sizes
39
+ $size-standard-font: 16px !default;
40
+ $size-standard-line-height: 1.5em !default;
41
+
42
+ $size-about-pane: 300px !default;
43
+ $size-about-pane-mobile: 55px !default;
44
+
45
+ // Media Breakpoints
46
+ $media-breakpoint-sm-min: 576px !default;
47
+ $media-breakpoint-md-min: 768px !default;
48
+ $media-breakpoint-lg-min: 992px !default;
49
+ $media-breakpoint-xl-min: 1200px !default;
50
+
51
+ $media-breakpoint-xs-max: 575.99px !default;
52
+ $media-breakpoint-sm-max: 767.99px !default;
53
+ $media-breakpoint-md-max: 991.99px !default;
54
+ $media-breakpoint-lg-max: 1199.99px !default;
@@ -0,0 +1,114 @@
1
+ // Borrowed from haacked/haackbar and modified for many purposes.
2
+ var SpaacedOut = (function() {
3
+ // NodeList foreach Polyfill
4
+ if (window.NodeList && !NodeList.prototype.forEach) {
5
+ NodeList.prototype.forEach = function (callback, thisArg) {
6
+ thisArg = thisArg || window
7
+ for (var i = 0; i < this.length; i++) {
8
+ callback.call(thisArg, this[i], i, this)
9
+ }
10
+ }
11
+ }
12
+
13
+ // Return the namespace object.
14
+ return {
15
+ ready: function(init) {
16
+ if (document.readyState === "complete" || (document.readyState !== "loading" && !document.documentElement.doScroll)) {
17
+ window.setTimeout(init)
18
+ }
19
+ else {
20
+ var completed = function() {
21
+ document.removeEventListener("DOMContentLoaded", completed)
22
+ window.removeEventListener("load", completed)
23
+ init()
24
+ }
25
+ document.addEventListener("DOMContentLoaded", completed)
26
+ window.addEventListener("load", completed)
27
+ }
28
+ },
29
+ get: function(elementId) {
30
+ var element = document.getElementById(elementId)
31
+ if (element)
32
+ return element
33
+ var elements = document.getElementsByClassName(elementId)
34
+ if (elements && elements.length > 0)
35
+ return elements[0]
36
+ return null
37
+ },
38
+ codeIdentity: function() {
39
+ document.querySelectorAll(".highlighter-rouge, figure.highlight").forEach(i => {
40
+ i.setAttribute("data-lang", "code");
41
+ var l = i.getAttribute("class").split("language-");
42
+ if (l.length > 1) {
43
+ var lang = l[1].split(" ");
44
+ if (lang.length > 0) {
45
+ i.setAttribute("data-lang", lang[0]);
46
+ }
47
+ }
48
+ //1 < l.length && (l = l[1].split(" "[0], i.setAttribute("data-lang", l)));
49
+ });
50
+ },
51
+ setupMenuToggle: function() {
52
+ var menuToggle = document.getElementById('menu-toggle');
53
+ if (menuToggle) {
54
+ menuToggle.addEventListener('click', function(e){
55
+ document.body.classList.toggle('menu--opened');
56
+ SpaacedOut.menuToggleIcon();
57
+ e.preventDefault();
58
+ },false);
59
+ document.body.classList.remove('menu--opened');
60
+
61
+ window.addEventListener('resize', function () {
62
+ if (menuToggle.offsetParent === null) {
63
+ document.body.classList.remove('menu--opened');
64
+ }
65
+ }, true);
66
+ }
67
+ },
68
+ menuToggleIcon: function() {
69
+ var menuToggle = document.getElementById('menu-toggle');
70
+ if (document.body.classList.contains('menu--opened')) {
71
+ menuToggle.getElementsByClassName('fa-bars')[0].style.display = "none";
72
+ menuToggle.getElementsByClassName('fa-bars')[0].style.visibility = "hidden";
73
+ menuToggle.getElementsByClassName('fa-times')[0].style.display = "block";
74
+ menuToggle.getElementsByClassName('fa-times')[0].style.visibility = "visible";
75
+ } else {
76
+ menuToggle.getElementsByClassName('fa-bars')[0].style.display = "block";
77
+ menuToggle.getElementsByClassName('fa-bars')[0].style.visibility = "visible";
78
+ menuToggle.getElementsByClassName('fa-times')[0].style.display = "none";
79
+ menuToggle.getElementsByClassName('fa-times')[0].style.visibility = "hidden";
80
+ }
81
+ },
82
+ setPostLinkTargetToBlank: function() {
83
+ var postContent = document.getElementsByClassName("post-content");
84
+ if (postContent.length > 0) {
85
+ var links = postContent[0].getElementsByTagName("a");
86
+ for (var link of links) {
87
+ link.setAttribute("target", "_blank");
88
+ }
89
+ }
90
+ }
91
+ };
92
+ })()
93
+
94
+ // This sets the `current-page` css class on the nav link
95
+ // that points to the current page so we can render it differently
96
+ // We do this in JS so that we can cache the header once rather than
97
+ // generate it for every single page.
98
+ SpaacedOut.ready(function() {
99
+ // Set current page on navigation
100
+ const path = window.location.pathname
101
+ const currentPageLink = document.querySelector('.site-nav li a[href="' + path + '"]')
102
+ if (currentPageLink) {
103
+ const listItem = currentPageLink.parentElement
104
+ listItem.classList.add('current-page')
105
+ const span = document.createElement('span')
106
+ span.innerText = currentPageLink.textContent
107
+ listItem.appendChild(span)
108
+ listItem.removeChild(currentPageLink)
109
+ }
110
+ SpaacedOut.codeIdentity();
111
+ SpaacedOut.setupMenuToggle();
112
+ SpaacedOut.menuToggleIcon();
113
+ SpaacedOut.setPostLinkTargetToBlank();
114
+ })
@@ -0,0 +1,14 @@
1
+ ---
2
+ title: Archives
3
+ permalink: /archives/
4
+ include_nav: true
5
+ ---
6
+
7
+ <div class="archives" itemscope itemtype="http://schema.org/Blog">
8
+ {% for post in site.posts %}
9
+ {% if post.layout == 'post' %}
10
+ {% include post/archive_post.html %}
11
+ {% endif %}
12
+ {% endfor %}
13
+ </ul>
14
+ </div>
@@ -0,0 +1,49 @@
1
+ ---
2
+ title: Tags
3
+ permalink: /tags/
4
+ include_nav: false
5
+ ---
6
+
7
+ <script>
8
+ SpaacedOut.ready(() => {
9
+ let title = document.getElementsByClassName('post-title')
10
+ if (title) {
11
+ title[0].style.display = 'none'
12
+ }
13
+ let tag = window.location.hash
14
+ if(tag) {
15
+ let tagElement = document.getElementById(tag.substring(1))
16
+ if (tagElement) {
17
+ tagElement.style.display = 'block'
18
+ }
19
+ }
20
+ else {
21
+ // Let's just show them all
22
+ var tags = document.getElementsByClassName('tag')
23
+ for (var tagElement of tags) {
24
+ if (tagElement) {
25
+ tagElement.style.display = 'block'
26
+ }
27
+ }
28
+ }
29
+ })
30
+ </script>
31
+
32
+ {% assign tags = site.tags %}
33
+
34
+ <div class="tag_page">
35
+ {% for tag in tags %}
36
+ {% assign tagname = tag | first | slugify %}
37
+ <div id="{{ tagname }}" class="tag">
38
+ <h2>#{{ tagname }} Posts</h2>
39
+ {% assign posts = tag[1] %}
40
+ <ul>
41
+ {% for post in posts %}
42
+ <li>
43
+ <a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a>
44
+ </li>
45
+ {% endfor %}
46
+ </ul>
47
+ </div>
48
+ {% endfor %}
49
+ </div>
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "SpaacedOut";
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "syntax-highlight";
metadata ADDED
@@ -0,0 +1,213 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: spaacedout
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Jason Gaylord
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-05-15 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.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-avatar
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.7.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.7.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-feed
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.13.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.13.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-gist
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 1.5.0
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 1.5.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: jekyll-paginate
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 1.1.0
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 1.1.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: jekyll-seo-tag
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 2.6.1
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 2.6.1
97
+ - !ruby/object:Gem::Dependency
98
+ name: jekyll-sitemap
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 1.4.0
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 1.4.0
111
+ - !ruby/object:Gem::Dependency
112
+ name: bundler
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 2.0.4
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 2.0.4
125
+ - !ruby/object:Gem::Dependency
126
+ name: rake
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: 13.0.1
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: 13.0.1
139
+ description:
140
+ email:
141
+ - jason@jasongaylord.com
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - LICENSE
147
+ - LICENSE.haackbar
148
+ - LICENSE.plainwhite-jekyll
149
+ - README.md
150
+ - _includes/comments/comments.html
151
+ - _includes/comments/comments_link.html
152
+ - _includes/comments/disqus_comments.html
153
+ - _includes/comments/disqus_comments_link.html
154
+ - _includes/end-notice.html
155
+ - _includes/footer.html
156
+ - _includes/head.html
157
+ - _includes/head/google-adsense.html
158
+ - _includes/head/google-analytics.html
159
+ - _includes/head/stylesheets.html
160
+ - _includes/head/twitter.html
161
+ - _includes/header.html
162
+ - _includes/info-notice.html
163
+ - _includes/pagination.html
164
+ - _includes/post/archive_post.html
165
+ - _includes/post/edit.html
166
+ - _includes/post/meta.html
167
+ - _includes/post/tags.html
168
+ - _includes/social-links.html
169
+ - _includes/warning-notice.html
170
+ - _layouts/default.html
171
+ - _layouts/home.html
172
+ - _layouts/page.html
173
+ - _layouts/post.html
174
+ - _sass/SpaacedOut.scss
175
+ - _sass/core/base.scss
176
+ - _sass/core/core.scss
177
+ - _sass/core/footer.scss
178
+ - _sass/core/header.scss
179
+ - _sass/core/main.scss
180
+ - _sass/core/notice.scss
181
+ - _sass/core/post.scss
182
+ - _sass/syntax-highlight.scss
183
+ - _sass/variables/variables.scss
184
+ - assets/js/utils.js
185
+ - assets/pages/archives.md
186
+ - assets/pages/tags.md
187
+ - assets/style.scss
188
+ - assets/syntax-highlight.scss
189
+ homepage: https://github.com/jasongaylord/SpaacedOut
190
+ licenses:
191
+ - MIT
192
+ metadata: {}
193
+ post_install_message:
194
+ rdoc_options: []
195
+ require_paths:
196
+ - lib
197
+ required_ruby_version: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: '0'
202
+ required_rubygems_version: !ruby/object:Gem::Requirement
203
+ requirements:
204
+ - - ">="
205
+ - !ruby/object:Gem::Version
206
+ version: '0'
207
+ requirements: []
208
+ rubygems_version: 3.1.2
209
+ signing_key:
210
+ specification_version: 4
211
+ summary: A theme that includes the menu on the side for desktops and at the top for
212
+ mobile.
213
+ test_files: []