jekyll-theme-miniplex 0.2.2 → 0.3.0
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a62d87e97bcc76a60a5dbc91c666fb5b5713e3965bd69db3f8eac87aaecc1ede
|
4
|
+
data.tar.gz: 348e4bf7f940ec454be9821d987ecd11470735ada2d5ddc58197778e4ad4fb5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55d7c422976ae93ebcc7cfd1302e6478ab460d6031ff3350d7e3513585d174a2495723a544cfd49a4858e8903d966d1ad2ce7bf5bd3a0232bd4ec7a4097b57a0
|
7
|
+
data.tar.gz: 68242ad962ebb5871f483b913dd32b2f406a9bd64933c18beb2ada58cd90445db8a6cffe0d17730e10a8b994f4d7d7267de132b8be261e476ef2517bc19c15b6
|
File without changes
|
data/_layouts/default.html
CHANGED
@@ -1,14 +1,20 @@
|
|
1
1
|
<!doctype html>
|
2
2
|
<html lang="en">
|
3
3
|
<head>
|
4
|
+
|
5
|
+
<title>{{ page.title }} - {{ site.title }}</title>
|
6
|
+
|
4
7
|
<meta charset="utf-8">
|
5
|
-
<meta name="viewport" content="
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
9
|
<meta name="theme-color" content="#ffffff">
|
7
|
-
|
10
|
+
|
8
11
|
<link rel="stylesheet" href="/assets/css/main.css">
|
9
12
|
<script type="text/javascript" src="/assets/js/main.js"></script>
|
10
|
-
|
13
|
+
|
14
|
+
{% include additional_head_tags.html %}
|
15
|
+
|
11
16
|
</head>
|
17
|
+
|
12
18
|
<body>
|
13
19
|
<div id="layout">
|
14
20
|
<main id="content">
|
@@ -125,11 +125,11 @@ $large_breakpoint: $medium_breakpoint + $large_minimum_left_navigation_width + 2
|
|
125
125
|
#{$property}: clamp(#{$property_min}, #{$property_min} + #{"calc(("} 100vw - #{$viewport_min} #{")"} * #{math.div($property_max - $property_min, $viewport_max - $viewport_min)} #{")"}, #{$property_max})
|
126
126
|
|
127
127
|
// Colors
|
128
|
-
$primary_foreground_color: #
|
128
|
+
$primary_foreground_color: #444444
|
129
129
|
$heading_foreground_color: #333333
|
130
|
-
$interactive_color: #
|
130
|
+
$interactive_color: #777777
|
131
131
|
$interactive_background_color: #eeeeee
|
132
|
-
$accent_color_1: #
|
132
|
+
$accent_color_1: #777777
|
133
133
|
$outer_background_color: #ffffff
|
134
134
|
$content_background_color: #ffffff
|
135
135
|
$group_color_level_1: #eeeeee
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-miniplex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Timo Würsch
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-11-
|
11
|
+
date: 2022-11-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -48,7 +48,7 @@ files:
|
|
48
48
|
- LICENSE.txt
|
49
49
|
- README.md
|
50
50
|
- _config.yml
|
51
|
-
- _includes/
|
51
|
+
- _includes/additional_head_tags.html
|
52
52
|
- _includes/navigation_desktop.html
|
53
53
|
- _includes/navigation_mobile.html
|
54
54
|
- _layouts/default.html
|