jekyll-nagymaros 3.2.0 → 3.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -67
- data/_includes/footer.html +1 -1
- data/_sass/_fonts.scss +1 -0
- data/assets/fonts/Inter-Bold.woff2 +0 -0
- data/assets/fonts/Inter-BoldItalic.woff2 +0 -0
- data/assets/fonts/Inter-Italic.woff2 +0 -0
- data/assets/fonts/Inter-Light.woff2 +0 -0
- data/assets/fonts/Inter-LightItalic.woff2 +0 -0
- data/assets/fonts/Inter-Medium.woff2 +0 -0
- data/assets/fonts/Inter-MediumItalic.woff2 +0 -0
- data/assets/fonts/Inter-Regular.woff2 +0 -0
- data/assets/fonts/Inter-SemiBold.woff2 +0 -0
- data/assets/fonts/Inter-SemiBoldItalic.woff2 +0 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0897aad091d33dd04eca0270dda6f0f5897d9074201b362fa03481974d69a34
|
4
|
+
data.tar.gz: d97075e49357f9b6beedb7ae00de3af9f57f7f2eb4b3115bd485686c6e318699
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91679b92e91092be4c95c284072b931c69669bf78c6c2da6f31c4438625729047e07b4cb6ff1137d56732620aee15c98d7c23c0ad7d82862253512687b0eaad9
|
7
|
+
data.tar.gz: ef73e4d318ccc6b5e0dcdee22cca954898f5f5878de97c8713fa0b63756b88d31b06202d82e983fee37202c4ae2e3d888796a74830a2f2463bcba7c48e47d2fa
|
data/README.md
CHANGED
@@ -63,7 +63,7 @@ To customize hidden files, you can create new files with the same names and path
|
|
63
63
|
|
64
64
|
Core customization occurs in `_config.yml`. Aside from the usual configuration variables, you can set a value for `home`, which will determine the destination of the site title button in the header, as well as the return link from the 404 page. Only use this if you want these buttons to lead somewhere different than the index.
|
65
65
|
|
66
|
-
Next, you can set a value for `copyright`, which corresponds to the name of the copyright holder in the notice within the theme's footer. If no value is provided for this variable, the whole copyright notice is suppressed
|
66
|
+
Next, you can set a value for `copyright`, which corresponds to the name of the copyright holder in the notice within the theme's footer. If no value is provided for this variable (default), the whole copyright notice is suppressed.
|
67
67
|
|
68
68
|
Finally, you can set a value for `indexing`, which tells search engine crawlers whether to index your site. The default value is `false`, and in this case the following code is included in the head of every page:
|
69
69
|
|
@@ -82,83 +82,21 @@ Customizing the CSS is possible by creating a file `_sass/_custom.scss`. You can
|
|
82
82
|
For convenience, customization of the theme's color scheme is also possible via YAML. In this case, create a file `_data/skin.yml` and assign new colors from the [Open Color](https://yeun.github.io/open-color) library to various HTML elements. Make sure to stick to the library's color-number naming convention. Here is an example:
|
83
83
|
|
84
84
|
```yaml
|
85
|
-
a:
|
86
|
-
color: blue-7 # links
|
87
|
-
hover: blue-9 # links when hovering
|
88
|
-
accordion-button:
|
89
|
-
bg: gray-2 # button in accordion component
|
90
|
-
accordion-item:
|
91
|
-
border: gray-2 # border of button in accordion component
|
92
|
-
alert-primary:
|
93
|
-
bg: blue-1 # primary alert
|
94
85
|
body:
|
95
86
|
bg: gray-0 # background
|
96
87
|
color: gray-8 # body text
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
hover:
|
101
|
-
bg: blue-5 # outline primary button when hovering
|
102
|
-
color: gray-0 # outline primary button text when hovering
|
103
|
-
disabled:
|
104
|
-
bg: blue-3 # disabled outline primary button
|
105
|
-
color: blue-3 # disabled outline primary button text
|
106
|
-
btn-primary:
|
107
|
-
bg: blue-5 # primary button
|
108
|
-
color: gray-0 # primary button text
|
109
|
-
hover: blue-7 # primary button when hovering
|
110
|
-
disabled: blue-3 # disabled primary button
|
111
|
-
btn-secondary:
|
112
|
-
bg: gray-4 # secondary button
|
113
|
-
color: gray-0 # secondary button text
|
114
|
-
hover: gray-6 # secondary button when hovering
|
115
|
-
caption:
|
116
|
-
cikir: gray-6 # caption text
|
117
|
-
card:
|
118
|
-
border: gray-2 # card component border
|
119
|
-
card-header:
|
120
|
-
bg: gray-2 # header of card component
|
121
|
-
dropdown-menu:
|
122
|
-
bg: gray-2 # dropdown menu
|
123
|
-
color: gray-7 # dropdown menu text
|
124
|
-
dropdown-item:
|
125
|
-
color: gray-7 # dropdown link
|
126
|
-
hover: gray-9 # dropdown link when hovering
|
127
|
-
disabled: gray-6 # disabled dropdown link
|
88
|
+
a:
|
89
|
+
color: blue-7 # links
|
90
|
+
hover: blue-9 # links when hovering
|
128
91
|
digit:
|
129
92
|
bg: gray-3 # background of digit on 404 page
|
130
|
-
form-control:
|
131
|
-
bg: gray-0 # form field
|
132
|
-
color: gray-9 # form field text
|
133
|
-
border: gray-3 # form field border
|
134
|
-
focus:
|
135
|
-
bg: gray-0 # focused form field
|
136
|
-
color: gray-9 # focused form field text
|
137
|
-
border: blue-2 # focused form field border
|
138
|
-
shadow: blue-1 # focused form field shadow
|
139
|
-
placeholder: gray-6 # form placeholder text
|
140
93
|
header:
|
141
94
|
bg: gray-4 # background of navigation bar
|
142
95
|
index:
|
143
96
|
bg: gray-2 # background of index container
|
144
|
-
invalid-feedback: red-9 # form input warning
|
145
|
-
navbar-brand:
|
146
|
-
color: gray-8 # website name in header
|
147
|
-
hover: gray-9 # website name in header when hovering
|
148
|
-
nav-link:
|
149
|
-
color: gray-7 # navigation links in header
|
150
|
-
hover: gray-9 # navigation links in header when hovering
|
151
|
-
svg:
|
152
|
-
fill: # svg icons
|
153
|
-
table:
|
154
|
-
td:
|
155
|
-
border: # table row dividers
|
156
|
-
text-muted:
|
157
|
-
color: gray-6 # light text
|
158
|
-
hover: gray-9 # light text when hovering (if link)
|
159
97
|
```
|
160
98
|
|
161
|
-
The variables are named after the HTML elements they style. The colors to which they are set in this example are actually the theme's defaults. If no value is provided for some variables, or if `_data/skin.yml` does not exist, the theme assumes the
|
99
|
+
The variables are named after the HTML elements they style. The colors to which they are set in this example are actually the theme's defaults. If no value is provided for some variables, or if `_data/skin.yml` does not exist, the theme assumes the default colors. See `assets/css/styles.scss` for a complete list of defaults.
|
162
100
|
|
163
101
|
## Credits
|
164
102
|
|
data/_includes/footer.html
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{% assign year = site.time | date: '%Y' %}
|
2
2
|
{% if site.copyright and site.copyright != '' %}
|
3
3
|
<footer class="container mb-4">
|
4
|
-
<small class="text-muted">©{{ year }} {{ site.copyright }}. All rights reserved.</small>
|
4
|
+
<small class="text-muted">© {{ year }} {{ site.copyright }}. All rights reserved.</small>
|
5
5
|
</footer>
|
6
6
|
{% endif %}
|
data/_sass/_fonts.scss
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-nagymaros
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- piazzai
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: github-pages
|
@@ -72,6 +72,8 @@ files:
|
|
72
72
|
- assets/fonts/Inter-Medium.woff2
|
73
73
|
- assets/fonts/Inter-MediumItalic.woff2
|
74
74
|
- assets/fonts/Inter-Regular.woff2
|
75
|
+
- assets/fonts/Inter-SemiBold.woff2
|
76
|
+
- assets/fonts/Inter-SemiBoldItalic.woff2
|
75
77
|
- assets/fonts/ZillaSlab-Light.woff2
|
76
78
|
- assets/fonts/ZillaSlab-LightItalic.woff2
|
77
79
|
- assets/icons/android-chrome-192x192.png
|