soju-jekyll 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +52 -0
- data/_config.yml +41 -0
- data/_includes/footer.html +3 -0
- data/_includes/head.html +9 -0
- data/_includes/header.html +14 -0
- data/_layouts/default.html +13 -0
- metadata +92 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 47dda6bcce6c854b51eb5f7d9150dce5eaf2256a76382531806e50ea881e05c0
|
4
|
+
data.tar.gz: 9d92e3d95b661e79194919cf8f4d0a93269ef86b8ce664a7e9e2cb63ffa0d84c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c3c3d95781837d35392290fde413a276a1cb0808e4658646090f62332d9b306285fb812825af3082ad6f8af5b31622a421738af29eca59263a3cbdf7303a38a0
|
7
|
+
data.tar.gz: e8e89cba3871fc3b8143536fde82210dd86ca8a2e99a7c53ef808bd80b48443b5ca7c6e0d06b62803a5d6b10252b7441a522103c8e1a12e2291112b323de44d8
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2021 TheBoringDude
|
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 all
|
13
|
+
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 THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
# soju
|
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 "soju"
|
16
|
+
```
|
17
|
+
|
18
|
+
And add this line to your Jekyll site's `_config.yml`:
|
19
|
+
|
20
|
+
```yaml
|
21
|
+
theme: soju
|
22
|
+
```
|
23
|
+
|
24
|
+
And then execute:
|
25
|
+
|
26
|
+
$ bundle
|
27
|
+
|
28
|
+
Or install it yourself as:
|
29
|
+
|
30
|
+
$ gem install soju
|
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 `soju.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
|
+
|
data/_config.yml
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
## SOJU LANDING PAGE CONFIGURATIONS
|
2
|
+
|
3
|
+
# main website info, details
|
4
|
+
title: Soju Landing Page
|
5
|
+
description: >- # this means to ignore newlines until "baseurl:"
|
6
|
+
Write an awesome description for your new site here. You can edit this
|
7
|
+
line in _config.yml. It will appear in your document head meta (for
|
8
|
+
Google search results) and in your feed.xml site description.
|
9
|
+
|
10
|
+
# some other stuff (not sure)
|
11
|
+
baseurl: "" # the subpath of your site, e.g. /blog
|
12
|
+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
13
|
+
|
14
|
+
# social links [use usernames]
|
15
|
+
facebook: soju
|
16
|
+
twitter: soju
|
17
|
+
instagram: soju
|
18
|
+
|
19
|
+
## jekyll plugins
|
20
|
+
plugins:
|
21
|
+
- jekyll-sitemap
|
22
|
+
- jekyll-seo-tag
|
23
|
+
|
24
|
+
|
25
|
+
# exclude items
|
26
|
+
exclude:
|
27
|
+
- .sass-cache/
|
28
|
+
- .jekyll-cache/
|
29
|
+
- gemfiles/
|
30
|
+
- Gemfile
|
31
|
+
- Gemfile.lock
|
32
|
+
- node_modules/
|
33
|
+
- vendor/bundle/
|
34
|
+
- vendor/cache/
|
35
|
+
- vendor/gems/
|
36
|
+
- vendor/ruby/
|
37
|
+
- postcss.config.js
|
38
|
+
- tailwind.config.js
|
39
|
+
- yarn.lock
|
40
|
+
- tailwind.css
|
41
|
+
- package.json
|
data/_includes/head.html
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
<head>
|
2
|
+
<meta charset="UTF-8">
|
3
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
4
|
+
{%- seo -%}
|
5
|
+
<link rel="stylesheet" href="/assets/main.css">
|
6
|
+
<!-- google fonts -->
|
7
|
+
<link rel="preconnect" href="https://fonts.gstatic.com">
|
8
|
+
<link href="https://fonts.googleapis.com/css2?family=Recursive:wght@300;400;600;700;800;900&display=swap" rel="stylesheet">
|
9
|
+
</head>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<header class="w-11/12 py-6 mx-auto flex items-center justify-between">
|
2
|
+
<div>
|
3
|
+
<h1 class="font-black tracking-wide text-3xl text-coolGray-700">Soju!</h1>
|
4
|
+
</div>
|
5
|
+
|
6
|
+
<nav>
|
7
|
+
<ul class="inline-flex text-lg">
|
8
|
+
<li class="mx-4"><a href="">Home</a></li>
|
9
|
+
<li class="mx-4">
|
10
|
+
<a class="py-3 px-8 bg-coolGray-700 hover:bg-coolGray-800 text-white rounded-full" href="">Pre-Order</a>
|
11
|
+
</li>
|
12
|
+
</ul>
|
13
|
+
</nav>
|
14
|
+
</header>
|
metadata
ADDED
@@ -0,0 +1,92 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: soju-jekyll
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- TheBoringDude
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-03-12 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.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jekyll-sitemap
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.4'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.4'
|
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.6'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.6'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- iamcoderx@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- LICENSE
|
63
|
+
- README.md
|
64
|
+
- _config.yml
|
65
|
+
- _includes/footer.html
|
66
|
+
- _includes/head.html
|
67
|
+
- _includes/header.html
|
68
|
+
- _layouts/default.html
|
69
|
+
homepage: https://github.com/TheBoringDude/soju
|
70
|
+
licenses:
|
71
|
+
- MIT
|
72
|
+
metadata: {}
|
73
|
+
post_install_message:
|
74
|
+
rdoc_options: []
|
75
|
+
require_paths:
|
76
|
+
- lib
|
77
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0'
|
87
|
+
requirements: []
|
88
|
+
rubygems_version: 3.1.2
|
89
|
+
signing_key:
|
90
|
+
specification_version: 4
|
91
|
+
summary: Write a short summary, because Rubygems requires one.
|
92
|
+
test_files: []
|