unstruction-jekyll-theme 0.1.1 → 0.1.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.
- checksums.yaml +4 -4
- data/README.md +5 -3
- data/_config.yml +2 -1
- data/_layouts/default.html +4 -0
- metadata +7 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fed076208d2f84c173bc1adeb16759fc81f973bcdb758b485dfd43303ac7e07f
|
|
4
|
+
data.tar.gz: 2e3c3eb5787a4a79de2022c2964bf26b985dccd83088793753ee986741ec76d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 551d84e9886e93848605cc5d4e878a3db802a3f7d09e6f03d1c255500930df0c297022d423df25fdb4266e7de47921e3fd0be9b02696b88a48fd42a20b037733
|
|
7
|
+
data.tar.gz: 479e3e8818c774a7b46e601d3b56e11b1a65995a818e3759a5bd41e1bdaee288f318118a0830471118670717e8b8c6ee792df664a3964b47a586b8968a6e2c33
|
data/README.md
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
[](https://rubygems.org/gems/unstruction-jekyll-theme)
|
|
8
8
|
|
|
9
9
|
[](https://github.com/digitalmalayalistudio/unstruction)
|
|
10
|
+
[](https://github.com/DigitalMalayaliStudio/unstruction-wordpress-theme)
|
|
10
11
|
|
|
11
12
|
[](https://liberapay.com/zcraber)
|
|
12
13
|
|
|
@@ -80,7 +81,7 @@ Or install it yourself as:
|
|
|
80
81
|
## Configuration
|
|
81
82
|
Unstruction is super-easy to customize! There is only one `layout` and that is [default.html](_layouts/default.html).
|
|
82
83
|
|
|
83
|
-
Edit the [_config.yml](_config.yml) file to add your website's name, favicon, image, color theme, launch date and contact details.
|
|
84
|
+
Edit the [_config.yml](_config.yml) file to add your website's name, favicon, image, color theme, launch date and contact details. After customizing, add `ignore_theme_config: true` to prevent your settings from being overwritten by the theme's default config.
|
|
84
85
|
|
|
85
86
|
### `_config.yml`
|
|
86
87
|
```yml
|
|
@@ -93,7 +94,8 @@ favicon: assets/favicon.svg # SVG favicon of your website
|
|
|
93
94
|
url: https://digitalmalayalistudio.github.io/linkhub-jekyll-theme # URL of your website
|
|
94
95
|
image: assets/preview.webp # Also used for SEO (og:image)
|
|
95
96
|
color: orange # Preferred theme color based on the Shoelace color tokens. Visit https://shoelace.style/tokens/color#theme-tokens.
|
|
96
|
-
date: Jan 1, 3000, 00:00:00 # Set the planned launch date and time in an ISO 8601 format or use the format shown in the example. Time is optional. Remove this variable if you don't need a countdown.
|
|
97
|
+
date: Jan 1, 3000, 00:00:00 # Set the planned launch date and time in an ISO 8601 format or use the format shown in the example. Time is optional. Remove this variable if you don't need a countdown.
|
|
98
|
+
maintenance: false # Set true to enable maintenance mode
|
|
97
99
|
|
|
98
100
|
# Contacts
|
|
99
101
|
phone: +91123456789 #Remove any that are not needed
|
|
@@ -126,4 +128,4 @@ When your theme is released, only the files in [_layouts](_layouts), [_includes]
|
|
|
126
128
|
To add a custom directory to your theme-gem, please edit the regexp in [unstruction-jekyll-theme.gemspec](unstruction-jekyll-theme.gemspec) accordingly.
|
|
127
129
|
|
|
128
130
|
## License
|
|
129
|
-
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
131
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/_config.yml
CHANGED
|
@@ -7,7 +7,8 @@ favicon: assets/favicon.svg # SVG favicon of your website
|
|
|
7
7
|
url: https://digitalmalayalistudio.github.io/linkhub-jekyll-theme # URL of your website
|
|
8
8
|
image: assets/preview.webp # Also used for SEO (og:image)
|
|
9
9
|
color: orange # Preferred theme color based on the Shoelace color tokens. Visit https://shoelace.style/tokens/color#theme-tokens.
|
|
10
|
-
date: Jan 1, 3000, 00:00:00 # Set the planned launch date and time in an ISO 8601 format or use the format shown in the example. Time is optional. Remove this variable if you don't need a countdown.
|
|
10
|
+
date: Jan 1, 3000, 00:00:00 # Set the planned launch date and time in an ISO 8601 format or use the format shown in the example. Time is optional. Remove this variable if you don't need a countdown.
|
|
11
|
+
maintenance: false # Set true to enable maintenance mode
|
|
11
12
|
|
|
12
13
|
# Contacts
|
|
13
14
|
phone: +91123456789 #Remove any that are not needed
|
data/_layouts/default.html
CHANGED
|
@@ -52,7 +52,11 @@
|
|
|
52
52
|
<sl-card class="card-overview">
|
|
53
53
|
<img slot="image" src="{{ site.image }}" alt="{{ site.name }} - Under Construction" width="350">
|
|
54
54
|
<strong>{{ site.name }}</strong><br>
|
|
55
|
+
{% if site.maintenance == true %}
|
|
56
|
+
This website is undergoing maintenance.
|
|
57
|
+
{% else %}
|
|
55
58
|
This website is under construction.
|
|
59
|
+
{% endif %}
|
|
56
60
|
{% if site.date %}
|
|
57
61
|
<br>Please check back later in <sl-badge pill pulse
|
|
58
62
|
class="days"></sl-badge> days, <sl-badge pill pulse class="hr"></sl-badge> hours, <sl-badge
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unstruction-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Digital Malayali Studio
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: jekyll
|
|
@@ -16,29 +15,28 @@ dependencies:
|
|
|
16
15
|
requirements:
|
|
17
16
|
- - "~>"
|
|
18
17
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '4.
|
|
18
|
+
version: '4.4'
|
|
20
19
|
type: :runtime
|
|
21
20
|
prerelease: false
|
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
22
|
requirements:
|
|
24
23
|
- - "~>"
|
|
25
24
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '4.
|
|
25
|
+
version: '4.4'
|
|
27
26
|
- !ruby/object:Gem::Dependency
|
|
28
27
|
name: bundler
|
|
29
28
|
requirement: !ruby/object:Gem::Requirement
|
|
30
29
|
requirements:
|
|
31
30
|
- - "~>"
|
|
32
31
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
32
|
+
version: '4.0'
|
|
34
33
|
type: :development
|
|
35
34
|
prerelease: false
|
|
36
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
36
|
requirements:
|
|
38
37
|
- - "~>"
|
|
39
38
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
41
|
-
description:
|
|
39
|
+
version: '4.0'
|
|
42
40
|
email:
|
|
43
41
|
- studio@digitalmalayali.in
|
|
44
42
|
executables: []
|
|
@@ -61,7 +59,6 @@ metadata:
|
|
|
61
59
|
documentation_uri: https://github.com/digitalmalayalistudio/unstruction-jekyll-theme#readme
|
|
62
60
|
source_code_uri: https://github.com/digitalmalayalistudio/unstruction-jekyll-theme
|
|
63
61
|
funding_uri: https://liberapay.com/zcraber
|
|
64
|
-
post_install_message:
|
|
65
62
|
rdoc_options: []
|
|
66
63
|
require_paths:
|
|
67
64
|
- lib
|
|
@@ -76,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
76
73
|
- !ruby/object:Gem::Version
|
|
77
74
|
version: '0'
|
|
78
75
|
requirements: []
|
|
79
|
-
rubygems_version:
|
|
80
|
-
signing_key:
|
|
76
|
+
rubygems_version: 4.0.7
|
|
81
77
|
specification_version: 4
|
|
82
78
|
summary: Unstruction is a free Jekyll theme for setting up a simple and easy 'website
|
|
83
79
|
under construction' page.
|