mono-lite 0.2.4 → 0.2.5
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 +2 -2
- data/_includes/header.html +2 -2
- data/_includes/social.html +17 -17
- data/_layouts/page.html +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b3220732e4eb793719af457c06c63d75a19fade2f648021f3f997aa0cf3d349
|
4
|
+
data.tar.gz: aa256015cd77a5185c5555f3882ae92a843ed6b096346abc6fbdb45e5541858d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68b6bddf3fb34a1544b38ac6f1c4bc517a9322bce1d9551e761a22f4cce80421f7fd8e3b2c449ff24fb1a85c98bd21e387142497cf0f43c3e3f7998649c0e510
|
7
|
+
data.tar.gz: aa331d333e02071add619c267b7965ee54a222059b468637add31a00d85fafe192770c20f6db636a0cf3cef9462b8e2b1d8f2af1eefce265456782ad874f99e1
|
data/_includes/head.html
CHANGED
@@ -3,8 +3,8 @@
|
|
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
|
7
|
-
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160
|
6
|
+
<title>{% if page.title %}{{ page.title }} | {{ site.title }}{% else %}{{ site.title }}{% endif %}</title>
|
7
|
+
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 }}">
|
8
8
|
|
9
9
|
<link rel="stylesheet" href="{{ "/assets/style.css" | relative_url }}">
|
10
10
|
{%- if jekyll.environment == 'production' and site.google_analytics -%}
|
data/_includes/header.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
<header class="site-header">
|
2
|
-
<p class="site-title">{{ site.title | upcase
|
3
|
-
<p>{{ site.mono-lite.intro_description
|
2
|
+
<p class="site-title">{{ site.title | upcase }}</p>
|
3
|
+
<p>{{ site.mono-lite.intro_description }}</p>
|
4
4
|
{%- include social.html -%}
|
5
5
|
</header>
|
data/_includes/social.html
CHANGED
@@ -1,21 +1,21 @@
|
|
1
1
|
{%- assign social = site.mono-lite.social_links -%}
|
2
2
|
|
3
3
|
<ul class="social-media-list">
|
4
|
-
{%- for glb in social.gitlab -%}{%- if glb.username and glb.instance -%}<li><a rel="me" href="https://{{ glb.instance | cgi_escape
|
5
|
-
{%- if social.dribbble -%}<li><a rel="me" href="https://dribbble.com/{{ social.dribbble | cgi_escape
|
6
|
-
{%- if social.facebook -%}<li><a rel="me" href="https://www.facebook.com/{{ social.facebook | cgi_escape
|
7
|
-
{%- if social.flickr -%}<li><a rel="me" href="https://www.flickr.com/photos/{{ social.flickr | cgi_escape
|
8
|
-
{%- if social.github -%}<li><a rel="me" href="https://github.com/{{ social.github | cgi_escape
|
9
|
-
{%- if social.stackoverflow -%}<li><a rel="me" href="https://stackoverflow.com/users/{{ social.stackoverflow | cgi_escape
|
10
|
-
{%- if social.instagram -%}<li><a rel="me" href="https://www.instagram.com/{{ social.instagram | cgi_escape
|
11
|
-
{%- if social.linkedin -%}<li><a rel="me" href="https://www.linkedin.com/in/{{ social.linkedin | cgi_escape
|
12
|
-
{%- if social.pinterest -%}<li><a rel="me" href="https://www.pinterest.com/{{ social.pinterest | cgi_escape
|
13
|
-
{%- for mst in social.mastodon -%}{%- if mst.username and mst.instance -%}<li><a rel="me" href="https://{{ mst.instance | cgi_escape
|
14
|
-
{%- if social.twitter -%}<li><a rel="me" href="https://twitter.com/{{ social.twitter | cgi_escape
|
15
|
-
{%- if social.youtube -%}<li><a rel="me" href="https://www.youtube.com/{{ social.youtube | cgi_escape
|
16
|
-
{%- if social.youtube_channel -%}<li><a rel="me" href="https://www.youtube.com/channel/{{ social.youtube_channel | cgi_escape
|
17
|
-
{%- if social.telegram -%}<li><a rel="me" href="https://t.me/{{ social.telegram | cgi_escape
|
18
|
-
{%- if social.keybase -%}<li><a rel="me" href="https://keybase.io/{{ social.keybase | cgi_escape
|
19
|
-
{%- if social.microdotblog -%}<li><a rel="me" href="https://micro.blog/{{ social.microdotblog | cgi_escape
|
20
|
-
{%- if social.devto -%}<li><a href="https://dev.to/{{ social.devto | cgi_escape
|
4
|
+
{%- for glb in social.gitlab -%}{%- if glb.username and glb.instance -%}<li><a rel="me" href="https://{{ glb.instance | cgi_escape }}/{{glb.username}}" title="{{ glb.username }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#gitlab' | relative_url }}"></use></svg></a></li>{%- endif -%}{%- endfor -%}
|
5
|
+
{%- if social.dribbble -%}<li><a rel="me" href="https://dribbble.com/{{ social.dribbble | cgi_escape }}" title="{{ social.dribbble }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#dribbble' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
6
|
+
{%- if social.facebook -%}<li><a rel="me" href="https://www.facebook.com/{{ social.facebook | cgi_escape }}" title="{{ social.facebook }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#facebook' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
7
|
+
{%- if social.flickr -%}<li><a rel="me" href="https://www.flickr.com/photos/{{ social.flickr | cgi_escape }}" title="{{ social.flickr }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#flickr' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
8
|
+
{%- if social.github -%}<li><a rel="me" href="https://github.com/{{ social.github | cgi_escape }}" title="{{ social.github }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#github' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
9
|
+
{%- if social.stackoverflow -%}<li><a rel="me" href="https://stackoverflow.com/users/{{ social.stackoverflow | cgi_escape }}" title="{{ social.stackoverflow }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#stackoverflow' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
10
|
+
{%- if social.instagram -%}<li><a rel="me" href="https://www.instagram.com/{{ social.instagram | cgi_escape }}" title="{{ social.instagram }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#instagram' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
11
|
+
{%- if social.linkedin -%}<li><a rel="me" href="https://www.linkedin.com/in/{{ social.linkedin | cgi_escape }}" title="{{ social.linkedin }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#linkedin' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
12
|
+
{%- if social.pinterest -%}<li><a rel="me" href="https://www.pinterest.com/{{ social.pinterest | cgi_escape }}" title="{{ social.pinterest }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#pinterest' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
13
|
+
{%- for mst in social.mastodon -%}{%- if mst.username and mst.instance -%}<li><a rel="me" href="https://{{ mst.instance | cgi_escape }}/@{{mst.username}}" title="{{ mst.username }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#mastodon' | relative_url }}"></use></svg></a></li>{%- endif -%}{%- endfor -%}
|
14
|
+
{%- if social.twitter -%}<li><a rel="me" href="https://twitter.com/{{ social.twitter | cgi_escape }}" title="{{ social.twitter }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#twitter' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
15
|
+
{%- if social.youtube -%}<li><a rel="me" href="https://www.youtube.com/{{ social.youtube | cgi_escape }}" title="{{ social.youtube }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#youtube' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
16
|
+
{%- if social.youtube_channel -%}<li><a rel="me" href="https://www.youtube.com/channel/{{ social.youtube_channel | cgi_escape }}" title="{{ social.youtube_channel_name | default: 'YouTube' }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#youtube' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
17
|
+
{%- if social.telegram -%}<li><a rel="me" href="https://t.me/{{ social.telegram | cgi_escape }}" title="{{ social.telegram }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#telegram' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
18
|
+
{%- if social.keybase -%}<li><a rel="me" href="https://keybase.io/{{ social.keybase | cgi_escape }}" title="{{ social.keybase }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#keybase' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
19
|
+
{%- if social.microdotblog -%}<li><a rel="me" href="https://micro.blog/{{ social.microdotblog | cgi_escape }}" title="{{ social.microdotblog }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#microdotblog' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
20
|
+
{%- if social.devto -%}<li><a href="https://dev.to/{{ social.devto | cgi_escape }}" title="{{ social.devto }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/social-icons.svg#devto' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
21
21
|
</ul>
|
data/_layouts/page.html
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mono-lite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dylan Hawley
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.
|
19
|
+
version: 3.9.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.
|
26
|
+
version: 3.9.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|