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: update style, edit_on_github config
- Loading branch information
Showing
92 changed files
with
477 additions
and
440 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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
--- | ||
layout: 404 | ||
title: 404 | ||
show_title: false | ||
--- |
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,8 +1,6 @@ | ||
source 'https://rubygems.org/' | ||
source "https://rubygems.org" | ||
|
||
gemspec | ||
gem "github-pages", group: :jekyll_plugins | ||
|
||
# For dev under windows, I know that yikes.... | ||
|
||
# gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw] | ||
# gem 'wdm', '>= 0.1.0' if Gem.win_platform? | ||
gem "tzinfo-data" | ||
gem "wdm", "~> 0.1.0" if Gem.win_platform? |
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
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,3 +1,7 @@ | ||
{%- if jekyll.environment != "development" -%} | ||
{%- include analytics-providers/google.html -%} | ||
{%- if jekyll.environment != 'development' -%} | ||
{%- if site.analytics.provider == 'google' -%} | ||
{%- include analytics-providers/google.html -%} | ||
{%- elsif site.analytics.provider == 'custom' -%} | ||
{%- include analytics-providers/custom.html -%} | ||
{%- endif -%} | ||
{%- endif -%} |
File renamed without changes.
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,14 @@ | ||
<div class="license"> | ||
{%- assign locale = site.data.locale -%} | ||
{%- assign __locale = locale.LICENSE_ANNOUNCE -%} | ||
{%- include snippets/locale-to-string.html -%} | ||
{%- assign _license_announce = __return -%} | ||
{%- assign __path = '/assets/images/license-cc4.png' -%} | ||
{%- include snippets/prepend-baseurl.html -%} | ||
{%- assign _license_img_src = __return -%} | ||
<p>{{ _license_announce | replace: "[LICENSE]", '<a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/">CC-BY-NC-4.0</a>' }} | ||
<a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/"> | ||
<img alt="Creative Commons License" src="{{ _license_img_src }}" /> | ||
</a> | ||
</p> | ||
</div> |
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.
Empty file.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{%- if jekyll.environment != 'development' -%} | ||
{%- if site.comments.provider == 'disqus' -%} | ||
{%- include comments-providers/disqus.html -%} | ||
{%- elsif site.comments.provider == 'gitalk' -%} | ||
{%- include comments-providers/gitalk.html -%} | ||
{%- elsif site.comments.provider == 'custom' -%} | ||
{%- include comments-providers/custom.html -%} | ||
{%- endif -%} | ||
|
||
{%- endif -%} |
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
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,8 +1,18 @@ | ||
{%- assign __locale = page.titles -%} | ||
{%- include snippets/locale-to-string.html -%} | ||
{%- assign __localeTitle = __return -%} | ||
{%- if page.title -%} | ||
{%- assign __return = page.title -%} | ||
{%- else -%} | ||
{%- assign __source = page.title -%} | ||
{%- assign __target = layout.title -%} | ||
{%- include snippets/assign.html -%} | ||
{%- assign _title = __return -%} | ||
|
||
{%- assign __source = page.titles -%} | ||
{%- assign __target = layout.titles -%} | ||
{%- include snippets/assign.html -%} | ||
{%- assign _titles = __return -%} | ||
|
||
{%- if _title -%} | ||
{%- assign __return = _title -%} | ||
{%- elsif _titles -%} | ||
{%- assign __locale = _titles -%} | ||
{%- include snippets/locale-to-string.html -%} | ||
{%- assign __localeTitle = __return -%} | ||
{%- assign __return = __localeTitle -%} | ||
{%- endif -%} |
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.