jekyll-theme-leaf 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 733c4497de39ec9517c3e7468eabf22bee6ebc0b6f8994902668d90fe3319250
4
+ data.tar.gz: 83e3fc73673036aa8a1c11474b642a5c2e6f465f52b4858430ebb7b2e0244020
5
+ SHA512:
6
+ metadata.gz: f7edff35fe54201e548c5644cbc0cf7e2607a5a0a7c65ccc9f6eca0d83a7b8c1b45d2a4c7836b3ff3a5fe04f503f42bcbfae56107e8cca19d61c294b6937095b
7
+ data.tar.gz: 8c686ed7e307e8c18ab5f9ee1b24959bc268a48861d68211757d63a9dc8c4173bb99fabd5b2e5dcf9d0945fe91bb2b0eebf38aeb8500ccc50aa576941cc56510
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Supun Kavinda
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,138 @@
1
+ # jekyll-theme-leaf
2
+
3
+ 👇👇
4
+
5
+ [Preview Theme](https://supunkavinda.github.io/jekyll-theme-leaf/)
6
+
7
+ Jekyll Theme Leaf is a very simple yet beautiful theme created by [Supun Kavinda](https://twitter.com/_SupunKavinda). It is designed for those who love dark sites.
8
+
9
+
10
+ ## Installation
11
+
12
+ Add this line to your Jekyll site's `Gemfile`:
13
+
14
+ ```ruby
15
+ gem "jekyll-theme-leaf"
16
+ ```
17
+
18
+ And add this line to your Jekyll site's `_config.yml`:
19
+
20
+ ```yaml
21
+ theme: jekyll-theme-leaf
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ $ bundle
27
+
28
+ Or install it yourself as:
29
+
30
+ $ gem install jekyll-theme-leaf
31
+
32
+ ## Usage
33
+
34
+ ### Layouts
35
+
36
+ Refers to files within the `_layouts` directory, that define the markup for your theme.
37
+
38
+ * `default.html` - The base markup of all other layouts.
39
+ * `home.html` - Home or index page layout.
40
+ * `page.html` - Page layout (These are not listed as posts).
41
+ * `posts.html` - Posts layout. These are listed in the home directory.
42
+
43
+ ### Includes
44
+
45
+ These are the files within the `_includes` directory.
46
+
47
+ * `footer.html` - Markup for the footer. It's a minimal footer with the site title and twitter and github links.
48
+ * `google-analytics.html` - Contains the [Google Analytics](https://analytics.google.com/analytics/web/) code.
49
+ * `head.html` - Contains the HTML code for the `<head>`.
50
+ * `header.html` - The header/top navigation bar of the site.
51
+ * `hyvor-talk-comments.html` - [Hyvor Talk](https://talk.hyvor.com) installation code with a customized color palette.
52
+
53
+ ### Sass
54
+
55
+ * `leaf.scss` - The main SCSS file. Contains several variables and mixins.
56
+ * `_base.scss` - Primary styles
57
+ * `_highlight-dark.scss` - Code highlighting
58
+ * `_layout.scss` - Layout SCSS files
59
+ * `_layout_header.scss` - Styles of the header (`_includes/header.html`)
60
+ * `_layout_home.scss` - Styles of the home (`_layouts/home.html`)
61
+ * `_layout-post.scss` - Styles of the post and page layouts (`_layouts/posts.html`, `_layouts/page.html`)
62
+
63
+ ### Assets
64
+
65
+ * `assets/css/style.css` - Imports `_sass/leaf.scss`.
66
+ * `assets/default-icon.png` - The leaf icon.
67
+
68
+ ### Plugins
69
+
70
+ Leaf Jekyll theme uses two plugins by default.
71
+
72
+ * `jekyll-seo-tag` - For better SEO
73
+ * `jekyll-feed` - For RSS feed
74
+
75
+ ## Configuration
76
+
77
+ Here's the basic `_config.yml` file of this plugin.
78
+
79
+ ```yaml
80
+ title: Leaf Blog
81
+ iconURL: assets/default-icon.png
82
+ theme: jekyll-theme-leaf
83
+
84
+ permalink: :slug
85
+
86
+ social:
87
+ twitter: YOUR_TWITTER
88
+ github: YOUR_GITHUB
89
+
90
+ plugins:
91
+ - jekyll-feed
92
+ - jekyll-seo-tag
93
+
94
+ ### comments & analytics
95
+ hyvor_talk_website_id: YOUR_WEBSITE_ID
96
+ google_analytics: UA-NNNNNNNN-N
97
+ ```
98
+
99
+ ### Adding Comments
100
+
101
+ The Leaf Jekyll theme uses [Hyvor Talk](https://talk.hyvor.com) comments. The colors are customized based for the theme therefore you don't need to customize colors in the console.
102
+
103
+ * First, [login to the Hyvor Talk console](https://talk.hyvor.com/console)
104
+ * Register your website
105
+ * Get your website ID from the **General** section of the console.
106
+ * Then, replace `YOUR_WEBSITE_ID` in the above code in `_config.yml` with your code.
107
+
108
+ Ex:
109
+
110
+ ```yaml
111
+ hyvor_talk_website_id: 14
112
+ ```
113
+
114
+ ### Adding Google Analytics
115
+
116
+ * Sign up to [Google Analytics](https://analytics.google.com)
117
+ * Add your website and get the tracking ID.
118
+ * Replace `UA-NNNNNNNN-N` with your tracking ID.
119
+
120
+ Google Analytics will only appear in production.
121
+
122
+ ## Contributing
123
+
124
+ Bug reports and pull requests are welcome on GitHub at https://github.com/SupunKavinda/jekyll-theme-leaf. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
125
+
126
+ ## Development
127
+
128
+ To set up your environment to develop this theme, run `bundle install`.
129
+
130
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
131
+
132
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
133
+ To add a custom directory to your theme-gem, please edit the regexp in `leaf.gemspec` accordingly.
134
+
135
+ ## License
136
+
137
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
138
+
@@ -0,0 +1,20 @@
1
+ <footer class="site-footer h-card">
2
+ <data class="u-url" href="{{ "/" | relative_url }}"></data>
3
+
4
+ <div class="wrapper">
5
+
6
+ <div class="footer">
7
+ <div class="footer-title">{{ 'now' | date: '%Y' }} &copy; {{site.title}}</div>
8
+
9
+ <div class="footer-social-links">
10
+ <a target="_blank" rel="me" href="https://github.com/{{ site.social.github }}">
11
+ <svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub icon</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg>
12
+ </a>
13
+ <a target="_blank" rel="me" href="https://twitter.com/{{ site.social.twitter }}">
14
+ <svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Twitter icon</title><path d="M23.954 4.569c-.885.389-1.83.654-2.825.775 1.014-.611 1.794-1.574 2.163-2.723-.951.555-2.005.959-3.127 1.184-.896-.959-2.173-1.559-3.591-1.559-2.717 0-4.92 2.203-4.92 4.917 0 .39.045.765.127 1.124C7.691 8.094 4.066 6.13 1.64 3.161c-.427.722-.666 1.561-.666 2.475 0 1.71.87 3.213 2.188 4.096-.807-.026-1.566-.248-2.228-.616v.061c0 2.385 1.693 4.374 3.946 4.827-.413.111-.849.171-1.296.171-.314 0-.615-.03-.916-.086.631 1.953 2.445 3.377 4.604 3.417-1.68 1.319-3.809 2.105-6.102 2.105-.39 0-.779-.023-1.17-.067 2.189 1.394 4.768 2.209 7.557 2.209 9.054 0 13.999-7.496 13.999-13.986 0-.209 0-.42-.015-.63.961-.689 1.8-1.56 2.46-2.548l-.047-.02z"/></svg>
15
+ </a>
16
+ </div>
17
+ </div>
18
+ </div>
19
+
20
+ </footer>
@@ -0,0 +1,9 @@
1
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
2
+ <script>
3
+ window['ga-disable-{{ site.google_analytics }}'] = window.doNotTrack === "1" || navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1";
4
+ window.dataLayer = window.dataLayer || [];
5
+ function gtag(){dataLayer.push(arguments);}
6
+ gtag('js', new Date());
7
+
8
+ gtag('config', '{{ site.google_analytics }}');
9
+ </script>
@@ -0,0 +1,12 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+ {%- seo -%}
6
+ <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
7
+ {%- feed_meta -%}
8
+ {%- if jekyll.environment == 'production' and site.google_analytics -%}
9
+ {%- include google-analytics.html -%}
10
+ {%- endif -%}
11
+
12
+ </head>
@@ -0,0 +1,41 @@
1
+ <header class="site-header">
2
+ {%- assign default_paths = site.pages | map: "path" -%}
3
+ {%- assign page_paths = site.header_pages | default: default_paths -%}
4
+ {%- assign titles_size = site.pages | map: 'title' | join: '' | size -%}
5
+ <a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
6
+
7
+ {%- if titles_size > 0 -%}
8
+ <nav class="site-nav">
9
+ <input type="checkbox" id="nav-trigger" class="nav-trigger" />
10
+ <label for="nav-trigger">
11
+ <span class="menu-icon">
12
+ <svg viewBox="0 0 18 15" width="18px" height="15px">
13
+ <path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
14
+ </svg>
15
+ </span>
16
+ </label>
17
+
18
+ <div class="trigger">
19
+ {%- for path in page_paths -%}
20
+ {%- assign my_page = site.pages | where: "path", path | first -%}
21
+ {%- if my_page.title -%}
22
+ {% if my_page.url == page.url %}
23
+ {% assign className = "page-link active" %}
24
+ {% else %}
25
+ {% assign className = "page-link" %}
26
+ {% endif %}
27
+ <a class="{{ className }}" href="{{ my_page.url | relative_url }}">
28
+ {{ my_page.title | escape }}
29
+ </a>
30
+ {%- endif -%}
31
+ {%- endfor -%}
32
+ </div>
33
+ </nav>
34
+ {%- endif -%}
35
+
36
+
37
+ <div class="site-icon">
38
+ <img src="{{ site.iconURL }}" />
39
+ </div>
40
+
41
+ </header>
@@ -0,0 +1,19 @@
1
+ <div id="hyvor-talk-view"></div>
2
+ <script type="text/javascript">
3
+ var HYVOR_TALK_WEBSITE = '{{ site.hyvor_talk_website_id }}'; // DO NOT CHANGE THIS
4
+ var HYVOR_TALK_CONFIG = {
5
+ url: '{{ page.url | absolute_url }}',
6
+ id: '{{page.id}}',
7
+ palette: {
8
+ accent: "#86bb48",
9
+ accentText: "#080808",
10
+ footerHeader: "#171616",
11
+ footerHeaderText: "#656363",
12
+ box: "#3A3A38",
13
+ boxText: "#E0E0E0",
14
+ boxLightText: "#AAAAAA",
15
+ backgroundText: "#E0E0E0"
16
+ }
17
+ };
18
+ </script>
19
+ <script async type="text/javascript" src="//talk.hyvor.com/web-api/embed"></script>
@@ -0,0 +1,20 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {%- include head.html -%}
5
+
6
+ <body>
7
+
8
+ {%- include header.html -%}
9
+
10
+ <main class="page-content" aria-label="Content">
11
+ <div class="wrapper">
12
+ {{ content }}
13
+ </div>
14
+ </main>
15
+
16
+ {%- include footer.html -%}
17
+
18
+ </body>
19
+
20
+ </html>
@@ -0,0 +1,28 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="home">
6
+
7
+ {{ content }}
8
+
9
+ {% assign posts = site.posts %}
10
+
11
+
12
+ {%- if posts.size > 0 -%}
13
+ {%- if page.list_title -%}
14
+ <h2 class="post-list-heading">{{ page.list_title }}</h2>
15
+ {%- endif -%}
16
+ <div class="box home-box">
17
+ <div class="post-list">
18
+ {%- for post in posts -%}
19
+ <a class="post-link" href="{{ post.url | relative_url }}">
20
+ <h3>{{ post.title | escape }}</h3>
21
+ </a>
22
+ {%- endfor -%}
23
+ </div>
24
+ </div>
25
+
26
+ {%- endif -%}
27
+
28
+ </div>
@@ -0,0 +1,14 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article class="post">
5
+
6
+ <header class="post-header">
7
+ <h1 class="post-title">{{ page.title | escape }}</h1>
8
+ </header>
9
+
10
+ <div class="post-content">
11
+ {{ content }}
12
+ </div>
13
+
14
+ </article>
@@ -0,0 +1,46 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
5
+
6
+ <header class="post-header">
7
+ <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
8
+ </header>
9
+
10
+ <div class="post-content e-content" itemprop="articleBody">
11
+ {{ content }}
12
+ </div>
13
+
14
+ <p class="post-meta">
15
+ {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
16
+ {%- if page.modified_date -%}
17
+ {%- assign mdate = page.modified_date | date_to_xmlschema -%}
18
+ <time class="dt-modified" datetime="{{ mdate }}" itemprop="dateModified">
19
+ Last Updated on {{ mdate | date: date_format }}
20
+ </time>
21
+ {%- else -%}
22
+ <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
23
+ {{ page.date | date: date_format }}
24
+ </time>
25
+ {%- endif -%}
26
+ {%- if page.author -%}
27
+ • {% for author in page.author %}
28
+ <span itemprop="author" itemscope itemtype="http://schema.org/Person">
29
+ <span class="p-author h-card" itemprop="name">{{ author }}</span></span>
30
+ {%- if forloop.last == false %}, {% endif -%}
31
+ {% endfor %}
32
+ {%- endif -%}
33
+ </p>
34
+
35
+
36
+ <a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
37
+ </article>
38
+
39
+
40
+ {%- if site.hyvor_talk_website_id -%}
41
+ <div class="comments">
42
+ {%- include hyvor-talk-comments.html -%}
43
+ </div>
44
+ {%- endif -%}
45
+
46
+
@@ -0,0 +1,197 @@
1
+ // reset
2
+ body, h1, h2, h3, h4, h5, h6,
3
+ p, blockquote, pre, hr,
4
+ dl, dd, ol, ul, figure {
5
+ margin: 0;
6
+ padding: 0;
7
+ }
8
+
9
+ * {
10
+ box-sizing: border-box;
11
+ }
12
+
13
+ body {
14
+
15
+
16
+ // background style
17
+ background-color: #454545;
18
+ // from svgbackgrounds.com
19
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3CradialGradient id='a' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%23000000'/%3E%3Cstop offset='1' stop-color='%23454545'/%3E%3C/radialGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='0' y1='750' x2='1550' y2='750'%3E%3Cstop offset='0' stop-color='%23232323'/%3E%3Cstop offset='1' stop-color='%23454545'/%3E%3C/linearGradient%3E%3Cpath id='s' fill='url(%23b)' d='M1549.2 51.6c-5.4 99.1-20.2 197.6-44.2 293.6c-24.1 96-57.4 189.4-99.3 278.6c-41.9 89.2-92.4 174.1-150.3 253.3c-58 79.2-123.4 152.6-195.1 219c-71.7 66.4-149.6 125.8-232.2 177.2c-82.7 51.4-170.1 94.7-260.7 129.1c-90.6 34.4-184.4 60-279.5 76.3C192.6 1495 96.1 1502 0 1500c96.1-2.1 191.8-13.3 285.4-33.6c93.6-20.2 185-49.5 272.5-87.2c87.6-37.7 171.3-83.8 249.6-137.3c78.4-53.5 151.5-114.5 217.9-181.7c66.5-67.2 126.4-140.7 178.6-218.9c52.3-78.3 96.9-161.4 133-247.9c36.1-86.5 63.8-176.2 82.6-267.6c18.8-91.4 28.6-184.4 29.6-277.4c0.3-27.6 23.2-48.7 50.8-48.4s49.5 21.8 49.2 49.5c0 0.7 0 1.3-0.1 2L1549.2 51.6z'/%3E%3Cg id='g'%3E%3Cuse href='%23s' transform='scale(0.12) rotate(60)'/%3E%3Cuse href='%23s' transform='scale(0.2) rotate(10)'/%3E%3Cuse href='%23s' transform='scale(0.25) rotate(40)'/%3E%3Cuse href='%23s' transform='scale(0.3) rotate(-20)'/%3E%3Cuse href='%23s' transform='scale(0.4) rotate(-30)'/%3E%3Cuse href='%23s' transform='scale(0.5) rotate(20)'/%3E%3Cuse href='%23s' transform='scale(0.6) rotate(60)'/%3E%3Cuse href='%23s' transform='scale(0.7) rotate(10)'/%3E%3Cuse href='%23s' transform='scale(0.835) rotate(-40)'/%3E%3Cuse href='%23s' transform='scale(0.9) rotate(40)'/%3E%3Cuse href='%23s' transform='scale(1.05) rotate(25)'/%3E%3Cuse href='%23s' transform='scale(1.2) rotate(8)'/%3E%3Cuse href='%23s' transform='scale(1.333) rotate(-60)'/%3E%3Cuse href='%23s' transform='scale(1.45) rotate(-30)'/%3E%3Cuse href='%23s' transform='scale(1.6) rotate(10)'/%3E%3C/g%3E%3C/defs%3E%3Cg %3E%3Cg transform=''%3E%3Ccircle fill='url(%23a)' r='3000'/%3E%3Cg opacity='0.5'%3E%3Ccircle fill='url(%23a)' r='2000'/%3E%3Ccircle fill='url(%23a)' r='1800'/%3E%3Ccircle fill='url(%23a)' r='1700'/%3E%3Ccircle fill='url(%23a)' r='1651'/%3E%3Ccircle fill='url(%23a)' r='1450'/%3E%3Ccircle fill='url(%23a)' r='1250'/%3E%3Ccircle fill='url(%23a)' r='1175'/%3E%3Ccircle fill='url(%23a)' r='900'/%3E%3Ccircle fill='url(%23a)' r='750'/%3E%3Ccircle fill='url(%23a)' r='500'/%3E%3Ccircle fill='url(%23a)' r='380'/%3E%3Ccircle fill='url(%23a)' r='250'/%3E%3C/g%3E%3Cg transform='rotate(-129.6 0 0)'%3E%3Cuse href='%23g' transform='rotate(10)'/%3E%3Cuse href='%23g' transform='rotate(120)'/%3E%3Cuse href='%23g' transform='rotate(240)'/%3E%3C/g%3E%3Ccircle fill-opacity='0.87' fill='url(%23a)' r='3000'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
20
+ background-attachment: fixed;
21
+ background-size: cover;
22
+ background-repeat: no-repeat;
23
+
24
+ // display
25
+ display: flex;
26
+ min-height: 100vh;
27
+ flex-direction: column;
28
+ overflow-wrap: break-word;
29
+
30
+ // font
31
+ font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family;
32
+ color:$base-font-color;
33
+ -webkit-text-size-adjust: 100%;
34
+ -webkit-font-feature-settings: "kern" 1;
35
+ -moz-font-feature-settings: "kern" 1;
36
+ -o-font-feature-settings: "kern" 1;
37
+ font-feature-settings: "kern" 1;
38
+ font-kerning: normal;
39
+
40
+ }
41
+
42
+ // block elements - bottom margin
43
+ h1, h2, h3, h4, h5, h6,
44
+ p, blockquote, pre,
45
+ ul, ol, dl, figure,
46
+ %vertical-rhythm {
47
+ margin-bottom: $spacing-unit / 2;
48
+ }
49
+
50
+ // wrapper
51
+ .wrapper {
52
+ max-width: calc(#{$content-width} - (#{$spacing-unit}));
53
+ margin-right: auto;
54
+ margin-left: auto;
55
+ padding-right: $spacing-unit / 2;
56
+ padding-left: $spacing-unit / 2;
57
+ @extend %clearfix;
58
+
59
+ @media screen and (min-width: $on-laptop) {
60
+ max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
61
+ padding-right: $spacing-unit;
62
+ padding-left: $spacing-unit;
63
+ }
64
+ }
65
+
66
+ %clearfix:after {
67
+ content: "";
68
+ display: table;
69
+ clear: both;
70
+ }
71
+
72
+ // code
73
+ pre,
74
+ code {
75
+ font-family: $code-font-family;
76
+ font-size: 0.9375em;
77
+ border-radius: 3px;
78
+ }
79
+
80
+ code {
81
+ padding: 1px 5px;
82
+ }
83
+
84
+ pre {
85
+ padding: 8px 12px;
86
+ overflow-x: auto;
87
+ padding: 20px;
88
+ background: $header-color;
89
+ border-radius: 20px;
90
+
91
+ > code {
92
+ border: 0;
93
+ padding-right: 0;
94
+ padding-left: 0;
95
+ }
96
+ }
97
+
98
+ hr {
99
+ margin-top: $spacing-unit;
100
+ margin-bottom: $spacing-unit;
101
+ }
102
+
103
+ main {
104
+ display: block; // IE fix
105
+ }
106
+
107
+ // images
108
+ img {
109
+ max-width: 100%;
110
+ vertical-align: middle;
111
+ }
112
+
113
+ p {
114
+ img:first-child:last-child {
115
+ border-radius:10px;
116
+ margin:20px 0;
117
+ box-shadow: 0 0 30px rgba(0,0,0,.1);
118
+ }
119
+ }
120
+
121
+ // fig
122
+ figure > img {
123
+ display: block;
124
+ }
125
+
126
+ figcaption {
127
+ font-size: $small-font-size;
128
+ }
129
+
130
+ // lists
131
+ ul, ol {
132
+ margin-left: $spacing-unit;
133
+ }
134
+
135
+ li {
136
+ > ul,
137
+ > ol {
138
+ margin-bottom: 0;
139
+ }
140
+ }
141
+
142
+ // headings
143
+ h1, h2, h3, h4, h5, h6 {
144
+ font-weight: 600;
145
+ color:#fff;
146
+ }
147
+
148
+ a {
149
+ color: $theme-color;
150
+ text-decoration: none;
151
+
152
+ &:hover {
153
+ // color: $text-color;
154
+ text-decoration: underline;
155
+ }
156
+ }
157
+
158
+ blockquote {
159
+ border-left: 10px solid $theme-color;
160
+ padding-left: $spacing-unit / 2;
161
+ @include relative-font-size(1.125);
162
+ letter-spacing: -1px;
163
+ margin: $spacing-unit 0;
164
+ padding: 15px;
165
+ border-radius: 10px;;
166
+ background-color: change-color($color: $theme-color, $alpha: 0.1);
167
+ > :last-child {
168
+ margin-bottom: 0;
169
+ }
170
+ }
171
+
172
+ table {
173
+ margin-bottom: $spacing-unit;
174
+ width: 100%;
175
+ text-align: left;
176
+ border-collapse: collapse;
177
+ border-radius: 10px;
178
+ overflow: hidden;
179
+ tr {
180
+ &:nth-child(even) {
181
+ background-color: #3c3c3c;
182
+ }
183
+ }
184
+ th, td {
185
+ padding: ($spacing-unit / 3) ($spacing-unit / 2);
186
+ }
187
+ th {
188
+ background-color: #454545;
189
+ }
190
+
191
+ @include media-query($on-laptop) {
192
+ display: block;
193
+ overflow-x: auto;
194
+ -webkit-overflow-scrolling: touch;
195
+ -ms-overflow-style: -ms-autohiding-scrollbar;
196
+ }
197
+ }
@@ -0,0 +1,133 @@
1
+ @charset "utf-8";
2
+
3
+ // Solarized skin
4
+ // ==============
5
+ // Created by Sander Voerman <mailto:sander@savoerman.nl> using the Solarized
6
+ // color scheme by Ethan Schoonover <https://ethanschoonover.com/solarized>.
7
+
8
+ // This style sheet implements two options for the minima.skin setting:
9
+ // "solarized" for light mode and "solarized-dark" for dark mode.
10
+ $sol-is-dark: true !default;
11
+
12
+
13
+ // Color scheme
14
+ // ------------
15
+ // The inline comments show the canonical L*a*b values for each color.
16
+
17
+ $sol-base03: #002b36; // 15 -12 -12
18
+ $sol-base02: #073642; // 20 -12 -12
19
+ $sol-base01: #586e75; // 45 -07 -07
20
+ $sol-base00: #657b83; // 50 -07 -07
21
+ $sol-base0: #839496; // 60 -06 -03
22
+ $sol-base1: #93a1a1; // 65 -05 -02
23
+ $sol-base2: #eee8d5; // 92 -00 10
24
+ $sol-base3: #fdf6e3; // 97 00 10
25
+ $sol-yellow: #b58900; // 60 10 65
26
+ $sol-orange: #cb4b16; // 50 50 55
27
+ $sol-red: #dc322f; // 50 65 45
28
+ $sol-magenta: #d33682; // 50 65 -05
29
+ $sol-violet: #6c71c4; // 50 15 -45
30
+ $sol-blue: #268bd2; // 55 -10 -45
31
+ $sol-cyan: #2aa198; // 60 -35 -05
32
+ $sol-green: #859900; // 60 -20 65
33
+
34
+ $sol-mono3: $sol-base3;
35
+ $sol-mono2: $sol-base2;
36
+ $sol-mono1: $sol-base1;
37
+ $sol-mono00: $sol-base00;
38
+ $sol-mono01: $sol-base01;
39
+
40
+ @if $sol-is-dark {
41
+ $sol-mono3: $sol-base03;
42
+ $sol-mono2: $sol-base02;
43
+ $sol-mono1: $sol-base01;
44
+ $sol-mono00: $sol-base0;
45
+ $sol-mono01: $sol-base1;
46
+ }
47
+
48
+
49
+ // Minima color variables
50
+ // ----------------------
51
+
52
+ $brand-color: $sol-mono1 !default;
53
+ $brand-color-light: mix($sol-mono1, $sol-mono3) !default;
54
+ $brand-color-dark: $sol-mono00 !default;
55
+
56
+ $text-color: $sol-mono01 !default;
57
+ $background-color: $sol-mono3 !default;
58
+ $code-background-color: $sol-mono2 !default;
59
+
60
+ $link-base-color: $sol-blue !default;
61
+ $link-visited-color: mix($sol-blue, $sol-mono00) !default;
62
+
63
+ $table-text-color: $sol-mono00 !default;
64
+ $table-zebra-color: mix($sol-mono2, $sol-mono3) !default;
65
+ $table-header-bg-color: $sol-mono2 !default;
66
+ $table-header-border: $sol-mono1 !default;
67
+ $table-border-color: $sol-mono1 !default;
68
+
69
+
70
+ // Syntax highlighting styles
71
+ // --------------------------
72
+
73
+ .highlight {
74
+ .c { color: $sol-mono1; font-style: italic } // Comment
75
+ .err { color: $sol-red } // Error
76
+ .k { color: $sol-mono01; font-weight: bold } // Keyword
77
+ .o { color: $sol-mono01; font-weight: bold } // Operator
78
+ .cm { color: $sol-mono1; font-style: italic } // Comment.Multiline
79
+ .cp { color: $sol-mono1; font-weight: bold } // Comment.Preproc
80
+ .c1 { color: $sol-mono1; font-style: italic } // Comment.Single
81
+ .cs { color: $sol-mono1; font-weight: bold; font-style: italic } // Comment.Special
82
+ .gd { color: $sol-red } // Generic.Deleted
83
+ .gd .x { color: $sol-red } // Generic.Deleted.Specific
84
+ .ge { color: $sol-mono00; font-style: italic } // Generic.Emph
85
+ .gr { color: $sol-red } // Generic.Error
86
+ .gh { color: $sol-mono1 } // Generic.Heading
87
+ .gi { color: $sol-green } // Generic.Inserted
88
+ .gi .x { color: $sol-green } // Generic.Inserted.Specific
89
+ .go { color: $sol-mono00 } // Generic.Output
90
+ .gp { color: $sol-mono00 } // Generic.Prompt
91
+ .gs { color: $sol-mono01; font-weight: bold } // Generic.Strong
92
+ .gu { color: $sol-mono1 } // Generic.Subheading
93
+ .gt { color: $sol-red } // Generic.Traceback
94
+ .kc { color: $sol-mono01; font-weight: bold } // Keyword.Constant
95
+ .kd { color: $sol-mono01; font-weight: bold } // Keyword.Declaration
96
+ .kp { color: $sol-mono01; font-weight: bold } // Keyword.Pseudo
97
+ .kr { color: $sol-mono01; font-weight: bold } // Keyword.Reserved
98
+ .kt { color: $sol-violet; font-weight: bold } // Keyword.Type
99
+ .m { color: $sol-cyan } // Literal.Number
100
+ .s { color: $sol-magenta } // Literal.String
101
+ .na { color: $sol-cyan } // Name.Attribute
102
+ .nb { color: $sol-blue } // Name.Builtin
103
+ .nc { color: $sol-violet; font-weight: bold } // Name.Class
104
+ .no { color: $sol-cyan } // Name.Constant
105
+ .ni { color: $sol-violet } // Name.Entity
106
+ .ne { color: $sol-violet; font-weight: bold } // Name.Exception
107
+ .nf { color: $sol-blue; font-weight: bold } // Name.Function
108
+ .nn { color: $sol-mono00 } // Name.Namespace
109
+ .nt { color: $sol-blue } // Name.Tag
110
+ .nv { color: $sol-cyan } // Name.Variable
111
+ .ow { color: $sol-mono01; font-weight: bold } // Operator.Word
112
+ .w { color: $sol-mono1 } // Text.Whitespace
113
+ .mf { color: $sol-cyan } // Literal.Number.Float
114
+ .mh { color: $sol-cyan } // Literal.Number.Hex
115
+ .mi { color: $sol-cyan } // Literal.Number.Integer
116
+ .mo { color: $sol-cyan } // Literal.Number.Oct
117
+ .sb { color: $sol-magenta } // Literal.String.Backtick
118
+ .sc { color: $sol-magenta } // Literal.String.Char
119
+ .sd { color: $sol-magenta } // Literal.String.Doc
120
+ .s2 { color: $sol-magenta } // Literal.String.Double
121
+ .se { color: $sol-magenta } // Literal.String.Escape
122
+ .sh { color: $sol-magenta } // Literal.String.Heredoc
123
+ .si { color: $sol-magenta } // Literal.String.Interpol
124
+ .sx { color: $sol-magenta } // Literal.String.Other
125
+ .sr { color: $sol-green } // Literal.String.Regex
126
+ .s1 { color: $sol-magenta } // Literal.String.Single
127
+ .ss { color: $sol-magenta } // Literal.String.Symbol
128
+ .bp { color: $sol-mono1 } // Name.Builtin.Pseudo
129
+ .vc { color: $sol-cyan } // Name.Variable.Class
130
+ .vg { color: $sol-cyan } // Name.Variable.Global
131
+ .vi { color: $sol-cyan } // Name.Variable.Instance
132
+ .il { color: $sol-cyan } // Literal.Number.Integer.Long
133
+ }
@@ -0,0 +1,25 @@
1
+ .site-footer {
2
+ .footer {
3
+ display:flex;
4
+ padding:15px;
5
+ padding-bottom:40px;
6
+ }
7
+ }
8
+
9
+ .footer-title {
10
+ flex:1;
11
+ }
12
+
13
+ .footer-social-links {
14
+ svg {
15
+ width:20px;
16
+ height:20px;
17
+ fill: $theme-color;
18
+ }
19
+ a {
20
+ &:not(:first-child) {
21
+ margin-left:6px;
22
+ }
23
+ }
24
+ }
25
+
@@ -0,0 +1,138 @@
1
+ .site-header {
2
+ position: fixed;
3
+ top:0;
4
+ left:0;
5
+ width:100%;
6
+ height:60px;
7
+ display: flex;
8
+ align-items: center;
9
+ background-color:$header-color;
10
+ border-bottom:2px solid $theme-color;
11
+ padding-left:20px;
12
+ font-weight: 600;
13
+ }
14
+
15
+ .site-title {
16
+ @include relative-font-size(1.625);
17
+ letter-spacing: -1px;
18
+ margin-bottom: 0;
19
+ float: left;
20
+
21
+ &:hover {
22
+ text-decoration: none;
23
+ }
24
+
25
+ @include media-query($on-mobile) {
26
+ padding-right: 45px;
27
+ }
28
+ }
29
+
30
+ .site-icon {
31
+ position: absolute;
32
+ left: 50%;
33
+ top: 100%;
34
+ margin-top: -47px;
35
+ width: 70px;
36
+ height: 70px;
37
+ padding: 14px;
38
+ background: $content-color;
39
+ border-radius: 50%;
40
+ @include media-query($on-mobile) {
41
+ width: 50px;
42
+ height: 50px;
43
+ margin-top: -25px;
44
+ }
45
+ }
46
+
47
+ .site-nav {
48
+ position: absolute;
49
+ top: 9px;
50
+ right: $spacing-unit / 2;
51
+ border-radius: 5px;
52
+ text-align: right;
53
+
54
+ .nav-trigger {
55
+ display: none;
56
+ }
57
+
58
+ .menu-icon {
59
+ float: right;
60
+ width: 36px;
61
+ height: 26px;
62
+ line-height: 0;
63
+ padding-top: 10px;
64
+ text-align: center;
65
+
66
+ > svg path {
67
+ fill: $theme-color;
68
+ }
69
+ }
70
+
71
+ label[for="nav-trigger"] {
72
+ display: block;
73
+ float: right;
74
+ width: 36px;
75
+ height: 36px;
76
+ z-index: 2;
77
+ cursor: pointer;
78
+ }
79
+
80
+ input ~ .trigger {
81
+ clear: both;
82
+ display: none;
83
+ }
84
+
85
+ input:checked ~ .trigger {
86
+ display: block;
87
+ background:$header-color;
88
+ border-radius:20px;
89
+ padding:10px;
90
+ }
91
+
92
+ .page-link {
93
+ display: block;
94
+ padding: 5px 10px;
95
+
96
+ // Gaps between nav items, but not on the last one
97
+ &:not(:last-child) {
98
+ margin-right: 0;
99
+ }
100
+
101
+ &:hover {
102
+ text-decoration: none;
103
+ }
104
+
105
+ }
106
+
107
+ @media screen and (min-width: $on-laptop) {
108
+ flex:1;
109
+ position: static;
110
+ float: right;
111
+ border: none;
112
+ background-color: inherit;
113
+ height:100%;
114
+
115
+ label[for="nav-trigger"] {
116
+ display: none;
117
+ }
118
+
119
+ .menu-icon {
120
+ display: none;
121
+ }
122
+
123
+ input ~ .trigger {
124
+ display: block;
125
+ height:100%;
126
+ }
127
+
128
+ .page-link {
129
+ display: inline-flex;
130
+ align-items:center;
131
+ height:100%;
132
+ &.active {
133
+ background-color:$theme-color;
134
+ color:$header-color;
135
+ }
136
+ }
137
+ }
138
+ }
@@ -0,0 +1,20 @@
1
+ .home-box {
2
+ padding:0;
3
+ overflow:hidden;
4
+ .post-link {
5
+ color: inherit;
6
+ display:block;
7
+ padding: $spacing-unit;
8
+ transition: .3s background-color;
9
+ &:not(:last-child) {
10
+ border-bottom:1px solid $header-color;
11
+ }
12
+ &:hover {
13
+ text-decoration: none;
14
+ background-color: $header-color;
15
+ }
16
+ h3 {
17
+ margin:0;
18
+ }
19
+ }
20
+ }
@@ -0,0 +1,72 @@
1
+ /**
2
+ * Posts
3
+ */
4
+ .post-header {
5
+ margin-bottom: $spacing-unit;
6
+ }
7
+
8
+ .post-title,
9
+ .post-content h1 {
10
+ @include relative-font-size(2.625);
11
+ letter-spacing: -1px;
12
+ line-height: 1.15;
13
+
14
+ @media screen and (min-width: $on-laptop) {
15
+ @include relative-font-size(2.625);
16
+ }
17
+ }
18
+
19
+ .post-content {
20
+ h1, h2, h3 { margin-top: $spacing-unit }
21
+ h4, h5, h6 { margin-top: $spacing-unit }
22
+
23
+ h2 {
24
+ @include relative-font-size(1.75);
25
+
26
+ @media screen and (min-width: $on-laptop) {
27
+ @include relative-font-size(2);
28
+ }
29
+ }
30
+
31
+ h3 {
32
+ @include relative-font-size(1.375);
33
+
34
+ @media screen and (min-width: $on-laptop) {
35
+ @include relative-font-size(1.625);
36
+ }
37
+ }
38
+
39
+ h4 {
40
+ @include relative-font-size(1.25);
41
+ }
42
+
43
+ h5 {
44
+ @include relative-font-size(1.125);
45
+ }
46
+ h6 {
47
+ @include relative-font-size(1.0625);
48
+ }
49
+ }
50
+
51
+
52
+ article, .comments, .box {
53
+ padding: $spacing-unit;
54
+ background: $content-color;
55
+ border-radius: 20px;
56
+ box-shadow: 0 0 40px rgba(0,0,0,0.5);
57
+ margin: 25px 0;
58
+ @include media-query($on-mobile) {
59
+ padding: 0;
60
+ background: transparent;
61
+ box-shadow: none;
62
+ }
63
+ }
64
+ .comments {
65
+ @media screen and (min-width: $on-mobile) {
66
+ padding:15px $spacing-unit;
67
+ }
68
+ }
69
+
70
+ .page-content {
71
+ margin-top: 80px;
72
+ }
@@ -0,0 +1,4 @@
1
+ @import 'layout-post';
2
+ @import 'layout-header';
3
+ @import 'layout-home';
4
+ @import 'layout-footer';
@@ -0,0 +1,33 @@
1
+ $base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Segoe UI Symbol", "Segoe UI Emoji", "Apple Color Emoji", Roboto, Helvetica, Arial, sans-serif !default;
2
+ $code-font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono", "Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
3
+ $base-font-size: 16px !default;
4
+ $base-font-weight: 400 !default;
5
+ $base-font-color: #e0e0e0;
6
+ $small-font-size: $base-font-size * 0.875 !default;
7
+ $base-line-height: 1.5 !default;
8
+
9
+ $theme-color: #86bb48;
10
+ $header-color: #0f0f0f;
11
+
12
+ $spacing-unit: 30px !default;
13
+
14
+ $content-width: 850px !default;
15
+ $content-color: #272726;
16
+
17
+ // devices
18
+ $on-mobile: 600px !default;
19
+ $on-laptop: 800px !default;
20
+
21
+ // mixins
22
+ @mixin relative-font-size($ratio) {
23
+ font-size: #{$ratio}rem;
24
+ }
25
+ @mixin media-query($device) {
26
+ @media screen and (max-width: $device) {
27
+ @content;
28
+ }
29
+ }
30
+
31
+ @import 'base';
32
+ @import 'layout';
33
+ @import 'highlight-dark';
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "leaf";
Binary file
metadata ADDED
@@ -0,0 +1,134 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-leaf
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Supun Kavinda
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-02-25 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.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-feed
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.9'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.9'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-seo-tag
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.1'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.1'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 2.1.4
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 2.1.4
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '12.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '12.0'
83
+ description:
84
+ email:
85
+ - supunkavinda1125@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - LICENSE.txt
91
+ - README.md
92
+ - _includes/footer.html
93
+ - _includes/google-analytics.html
94
+ - _includes/head.html
95
+ - _includes/header.html
96
+ - _includes/hyvor-talk-comments.html
97
+ - _layouts/default.html
98
+ - _layouts/home.html
99
+ - _layouts/page.html
100
+ - _layouts/post.html
101
+ - _sass/_base.scss
102
+ - _sass/_highlight-dark.scss
103
+ - _sass/_layout-footer.scss
104
+ - _sass/_layout-header.scss
105
+ - _sass/_layout-home.scss
106
+ - _sass/_layout-post.scss
107
+ - _sass/_layout.scss
108
+ - _sass/leaf.scss
109
+ - assets/css/style.scss
110
+ - assets/default-icon.png
111
+ homepage: https://github.com/SupunKavinda/jekyll-theme-leaf
112
+ licenses:
113
+ - MIT
114
+ metadata: {}
115
+ post_install_message:
116
+ rdoc_options: []
117
+ require_paths:
118
+ - lib
119
+ required_ruby_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ required_rubygems_version: !ruby/object:Gem::Requirement
125
+ requirements:
126
+ - - ">="
127
+ - !ruby/object:Gem::Version
128
+ version: '0'
129
+ requirements: []
130
+ rubygems_version: 3.0.3
131
+ signing_key:
132
+ specification_version: 4
133
+ summary: Minimal yet beautiful Jekyll theme for dark background lovers.
134
+ test_files: []