mono-lite 0.3.0 → 0.3.1
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/_includes/head.html +1 -1
- data/_includes/header.html +1 -3
- data/_layouts/home.html +2 -0
- data/_layouts/page.html +2 -6
- data/_sass/_layout.scss +11 -4
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c82e367b551e84dfcc2f034f82f4af7602d3f598acc31a88e07a1c2ec312849c
|
4
|
+
data.tar.gz: dc671a8a341dfc827073aad60aee7ae23dc187f8a5fa0f7ab6b7feb9ff182816
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 073cbc9f20c4a05a26e5745ea95c8d83d7d46823ab63f22e09a09603c5433d20d0b73de8ff1c3f2692bbe3f55cfde6858b91f08cd0d30a4e24f60f82348ea1c7
|
7
|
+
data.tar.gz: 2da47650a5c27640d6bd8136d0a10a0fed4c604911f8a049d3f08a05be6a64b300ea13cf7295532a369ebeff724eec831eb4d2c57ecc12453b7f93cee8ab8037
|
data/_includes/head.html
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
5
5
|
|
6
|
-
<title>{% if page.title %}{{ page.title }}
|
6
|
+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
|
7
7
|
<meta name="description" content="{% if site.description %}{{ site.description }}{% else %}{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 }}{% endif %}">
|
8
8
|
|
9
9
|
<link rel="stylesheet" href="{{ "/assets/style.css" | relative_url }}">
|
data/_includes/header.html
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
<header class="site-header">
|
2
2
|
<div class="header-content">
|
3
|
-
<p class="site-title">{{ site.title | upcase }}</p>
|
3
|
+
<p class="site-title"><a href="/" class="unstyled-link">{{ site.title | upcase }}</a></p>
|
4
4
|
<div class="header-social-links">
|
5
5
|
{%- if site.author.email -%}
|
6
6
|
<a href="mailto:{{ site.author.email }}" title="Email">Email</a>
|
@@ -16,6 +16,4 @@
|
|
16
16
|
{%- endif -%}
|
17
17
|
</div>
|
18
18
|
</div>
|
19
|
-
<p>{{ site.mono-lite.intro_description }}</p>
|
20
|
-
<p>{{ site.mono-lite.secondary_description }}</p>
|
21
19
|
</header>
|
data/_layouts/home.html
CHANGED
data/_layouts/page.html
CHANGED
@@ -3,13 +3,9 @@ layout: default
|
|
3
3
|
---
|
4
4
|
|
5
5
|
<section>
|
6
|
-
|
7
|
-
<a class="back-btn" href="/">
|
8
|
-
<span>👈</span>
|
9
|
-
Back to all work
|
10
|
-
</a>
|
6
|
+
{%- include header.html -%}
|
11
7
|
</section>
|
12
8
|
|
13
|
-
<section
|
9
|
+
<section>
|
14
10
|
{{ content }}
|
15
11
|
</section>
|
data/_sass/_layout.scss
CHANGED
@@ -22,6 +22,11 @@
|
|
22
22
|
font-size: 1.125rem;
|
23
23
|
}
|
24
24
|
|
25
|
+
.unstyled-link {
|
26
|
+
text-decoration: none;
|
27
|
+
color: inherit;
|
28
|
+
}
|
29
|
+
|
25
30
|
.page-content {
|
26
31
|
display: flex;
|
27
32
|
flex-direction: column;
|
@@ -98,12 +103,9 @@ section {
|
|
98
103
|
}
|
99
104
|
|
100
105
|
.post-title-header {
|
101
|
-
display: block;
|
102
106
|
font-size: 1.5rem;
|
103
107
|
margin-block-start: 0.83em;
|
104
108
|
margin-block-end: 0.83em;
|
105
|
-
margin-inline-start: 0px;
|
106
|
-
margin-inline-end: 0px;
|
107
109
|
font-weight: bold;
|
108
110
|
}
|
109
111
|
|
@@ -129,11 +131,12 @@ section {
|
|
129
131
|
|
130
132
|
.post-byline {
|
131
133
|
position: relative;
|
132
|
-
top: -
|
134
|
+
top: -1.5rem;
|
133
135
|
font-weight: 300;
|
134
136
|
}
|
135
137
|
|
136
138
|
.header-content {
|
139
|
+
margin-top: 0.4rem;
|
137
140
|
display: flex;
|
138
141
|
justify-content: space-between;
|
139
142
|
align-items: center;
|
@@ -152,6 +155,10 @@ section {
|
|
152
155
|
}
|
153
156
|
}
|
154
157
|
|
158
|
+
.post-header {
|
159
|
+
margin-top: -0.6rem;
|
160
|
+
}
|
161
|
+
|
155
162
|
@media (max-width: $on-palm) {
|
156
163
|
.post-img {
|
157
164
|
height: 100px;
|
metadata
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mono-lite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dylan Hawley
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2025-05-06 00:00:00.000000000 Z
|
@@ -38,7 +38,7 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
description:
|
41
|
+
description:
|
42
42
|
email:
|
43
43
|
- dylanthomashawley@gmail.com
|
44
44
|
executables: []
|
@@ -68,7 +68,7 @@ homepage: https://mono-lite.github.io
|
|
68
68
|
licenses:
|
69
69
|
- MIT
|
70
70
|
metadata: {}
|
71
|
-
post_install_message:
|
71
|
+
post_install_message:
|
72
72
|
rdoc_options: []
|
73
73
|
require_paths:
|
74
74
|
- lib
|
@@ -83,8 +83,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
- !ruby/object:Gem::Version
|
84
84
|
version: '0'
|
85
85
|
requirements: []
|
86
|
-
rubygems_version: 3.3.
|
87
|
-
signing_key:
|
86
|
+
rubygems_version: 3.0.3.1
|
87
|
+
signing_key:
|
88
88
|
specification_version: 4
|
89
89
|
summary: Lightweight single-column Jekyll site.
|
90
90
|
test_files: []
|