forked from kitian616/jekyll-TeXt-theme
-
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: use RealFaviconGenerator for generating favicon
- Loading branch information
Showing
47 changed files
with
190 additions
and
157 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<browserconfig> | ||
<msapplication> | ||
<tile> | ||
<square150x150logo src="assets/mstile-150x150.png"/> | ||
<TileColor>#ffc40d</TileColor> | ||
</tile> | ||
</msapplication> | ||
</browserconfig> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "TeXt Theme", | ||
"short_name": "TeXt Theme", | ||
"icons": [ | ||
{ | ||
"src": "android-chrome-192x192.png", | ||
"sizes": "192x192", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "android-chrome-512x512.png", | ||
"sizes": "512x512", | ||
"type": "image/png" | ||
} | ||
], | ||
"theme_color": "#ffffff", | ||
"background_color": "#ffffff", | ||
"display": "standalone" | ||
} |
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
Oops, something went wrong.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
layout: article | ||
title: Structure | ||
permalink: /docs/en/structure | ||
key: docs-structure | ||
sidebar: | ||
nav: docs-en | ||
aside: | ||
toc: true | ||
--- | ||
|
||
```bash | ||
├── _data | ||
│ ├── locale.yml | ||
│ ├── navigation.yml | ||
│ └── variables.yml | ||
├── _includes | ||
│ ├── analytics-providers | ||
│ ├── aside | ||
│ ├── comment-providers | ||
│ ├── markdown-enhancements | ||
│ ├── pageview-providers | ||
│ ├── scripts | ||
│ ├── sidebar | ||
│ ├── snippets | ||
│ ├── svg | ||
│ │ ├── icon | ||
│ │ │ ├── social | ||
│ │ │ │ ├── facebook.svg | ||
│ │ │ │ └── ... | ||
│ │ └── logo.svg | ||
│ └── ... | ||
├── _layouts | ||
│ ├── 404.html | ||
│ ├── archive.html | ||
│ ├── article.html | ||
│ ├── base.html | ||
│ ├── home.html | ||
│ ├── none.html | ||
│ └── page.html | ||
├── _sass | ||
├── assets | ||
│ ├── css | ||
│ │ └── blog.scss | ||
│ └── images | ||
├── tools | ||
├── 404.html | ||
├── Gemfile | ||
├── _config.yml | ||
├── about.md | ||
├── archive.html | ||
├── favicon.ico | ||
├── gulpfile.js | ||
├── index.html | ||
├── jekyll-text-theme.gemspec | ||
└── package.json | ||
``` |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
layout: article | ||
title: Favicon | ||
permalink: /docs/en/favicon | ||
key: docs-layouts | ||
sidebar: | ||
nav: docs-en | ||
aside: | ||
toc: true | ||
--- | ||
|
||
TeXt recommend [RealFaviconGenerator](https://realfavicongenerator.net/) for generating favicon. | ||
|
||
Open [RealFaviconGenerator](https://realfavicongenerator.net/) and click "Select your Favicon picture". | ||
|
||
![Select your Favicon picture](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/realfavicongenerator-select-favicon-picture.jpg) | ||
|
||
After settings you need tell the generator where you would place favicon files. TeXt default put them to `/assets`. | ||
|
||
![Select your Favicon path](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/realfavicongenerator-path.jpg) | ||
|
||
If all are done, just click "Generate your Favicons and HTML code" to the last step. | ||
|
||
![Result](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/realfavicongenerator-result.jpg) | ||
|
||
Download favicon package and unzip it to the path you just set, and replace the HTML code in _includes/head.html between `<!-- begin favicon -->` and `<!-- end favicon -->`. |
Binary file not shown.
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
Oops, something went wrong.