jekyll-theme-profile 1.1.0 → 1.2.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/_config.yml +1 -0
- data/_layouts/default.html +2 -2
- data/assets/css/style.scss +11 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2f22b92e41c06a56c536e5d99441caf1cf9cb125a6fdff6aacc3bcf245a087e
|
|
4
|
+
data.tar.gz: 68fcc586bc613771d69843c787fbea7c2243fd91a1200c26ee5907b18de63fcc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2be63f78cf84156ef8553aa300119e0dcc73be0f084717bf9886bd866f4b6f10d18c12741e53e1ec2bc2a8d7e1d02c33bdb2f27522f1b106f38ff7907fc4be4b
|
|
7
|
+
data.tar.gz: 42c51de2313fc240a3904baa32f7e22e012f536cc4cd220c162fec2bb0533fedd4a2d6d5a995f5066922ff8162a8bb7b61e93aaea429399945fe8a9553add580
|
data/_config.yml
CHANGED
|
@@ -10,6 +10,7 @@ user_image: /media/user-image.jpg
|
|
|
10
10
|
# overlay: rgba(255, 255, 255, 0.5)
|
|
11
11
|
# dark:
|
|
12
12
|
# overlay: rgba(0, 0, 0, 0.5)
|
|
13
|
+
# color: white # The color for the profile card
|
|
13
14
|
|
|
14
15
|
repo_info: true # Show the information for the source of this project
|
|
15
16
|
metadata: false # Show the metadata associated with the user
|
data/_layouts/default.html
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
<div class="d-flex flex-justify-end pt-2">
|
|
45
45
|
{%- include toggle.html %}
|
|
46
46
|
</div>
|
|
47
|
-
<div class="text-center py-3 border-bottom">
|
|
47
|
+
<div class="Profile text-center py-3 border-bottom">
|
|
48
48
|
{%- include masthead.html metadata=metadata %}
|
|
49
49
|
{%- if site.repo_info %}
|
|
50
50
|
<div class="my-2">
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
</div>
|
|
76
76
|
{%- elsif style == 'sidebar' %}
|
|
77
77
|
<div class="container-xl d-lg-flex min-height-full">
|
|
78
|
-
<div class="col-lg-4 border-gray-light px-4 py-6 text-center">
|
|
78
|
+
<div class="Profile col-lg-4 border-gray-light px-4 py-6 text-center">
|
|
79
79
|
{%- include masthead.html metadata=metadata %}
|
|
80
80
|
{%- if site.repo_info %}
|
|
81
81
|
<div class="my-2">
|
data/assets/css/style.scss
CHANGED