jekyll-tailwindui 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: a11f77b3c0a0282cb3fe9b7780f7a33d1a2ae496f16205eb0be448e8ccc2d6fa
4
+ data.tar.gz: 33010a7679f8c243e7311740492a3f6550da41224afeb87ec54d2fb0e7e01821
5
+ SHA512:
6
+ metadata.gz: 1b28bd7493a0c0197091116d0acc12a0136efe5a7351eea249fddd889baf6deb9963f5db2d42454cc95dd2d5cc382f880d36ad40c3052a43b081a0b740541b10
7
+ data.tar.gz: 5c9898cba3aacded1503f4b54d2fb9b89dc436a662f0467d2d721c9989709092f7dc13a9038fc9359a0856385c14d41ea6661bf080cda7e6c09a2bb5d15c2de7
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Chunlea
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,52 @@
1
+ # jekyll-tailwindui
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
4
+
5
+ To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
6
+
7
+ TODO: Delete this and the text above, and describe your gem
8
+
9
+
10
+ ## Installation
11
+
12
+ Add this line to your Jekyll site's `Gemfile`:
13
+
14
+ ```ruby
15
+ gem "jekyll-tailwindui"
16
+ ```
17
+
18
+ And add this line to your Jekyll site's `_config.yml`:
19
+
20
+ ```yaml
21
+ theme: jekyll-tailwindui
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ $ bundle
27
+
28
+ Or install it yourself as:
29
+
30
+ $ gem install jekyll-tailwindui
31
+
32
+ ## Usage
33
+
34
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
35
+
36
+ ## Contributing
37
+
38
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. 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.
39
+
40
+ ## Development
41
+
42
+ To set up your environment to develop this theme, run `bundle install`.
43
+
44
+ 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.
45
+
46
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
47
+ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-tailwindui.gemspec` accordingly.
48
+
49
+ ## License
50
+
51
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
52
+
@@ -0,0 +1,10 @@
1
+ title: Your awesome title
2
+ description: > # this means to ignore newlines until "show_excerpts:"
3
+ Write an awesome description for your new site here. You can edit this
4
+ line in _config.yml. It will appear in your document head meta (for
5
+ Google search results) and in your feed.xml site description.
6
+
7
+ plugins:
8
+ - jekyll-feed
9
+ - jekyll-postcss
10
+ - jekyll-seo-tag
@@ -0,0 +1,6 @@
1
+ {% comment %}
2
+ Placeholder to allow defining custom head, in principle, you can add anything here, e.g. favicons:
3
+
4
+ 1. Head over to https://realfavicongenerator.net/ to add your own favicons.
5
+ 2. Customize default _includes/custom-head.html in your source directory and insert the given code snippet.
6
+ {% endcomment %}
@@ -0,0 +1,10 @@
1
+ <footer class="bg-white">
2
+ <div class="max-w-screen-xl mx-auto py-12 px-4 overflow-hidden sm:px-6 lg:px-8">
3
+ <div class="mt-8">
4
+ <p class="text-center text-base leading-6 text-gray-400">
5
+ &copy; 2020 Workflow, Inc. All rights reserved.
6
+ <a href="{{ 'feed.xml' | relative_url }}">Subscribe</a>
7
+ </p>
8
+ </div>
9
+ </div>
10
+ </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,16 @@
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="https://rsms.me/inter/inter.css">
7
+ <script src="https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.x.x/dist/alpine.min.js" defer></script>
8
+ <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
9
+ {%- feed_meta -%}
10
+ {%- if jekyll.environment == 'production' and site.google_analytics -%}
11
+ {%- include google-analytics.html -%}
12
+ {%- endif -%}
13
+
14
+ {%- include custom-head.html -%}
15
+
16
+ </head>
@@ -0,0 +1,84 @@
1
+ <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
+
6
+ <div x-data="{ open: false }" class="relative bg-white">
7
+ <div class="max-w-screen-xl mx-auto">
8
+ <div class="relative z-20 bg-white lg:max-w-2xl lg:w-full">
9
+ <div class="relative pt-6 px-4 sm:px-6 lg:px-8">
10
+ <nav class="relative flex items-center justify-between sm:h-10 lg:justify-start">
11
+ <div class="flex items-center flex-grow flex-shrink-0 lg:flex-grow-0">
12
+ <div class="flex items-center justify-between w-full md:w-auto">
13
+ <a href="{{ "/" | relative_url }}" aria-label="Home">
14
+ <img class="h-8 w-auto sm:h-10" src="https://tailwindui.com/img/logos/workflow-mark-on-white.svg"
15
+ alt="{{ site.title | escape }}">
16
+ </a>
17
+ <div class="-mr-2 flex items-center md:hidden">
18
+ <button @click="open = true" type="button"
19
+ class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 focus:text-gray-500 transition duration-150 ease-in-out"
20
+ id="main-menu" aria-label="Main menu" aria-haspopup="true" x-bind:aria-expanded="open">
21
+ <svg class="h-6 w-6" stroke="currentColor" fill="none" viewBox="0 0 24 24">
22
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16">
23
+ </path>
24
+ </svg>
25
+ </button>
26
+ </div>
27
+ </div>
28
+ </div>
29
+
30
+ {%- if titles_size > 0 -%}
31
+ <div class="hidden md:block md:ml-10 md:pr-4">
32
+ {%- for path in page_paths -%}
33
+ {%- assign my_page = site.pages | where: "path", path | first -%}
34
+ {%- if my_page.title -%}
35
+ <a href="{{ my_page.url | relative_url }}" class="ml-8 font-medium text-gray-500 hover:text-gray-900 transition duration-150 ease-in-out">{{ my_page.title | escape }}</a>
36
+ {%- endif -%}
37
+ {%- endfor -%}
38
+ </div>
39
+ {%- endif -%}
40
+ </nav>
41
+ </div>
42
+
43
+ <div x-show="open" x-description="Mobile menu, show/hide based on menu open state."
44
+ x-transition:enter="duration-150 ease-out" x-transition:enter-start="opacity-0 scale-95"
45
+ x-transition:enter-end="opacity-100 scale-100" x-transition:leave="duration-100 ease-in"
46
+ x-transition:leave-start="opacity-100 scale-100" x-transition:leave-end="opacity-0 scale-95"
47
+ class="absolute top-0 inset-x-0 p-2 transition transform origin-top-right md:hidden" style="display: none;">
48
+ <div class="rounded-lg shadow-md">
49
+ <div class="rounded-lg bg-white shadow-xs overflow-hidden" role="menu" aria-orientation="vertical"
50
+ aria-labelledby="main-menu">
51
+ <div class="px-5 pt-4 flex items-center justify-between">
52
+ <div>
53
+ <img class="h-8 w-auto" src="https://tailwindui.com/img/logos/workflow-mark-on-white.svg" alt="">
54
+ </div>
55
+ <div class="-mr-2">
56
+ <button @click="open = false" type="button"
57
+ class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 focus:text-gray-500 transition duration-150 ease-in-out"
58
+ aria-label="Close menu">
59
+ <svg class="h-6 w-6" stroke="currentColor" fill="none" viewBox="0 0 24 24">
60
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12">
61
+ </path>
62
+ </svg>
63
+ </button>
64
+ </div>
65
+ </div>
66
+ {%- if titles_size > 0 -%}
67
+ <div class="px-2 pt-2 pb-3">
68
+ {%- for path in page_paths -%}
69
+ {%- assign my_page = site.pages | where: "path", path | first -%}
70
+ {%- if my_page.title -%}
71
+ <a href="{{ my_page.url | relative_url }}"
72
+ class="mt-1 block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50 focus:outline-none focus:text-gray-900 focus:bg-gray-50 transition duration-150 ease-in-out"
73
+ role="menuitem">{{ my_page.title | escape }}</a>
74
+ {%- endif -%}
75
+ {%- endfor -%}
76
+ </div>
77
+ {%- endif -%}
78
+ </div>
79
+ </div>
80
+ </div>
81
+ </div>
82
+ </div>
83
+ </div>
84
+ </header>
@@ -0,0 +1,12 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {%- include head.html -%}
5
+
6
+ <body>
7
+
8
+ {{ content }}
9
+
10
+ </body>
11
+
12
+ </html>
@@ -0,0 +1,8 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ {%- include header.html -%}
5
+
6
+ {{ content }}
7
+
8
+ {%- include footer.html -%}
@@ -0,0 +1,20 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ {%- include header.html -%}
5
+
6
+ <div class="relative py-16 bg-white overflow-hidden">
7
+ <div class="relative px-4 sm:px-6 lg:px-8">
8
+ <div class="text-lg max-w-prose mx-auto mb-6">
9
+ <h1
10
+ class="mt-2 mb-8 text-3xl text-center leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl sm:leading-10">
11
+ {{ page.title | escape }}</h1>
12
+ </div>
13
+ <div class="prose prose-lg text-gray-500 mx-auto">
14
+ {{ content }}
15
+ </div>
16
+ </div>
17
+ </div>
18
+
19
+
20
+ {%- include footer.html -%}
@@ -0,0 +1,48 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {%- include header.html -%}
6
+
7
+ <article class="relative py-16 bg-white overflow-hidden" itemscope itemtype="http://schema.org/BlogPosting">
8
+
9
+ <header class="relative px-4 sm:px-6 lg:px-8">
10
+ <div class="text-lg max-w-prose mx-auto mb-6">
11
+ <h1
12
+ class="mt-2 mb-8 text-3xl text-center leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl sm:leading-10"
13
+ itemprop="name headline">
14
+ {{ page.title | escape }}</h1>
15
+ </div>
16
+ <p class="max-w-prose mx-auto mb-6 text-center">
17
+ {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
18
+ <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
19
+ {{ page.date | date: date_format }}
20
+ </time>
21
+ {%- if page.modified_date -%}
22
+ ~
23
+ {%- assign mdate = page.modified_date | date_to_xmlschema -%}
24
+ <time class="dt-modified" datetime="{{ mdate }}" itemprop="dateModified">
25
+ {{ mdate | date: date_format }}
26
+ </time>
27
+ {%- endif -%}
28
+ {%- if page.author -%}
29
+ • {% for author in page.author %}
30
+ <span itemprop="author" itemscope itemtype="http://schema.org/Person">
31
+ <span class="p-author h-card" itemprop="name">{{ author }}</span></span>
32
+ {%- if forloop.last == false %}, {% endif -%}
33
+ {% endfor %}
34
+ {%- endif -%}</p>
35
+ </header>
36
+
37
+ <div class="prose prose-lg text-gray-500 mx-auto" itemprop="articleBody">
38
+ {{ content }}
39
+ </div>
40
+
41
+ {%- if site.disqus.shortname -%}
42
+ {%- include disqus_comments.html -%}
43
+ {%- endif -%}
44
+
45
+ <a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
46
+ </article>
47
+
48
+ {%- include footer.html -%}
@@ -0,0 +1,256 @@
1
+ ---
2
+ ---
3
+ @tailwind base;
4
+ @tailwind components;
5
+ @tailwind utilities;
6
+ .highlight .c {
7
+ color: #545454;
8
+ font-style: italic;
9
+ }
10
+
11
+ .highlight .err {
12
+ color: #f07178;
13
+ background-color: #e3d2d2;
14
+ }
15
+
16
+ .highlight .k {
17
+ color: #89ddff;
18
+ font-weight: bold;
19
+ }
20
+
21
+ .highlight .o {
22
+ font-weight: bold;
23
+ }
24
+
25
+ .highlight .cm {
26
+ color: #545454;
27
+ font-style: italic;
28
+ }
29
+
30
+ .highlight .cp {
31
+ color: #545454;
32
+ font-weight: bold;
33
+ }
34
+
35
+ .highlight .c1 {
36
+ color: #545454;
37
+ font-style: italic;
38
+ }
39
+
40
+ .highlight .cs {
41
+ color: #545454;
42
+ font-weight: bold;
43
+ font-style: italic;
44
+ }
45
+
46
+ .highlight .gd {
47
+ color: #000;
48
+ background-color: #fdd;
49
+ }
50
+
51
+ .highlight .gd .x {
52
+ color: #000;
53
+ background-color: #faa;
54
+ }
55
+
56
+ .highlight .ge {
57
+ font-style: italic;
58
+ }
59
+
60
+ .highlight .gr {
61
+ color: #f07178;
62
+ }
63
+
64
+ .highlight .gh {
65
+ color: #999;
66
+ }
67
+
68
+ .highlight .gi {
69
+ color: #000;
70
+ background-color: #dfd;
71
+ }
72
+
73
+ .highlight .gi .x {
74
+ color: #000;
75
+ background-color: #afa;
76
+ }
77
+
78
+ .highlight .go {
79
+ color: #888;
80
+ }
81
+
82
+ .highlight .gp {
83
+ color: #555;
84
+ }
85
+
86
+ .highlight .gs {
87
+ font-weight: bold;
88
+ }
89
+
90
+ .highlight .gu {
91
+ color: #aaa;
92
+ }
93
+
94
+ .highlight .gt {
95
+ color: #f07178;
96
+ }
97
+
98
+ .highlight .kc {
99
+ font-weight: bold;
100
+ }
101
+
102
+ .highlight .kd {
103
+ font-weight: bold;
104
+ }
105
+
106
+ .highlight .kp {
107
+ font-weight: bold;
108
+ }
109
+
110
+ .highlight .kr {
111
+ font-weight: bold;
112
+ }
113
+
114
+ .highlight .kt {
115
+ color: #ffcb6b;
116
+ font-weight: bold;
117
+ }
118
+
119
+ .highlight .m {
120
+ color: #f78c6c;
121
+ }
122
+
123
+ .highlight .s {
124
+ color: #c3e88d;
125
+ }
126
+
127
+ .highlight .na {
128
+ color: #008080;
129
+ }
130
+
131
+ .highlight .nb {
132
+ color: #eff;
133
+ }
134
+
135
+ .highlight .nc {
136
+ color: #ffcb6b;
137
+ font-weight: bold;
138
+ }
139
+
140
+ .highlight .no {
141
+ color: #008080;
142
+ }
143
+
144
+ .highlight .ni {
145
+ color: #800080;
146
+ }
147
+
148
+ .highlight .ne {
149
+ color: #900;
150
+ font-weight: bold;
151
+ }
152
+
153
+ .highlight .nf {
154
+ color: #82aaff;
155
+ font-weight: bold;
156
+ }
157
+
158
+ .highlight .nn {
159
+ color: #555;
160
+ }
161
+
162
+ .highlight .nt {
163
+ color: #ffcb6b;
164
+ }
165
+
166
+ .highlight .nv {
167
+ color: #eff;
168
+ }
169
+
170
+ .highlight .ow {
171
+ font-weight: bold;
172
+ }
173
+
174
+ .highlight .w {
175
+ color: #eff;
176
+ }
177
+
178
+ .highlight .mf {
179
+ color: #f78c6c;
180
+ }
181
+
182
+ .highlight .mh {
183
+ color: #f78c6c;
184
+ }
185
+
186
+ .highlight .mi {
187
+ color: #f78c6c;
188
+ }
189
+
190
+ .highlight .mo {
191
+ color: #f78c6c;
192
+ }
193
+
194
+ .highlight .sb {
195
+ color: #c3e88d;
196
+ }
197
+
198
+ .highlight .sc {
199
+ color: #c3e88d;
200
+ }
201
+
202
+ .highlight .sd {
203
+ color: #c3e88d;
204
+ }
205
+
206
+ .highlight .s2 {
207
+ color: #c3e88d;
208
+ }
209
+
210
+ .highlight .se {
211
+ color: #eff;
212
+ }
213
+
214
+ .highlight .sh {
215
+ color: #c3e88d;
216
+ }
217
+
218
+ .highlight .si {
219
+ color: #c3e88d;
220
+ }
221
+
222
+ .highlight .sx {
223
+ color: #c3e88d;
224
+ }
225
+
226
+ .highlight .sr {
227
+ color: #c3e88d;
228
+ }
229
+
230
+ .highlight .s1 {
231
+ color: #c3e88d;
232
+ }
233
+
234
+ .highlight .ss {
235
+ color: #c3e88d;
236
+ }
237
+
238
+ .highlight .bp {
239
+ color: #999;
240
+ }
241
+
242
+ .highlight .vc {
243
+ color: #ffcb6b;
244
+ }
245
+
246
+ .highlight .vg {
247
+ color: #eff;
248
+ }
249
+
250
+ .highlight .vi {
251
+ color: #eff;
252
+ }
253
+
254
+ .highlight .il {
255
+ color: #f78c6c;
256
+ }
metadata ADDED
@@ -0,0 +1,118 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-tailwindui
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - chunlea
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-08-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.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.1'
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.15.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.15.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-postcss
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.4.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.4.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-seo-tag
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.6'
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: 2.6.1
65
+ type: :runtime
66
+ prerelease: false
67
+ version_requirements: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - "~>"
70
+ - !ruby/object:Gem::Version
71
+ version: '2.6'
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: 2.6.1
75
+ description:
76
+ email:
77
+ - ju@chunlea.org
78
+ executables: []
79
+ extensions: []
80
+ extra_rdoc_files: []
81
+ files:
82
+ - LICENSE.txt
83
+ - README.md
84
+ - _config.yml
85
+ - _includes/custom-head.html
86
+ - _includes/footer.html
87
+ - _includes/google-analytics.html
88
+ - _includes/head.html
89
+ - _includes/header.html
90
+ - _layouts/default.html
91
+ - _layouts/home.html
92
+ - _layouts/page.html
93
+ - _layouts/post.html
94
+ - assets/css/style.css
95
+ homepage: https://github.com/chunlea/jekyll-tailwindui
96
+ licenses:
97
+ - MIT
98
+ metadata: {}
99
+ post_install_message:
100
+ rdoc_options: []
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ requirements: []
114
+ rubygems_version: 3.1.2
115
+ signing_key:
116
+ specification_version: 4
117
+ summary: A jekyll theme to easy integrating with tailwindui
118
+ test_files: []