jekyll-theme-profile 1.10.0 → 1.10.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/_config.yml +30 -26
- data/_includes/header-appbar.html +3 -0
- data/_includes/header-topbar.html +3 -0
- data/_includes/masthead.html +1 -1
- data/_includes/nav-overlay.html +3 -0
- data/_includes/post-timeline.html +9 -3
- data/_layouts/default.html +0 -3
- data/_layouts/landing.html +0 -3
- data/_layouts/post.html +0 -7
- data/_layouts/profile.html +4 -7
- data/assets/img/social-preview.png +0 -0
- metadata +8 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: de52aaf8b68879950d8fe9a1d43268edf0c8fbb5faaf282984a8ad4ba8d232bc
|
|
4
|
+
data.tar.gz: b5b2e8e74bc7a132356bf77dd2b95e129068d2601cf21655ef085de58061bf75
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01cc131a4838cacb9d33d47e608275c1578795a2e1c4569975aac68cce236d512946887cb26e6bf98389ffba38af3318b69d9560667354929fe38d0bf86dc81f
|
|
7
|
+
data.tar.gz: c66094b9eec8689493cb05239ce7cc3e375d27e67af7154068fc4816c8b9a0fd46e7b0214184cd0d1752ef2627f7d673f60652a9e805d98ad08f854e730d427a
|
data/_config.yml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
theme: jekyll-theme-profile
|
|
3
3
|
title: Jekyll Theme Profile
|
|
4
4
|
description: Theme built with jekyll-theme-profile
|
|
5
|
-
image: /
|
|
5
|
+
# image: /assets/img/social-preview.png
|
|
6
6
|
# repository: athackst/jekyll-theme-profile
|
|
7
7
|
# base_url: "jekyll-theme-profile"
|
|
8
8
|
|
|
@@ -72,21 +72,21 @@ profile_link: true # Show a link to the github profile for the user
|
|
|
72
72
|
|
|
73
73
|
####################
|
|
74
74
|
# Navigation links
|
|
75
|
-
nav:
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
75
|
+
# nav:
|
|
76
|
+
# - name: Posts
|
|
77
|
+
# url: /blog
|
|
78
|
+
# - name: Categories
|
|
79
|
+
# url: /category/
|
|
80
80
|
|
|
81
81
|
####################
|
|
82
82
|
# List of links for link cards
|
|
83
|
-
links:
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
83
|
+
# links:
|
|
84
|
+
# - name: All blog posts
|
|
85
|
+
# url: /blog
|
|
86
|
+
# thumbnail: /assets/img/blog-post-icon.png
|
|
87
|
+
# - name: Browse by category
|
|
88
|
+
# url: /category/
|
|
89
|
+
# thumbnail: /assets/img/category-icon.png
|
|
90
90
|
|
|
91
91
|
###################
|
|
92
92
|
# Repositories to show on home page
|
|
@@ -104,7 +104,11 @@ repositories:
|
|
|
104
104
|
|
|
105
105
|
########################
|
|
106
106
|
# Post timeline
|
|
107
|
-
posts_limit: 3 # The number of posts to show in home (also can be defined in page)
|
|
107
|
+
# posts_limit: 3 # The number of posts to show in home (also can be defined in page)
|
|
108
|
+
|
|
109
|
+
########################
|
|
110
|
+
# Post pages
|
|
111
|
+
related_by: "tags or categories"
|
|
108
112
|
|
|
109
113
|
# ########### Plugin settings ###############
|
|
110
114
|
plugins:
|
|
@@ -117,21 +121,17 @@ plugins:
|
|
|
117
121
|
|
|
118
122
|
####################
|
|
119
123
|
# jekyll-paginate settings
|
|
120
|
-
paginate: 6 # The number of posts to show per page of pagination of blog posts
|
|
121
|
-
paginate_path: "/blog/page:num"
|
|
122
|
-
###################
|
|
124
|
+
# paginate: 6 # The number of posts to show per page of pagination of blog posts
|
|
125
|
+
# paginate_path: "/blog/page:num"
|
|
126
|
+
# ###################
|
|
123
127
|
# jekyll-tagging settings
|
|
124
128
|
# Include `gem jekyll-tagging` in your gemfile
|
|
125
|
-
tag_page_layout: tags
|
|
126
|
-
tag_page_dir: tags
|
|
127
|
-
#
|
|
128
|
-
related_by: "tags or categories"
|
|
129
|
-
|
|
130
|
-
####################
|
|
129
|
+
# tag_page_layout: tags
|
|
130
|
+
# tag_page_dir: tags
|
|
131
|
+
# ####################
|
|
131
132
|
# jekyll-category-pages settings
|
|
132
|
-
category_path: category
|
|
133
|
-
category_layout: category_layout.html
|
|
134
|
-
|
|
133
|
+
# category_path: category
|
|
134
|
+
# category_layout: category_layout.html
|
|
135
135
|
######################
|
|
136
136
|
# jekyll-relative-links settings
|
|
137
137
|
relative_links:
|
|
@@ -141,4 +141,8 @@ relative_links:
|
|
|
141
141
|
# ########### Build settings ###############
|
|
142
142
|
exclude:
|
|
143
143
|
- spec
|
|
144
|
+
- vendor
|
|
145
|
+
- .jekyll-cache
|
|
146
|
+
- _site
|
|
147
|
+
- node_modules
|
|
144
148
|
- demo
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
{%- assign user = site.github.owner %}
|
|
2
|
+
{%- assign name = site.title | default: user.name | default: user.login %}
|
|
3
|
+
{%- assign user_img = site.user_image | default: user.avatar_url | default: "/assets/img/user-image.jpg" %}
|
|
1
4
|
<script>
|
|
2
5
|
$(document).ready(function () {
|
|
3
6
|
$('#expansion-btn').click(function () {
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
{%- assign user = site.github.owner %}
|
|
2
|
+
{%- assign name = site.title | default: user.name | default: user.login %}
|
|
3
|
+
{%- assign user_img = site.user_image | default: user.avatar_url | default: "/assets/img/user-image.jpg" %}
|
|
1
4
|
<script>
|
|
2
5
|
$(document).ready(function () {
|
|
3
6
|
$('#expansion-btn').click(function () {
|
data/_includes/masthead.html
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{%- assign user = site.github.owner %}
|
|
2
2
|
{%- assign name = include.title | default: site.title | default: user.name | default: user.login %}
|
|
3
|
-
{%- assign user_img = site.user_image | default: user.avatar_url %}
|
|
3
|
+
{%- assign user_img = site.user_image | default: user.avatar_url | default: "/assets/img/user-image.jpg" %}
|
|
4
4
|
{%- assign user_metadata = site.user_metadata -%}
|
|
5
5
|
|
|
6
6
|
<div class="Masthead">
|
data/_includes/nav-overlay.html
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
{%- assign user = site.github.owner %}
|
|
2
|
+
{%- assign name = site.title | default: user.name | default: user.login %}
|
|
3
|
+
{%- assign user_img = site.user_image | default: user.avatar_url | default: "/assets/img/user-image.jpg" %}
|
|
1
4
|
<div class="Overlay-backdrop--side Overlay-backdrop--placement-left" data-modal-dialog-overlay>
|
|
2
5
|
<modal-dialog class="Overlay Overlay--width-medium Overlay--motion-slideDown height-fit height-full" >
|
|
3
6
|
<div class="Overlay-headerContentWrap d-flex flex-row py-3 px-2">
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{%- assign collection = include.collection | default: site.posts | sort: "date" | reverse %}
|
|
2
|
-
{%-
|
|
3
|
-
{%- assign
|
|
2
|
+
{%- if site.paginate %}
|
|
3
|
+
{%- assign paginate_path = site.paginate_path %}
|
|
4
|
+
{%- assign cleaned_path = paginate_path | split: ':' | first %}
|
|
5
|
+
{%- assign placeholder = cleaned_path | split: '/' | last %}
|
|
6
|
+
{%- assign paginate_index = cleaned_path | replace: placeholder, '' | strip %}
|
|
7
|
+
{%- endif %}
|
|
8
|
+
{%- assign index = include.index | default: paginator.index_path | default: paginate_index %}
|
|
9
|
+
{%- assign post_limit = include.limit | default: page.posts_limit | default: site.posts_limit %}
|
|
4
10
|
|
|
5
11
|
<div class="mt-md-7 mb-9 mb-md-12">
|
|
6
12
|
<div class="container-xl mx-auto p-responsive-blog">
|
|
@@ -8,7 +14,7 @@
|
|
|
8
14
|
{%- include post-timeline-card.html %}
|
|
9
15
|
{%- endfor %}
|
|
10
16
|
</div>
|
|
11
|
-
{%- if collection.size > post_limit %}
|
|
17
|
+
{%- if collection.size > post_limit and index %}
|
|
12
18
|
<div class="container-xl mx-auto p-responsive-blog mt-6 mt-md-8 ">
|
|
13
19
|
<div class="d-flex gutter-spacious">
|
|
14
20
|
<div class="col-12 col-md-7 offset-md-5">
|
data/_layouts/default.html
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
{%- assign style = page.style | default: layout.style | default: site.style %}
|
|
2
|
-
{%- assign user = site.github.owner %}
|
|
3
|
-
{%- assign name = site.title | default: user.name | default: user.login %}
|
|
4
|
-
{%- assign user_img = site.user_image | default: user.avatar_url %}
|
|
5
2
|
{%- assign light_theme = site.light_theme | default: "light" %}
|
|
6
3
|
{%- assign dark_theme = site.dark_theme | default: "dark_dimmed" %}
|
|
7
4
|
<!doctype html>
|
data/_layouts/landing.html
CHANGED
|
@@ -2,9 +2,6 @@
|
|
|
2
2
|
layout: default
|
|
3
3
|
style: none
|
|
4
4
|
---
|
|
5
|
-
{%- assign user = site.github.owner %}
|
|
6
|
-
{%- assign name = site.title | default: user.name | default: user.login %}
|
|
7
|
-
{%- assign user_img = site.user_image | default: user.avatar_url %}
|
|
8
5
|
<div class="Header d-flex p-0 flex-1 height-full">
|
|
9
6
|
<div class="container-lg flex-column position-sticky top-0">
|
|
10
7
|
<div class="d-flex flex-row py-3 flex-justify-end">
|
data/_layouts/post.html
CHANGED
|
@@ -14,17 +14,10 @@ layout: default
|
|
|
14
14
|
</div>
|
|
15
15
|
<div class="offset-lg-1 col-lg-10">
|
|
16
16
|
<div class="position-relative z-1">
|
|
17
|
-
{%- if page.video %}
|
|
18
|
-
<div id="Timeline-video-container" class="image-container">
|
|
19
|
-
<iframe id="Timeline-video" src="{{ page.video }}" frameborder="0" height="inherited"
|
|
20
|
-
width="inherited"></iframe>
|
|
21
|
-
</div>
|
|
22
|
-
{%- else %}
|
|
23
17
|
<div class="image-container">
|
|
24
18
|
<img src="{{ image | relative_url }}" class="cover-image rounded-2"
|
|
25
19
|
alt="{{ page.title }}" />
|
|
26
20
|
</div>
|
|
27
|
-
{%- endif %}
|
|
28
21
|
</div>
|
|
29
22
|
</div>
|
|
30
23
|
</div>
|
data/_layouts/profile.html
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
---
|
|
2
2
|
layout: page
|
|
3
3
|
---
|
|
4
|
+
{%- assign user = site.github.owner %}
|
|
5
|
+
{%- assign name = site.title | default: user.name | default: user.login %}
|
|
6
|
+
{%- assign user_img = site.user_image | default: user.avatar_url | default: "/assets/img/user-image.jpg" %}
|
|
4
7
|
{%- assign style = page.style | default: layout.style | default: site.style %}
|
|
5
8
|
<div class="Profile d-lg-flex flex-justify-center gutter">
|
|
6
9
|
{%- if style != "sidebar" and style != "stacked" %}
|
|
@@ -12,20 +15,14 @@ layout: page
|
|
|
12
15
|
|
|
13
16
|
<div class="col-lg-8 border-top border-lg-top-0 color-bg-default">
|
|
14
17
|
<div class="py-6">
|
|
15
|
-
{%- assign posts_total = site.posts | size %}
|
|
16
|
-
{%- assign posts_limit = site.posts_limit | default: posts_total %}
|
|
17
|
-
|
|
18
|
-
{%- unless content == "" %}
|
|
19
18
|
{{ content }}
|
|
20
|
-
{%- endunless %}
|
|
21
|
-
|
|
22
19
|
{%- if site.links %}
|
|
23
20
|
{%- include links.html %}
|
|
24
21
|
{%- endif %}
|
|
25
22
|
|
|
26
23
|
{%- unless posts_total == 0 %}
|
|
27
24
|
<h2 class="mb-3">Blog</h2>
|
|
28
|
-
{%- include post-timeline.html
|
|
25
|
+
{%- include post-timeline.html%}
|
|
29
26
|
{%- endunless %}
|
|
30
27
|
|
|
31
28
|
{%- if site.repositories %}
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-profile
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.10.
|
|
4
|
+
version: 1.10.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Allison Thackston
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-01-
|
|
11
|
+
date: 2025-01-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -48,16 +48,16 @@ dependencies:
|
|
|
48
48
|
name: jekyll-github-metadata
|
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
|
50
50
|
requirements:
|
|
51
|
-
- -
|
|
51
|
+
- - '='
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
|
-
version:
|
|
53
|
+
version: 2.13.0
|
|
54
54
|
type: :runtime
|
|
55
55
|
prerelease: false
|
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
57
|
requirements:
|
|
58
|
-
- -
|
|
58
|
+
- - '='
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
|
-
version:
|
|
60
|
+
version: 2.13.0
|
|
61
61
|
- !ruby/object:Gem::Dependency
|
|
62
62
|
name: jekyll-octicons
|
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -192,6 +192,7 @@ files:
|
|
|
192
192
|
- assets/img/category-icon.png
|
|
193
193
|
- assets/img/default.png
|
|
194
194
|
- assets/img/favicon.ico
|
|
195
|
+
- assets/img/social-preview.png
|
|
195
196
|
- assets/img/user-image.jpg
|
|
196
197
|
- assets/js/anchor-links.js
|
|
197
198
|
- assets/js/theme-toggle.js
|
|
@@ -215,7 +216,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
215
216
|
- !ruby/object:Gem::Version
|
|
216
217
|
version: '0'
|
|
217
218
|
requirements: []
|
|
218
|
-
rubygems_version: 3.5.
|
|
219
|
+
rubygems_version: 3.5.22
|
|
219
220
|
signing_key:
|
|
220
221
|
specification_version: 4
|
|
221
222
|
summary: Jekyll theme built off of Github's personal website template and primer.
|