Skip to content

Commit 38bc7cc

Browse files
Merge branch 'master' into master
2 parents 2af505c + 401e2af commit 38bc7cc

File tree

11 files changed

+14
-13
lines changed

11 files changed

+14
-13
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ exclude:
216216
- README.md
217217
- LICENSE
218218
- purgecss.js
219-
- rollup.config.js
219+
- "*.config.js"
220220
- "package*.json"
221221

222222
jekyll-archives:

_data/share.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ platforms:
1818
#
1919
# - type: Linkedin
2020
# icon: "fab fa-linkedin"
21-
# link: "https://www.linkedin.com/sharing/share-offsite/?url=URL"
21+
# link: "https://www.linkedin.com/feed/?shareActive=true&shareUrl=URL"
2222
#
2323
# - type: Weibo
2424
# icon: "fab fa-weibo"

_includes/js-selector.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666

6767
{% if page.math %}
6868
<!-- MathJax -->
69-
<script async src="{{ '/assets/js/data/mathjax.js' | relative_url }}"></script>
69+
<script src="{{ '/assets/js/data/mathjax.js' | relative_url }}"></script>
7070
<script async src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=es6"></script>
7171
<script id="MathJax-script" async src="{{ site.data.origin[type].mathjax.js | relative_url }}"></script>
7272
{% endif %}
File renamed without changes.

_sass/abstracts/_placeholders.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@
3131
}
3232

3333
%tag-hover {
34+
@extend %link-color;
35+
3436
background: var(--tag-hover);
37+
border-color: var(--tag-hover);
3538
transition: background 0.35s ease-in-out;
3639
}
3740

_sass/pages/_post.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,7 @@ header {
143143

144144
.post-tag {
145145
&:hover {
146-
@extend %link-hover;
147146
@extend %tag-hover;
148-
@extend %no-bottom-border;
149147
}
150148
}
151149
}

assets/404.html

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,8 @@
22
layout: page
33
title: "404: Page not found"
44
permalink: /404.html
5-
6-
redirect_from:
7-
- /norobots/
8-
- /assets/
9-
- /posts/
105
---
116

127
{% include lang.html %}
138

14-
<p class="lead">{{ site.data.locales[lang].not_found.statement }}</p>
9+
<p class="lead">{{ site.data.locales[lang].not_found.statement }}</p>

assets/css/jekyll-theme-chirpy.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
---
33

4+
/* prettier-ignore */
45
@use 'main
56
{%- if jekyll.environment == 'production' -%}
67
.bundle

eslint.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export default [
2+
{
3+
files: ['_javascript/**/*.js']
4+
}
5+
];

jekyll-theme-chirpy.gemspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ Gem::Specification.new do |spec|
2727

2828
spec.add_runtime_dependency "jekyll", "~> 4.3"
2929
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
30-
spec.add_runtime_dependency "jekyll-redirect-from", "~> 0.16"
3130
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.8"
3231
spec.add_runtime_dependency "jekyll-archives", "~> 2.2"
3332
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.4"

0 commit comments

Comments
 (0)