forked from cotes2020/jekyll-theme-chirpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: edit target and fix some error
- master to main fix: error - DEPRECATION WARNING: Sass's behavior for declarations that appear after nested rules will be changing to match the behavior specified by CSS in an upcoming version. To keep the existing behavior, move the declaration above the nested rule. To opt into the new behavior, wrap the declaration in `& {}`. - twbs/bootstrap#40621 (comment) fix: does not have an alt attribute feat: edit image route feat: revert to master branch in ci feat: edit git ignore
- Loading branch information
Showing
23 changed files
with
22,259 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: "CI" | |
on: | ||
push: | ||
branches: | ||
- "master" | ||
- "main" | ||
- "hotfix/**" | ||
paths-ignore: | ||
- ".github/**" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,4 +25,4 @@ package-lock.json | |
|
||
# Misc | ||
_sass/dist | ||
assets/js/dist | ||
# assets/js/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
--- | ||
layout: compress | ||
--- | ||
|
||
{% assign favicon_path = "/assets/img/favicons" | relative_url %} | ||
|
||
{ | ||
"name": "", | ||
"short_name": "", | ||
"name": "{{ site.title }}", | ||
"short_name": "{{ site.title }}", | ||
"description": "{{ site.description }}", | ||
"icons": [ | ||
{ | ||
"src": "/android-chrome-192x192.png", | ||
"src": "{{ favicon_path }}/android-chrome-192x192.png", | ||
"sizes": "192x192", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/android-chrome-512x512.png", | ||
"src": "{{ favicon_path }}/android-chrome-512x512.png", | ||
"sizes": "512x512", | ||
"type": "image/png" | ||
} | ||
], | ||
"theme_color": "#ffffff", | ||
}], | ||
"start_url": "{{ '/index.html' | relative_url }}", | ||
"theme_color": "#2a1e6b", | ||
"background_color": "#ffffff", | ||
"display": "standalone" | ||
} | ||
"display": "fullscreen" | ||
} |
Oops, something went wrong.