awesome-jekyll-theme 1.4.3 → 1.5.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 +4 -4
- data/README.md +3 -1
- data/_config.yml +2 -1
- data/_includes/contact_channels.html +12 -0
- data/_includes/footer.html +1 -1
- data/_layouts/page.html +1 -1
- data/assets/images/contact_channels/gitlab.svg +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 79392d9826e545c30f8955cb681810f0eef511711c88988bff8309b87ecd4d77
|
|
4
|
+
data.tar.gz: 26c0d0003fcb9ace5b2389a6207cae568eeec10da2e1e61bed7ce4d02ea9f9cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d0d53899e504bf3bed4272291fb0299159561c6d17e1eef641c88ccdc1159c9671be86af56722986b86c3af5b2d5a4095a95c3fa6ca8107008228a46960276a0
|
|
7
|
+
data.tar.gz: f4f7f4f1be66cf6755e8e36db6733452379449aacb718f8d45e8070d73a3d36d81383686259cf374db75b805d175e3d55851505b13c54e124b3d592b0f99604f
|
data/README.md
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
A clean, versatile Jekyll theme with minimalist design and robust features.
|
|
20
20
|
Ideal for portfolios, blogs, and project showcases with responsive layouts and easy customization.
|
|
21
21
|
|
|
22
|
-
##
|
|
22
|
+
## Screenshots
|
|
23
23
|
|
|
24
24
|
### Home Layout
|
|
25
25
|
|
|
@@ -168,10 +168,12 @@ Contact channels are displayed in the home layout and the footer. To configure t
|
|
|
168
168
|
contact_channels:
|
|
169
169
|
email: "andres.ch@protonmail.com"
|
|
170
170
|
github: "https://github.com/a-chacon"
|
|
171
|
+
gitlab: "https://gitlab.com/example"
|
|
171
172
|
telegram: "https://t.me/a_chacon"
|
|
172
173
|
stackoverflow: "https://stackoverflow.com/users/16847024/andr%c3%a9s"
|
|
173
174
|
discord: "https://discord.com/users/673943171369140252"
|
|
174
175
|
mastodon: "https://lile.cl/@achacon"
|
|
176
|
+
linkedin: "https://www.linkedin.com/in/example"
|
|
175
177
|
```
|
|
176
178
|
|
|
177
179
|
**If you need to add a new one, just ask or send a PR**
|
data/_config.yml
CHANGED
|
@@ -11,7 +11,7 @@ collections:
|
|
|
11
11
|
|
|
12
12
|
##
|
|
13
13
|
# Contact Channels configuration
|
|
14
|
-
# Uncomment for enable. Available contact channels are email, github, telegram, stackoverflow, discord, mastodon.
|
|
14
|
+
# Uncomment for enable. Available contact channels are email, github, gitlab, telegram, stackoverflow, discord, mastodon, and linkedin.
|
|
15
15
|
# Please fell free to send a PR if you need a new one.
|
|
16
16
|
# DISABLE GITHUB setting it as an empty string: ""
|
|
17
17
|
# if false, then no contact channels will be display.
|
|
@@ -20,6 +20,7 @@ contact_channels_section: true
|
|
|
20
20
|
contact_channels:
|
|
21
21
|
# email: "example@example.cl"
|
|
22
22
|
github: "https://github.com/a-chacon"
|
|
23
|
+
# gitlab: "https://gitlab.com/example"
|
|
23
24
|
# telegram: "https://t.me/"
|
|
24
25
|
# stackoverflow: "https://stackoverflow.com"
|
|
25
26
|
# discord: "https://discord.com/"
|
|
@@ -23,6 +23,18 @@
|
|
|
23
23
|
alt="Github Icon"
|
|
24
24
|
/>
|
|
25
25
|
</a>
|
|
26
|
+
{% endif %} {% if contact_channels.gitlab and contact_channels.gitlab != ""%}
|
|
27
|
+
<a
|
|
28
|
+
class="transition hover:scale-110 duration-300"
|
|
29
|
+
href="{{ contact_channels.gitlab }}"
|
|
30
|
+
target="_blank"
|
|
31
|
+
>
|
|
32
|
+
<img
|
|
33
|
+
class="h-6 w-6 dark:invert"
|
|
34
|
+
src="{{'/assets/images/contact_channels/gitlab.svg' | relative_url }}"
|
|
35
|
+
alt="Gitlab Icon"
|
|
36
|
+
/>
|
|
37
|
+
</a>
|
|
26
38
|
{% endif %} {% if contact_channels.telegram %}
|
|
27
39
|
<a
|
|
28
40
|
class="transition hover:scale-110 duration-300"
|
data/_includes/footer.html
CHANGED
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
{% endif %}
|
|
53
53
|
<div class="text-sm text-blueGray-500 font-semibold py-1">
|
|
54
54
|
© <span id="get-current-year">{{currentYear}}</span>
|
|
55
|
-
<a href="
|
|
55
|
+
<a href="/" class="text-blueGray-500 hover:text-gray-800"
|
|
56
56
|
target="_blank" aria-label="Creative C">{{site.title}}.</a>
|
|
57
57
|
All rights reserved.
|
|
58
58
|
<p class="text-xs pt-4">
|
data/_layouts/page.html
CHANGED
|
@@ -5,7 +5,7 @@ layout: default
|
|
|
5
5
|
<link rel="stylesheet" href="{{ '/assets/css/monokai.css' | relative_url }}">
|
|
6
6
|
<div class="container mx-auto">
|
|
7
7
|
<div id="page" class="prose dark:prose-invert md:prose-lg max-w-[75ch] prose-neutral mx-auto pb-10 pt-20 lg:pt-[90px] lg:pb-20">
|
|
8
|
-
<h1 class="text-left text-2xl font-bold md:text-5xl
|
|
8
|
+
<h1 class="text-left text-2xl font-bold md:text-5xl">{{page.title}}</h1>
|
|
9
9
|
<div class="my-6">
|
|
10
10
|
{{content}}
|
|
11
11
|
</div>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 380 380"><defs><style>.cls-1{fill:#171321;}</style></defs><g id="LOGO"><path class="cls-1" d="M282.83,170.73l-.27-.69-26.14-68.22a6.81,6.81,0,0,0-2.69-3.24,7,7,0,0,0-8,.43,7,7,0,0,0-2.32,3.52l-17.65,54H154.29l-17.65-54A6.86,6.86,0,0,0,134.32,99a7,7,0,0,0-8-.43,6.87,6.87,0,0,0-2.69,3.24L97.44,170l-.26.69a48.54,48.54,0,0,0,16.1,56.1l.09.07.24.17,39.82,29.82,19.7,14.91,12,9.06a8.07,8.07,0,0,0,9.76,0l12-9.06,19.7-14.91,40.06-30,.1-.08A48.56,48.56,0,0,0,282.83,170.73Z"/></g></svg>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: awesome-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- a-chacon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -105,6 +105,7 @@ files:
|
|
|
105
105
|
- assets/images/contact_channels/discord.svg
|
|
106
106
|
- assets/images/contact_channels/email.svg
|
|
107
107
|
- assets/images/contact_channels/github-mark.svg
|
|
108
|
+
- assets/images/contact_channels/gitlab.svg
|
|
108
109
|
- assets/images/contact_channels/linkedin.svg
|
|
109
110
|
- assets/images/contact_channels/mastodon.svg
|
|
110
111
|
- assets/images/contact_channels/stack-overflow.svg
|