diff --git a/.commitlintrc.js b/.commitlintrc.js deleted file mode 100644 index 2f924eae9e0..00000000000 --- a/.commitlintrc.js +++ /dev/null @@ -1,37 +0,0 @@ -module.exports = { - parserPreset: 'conventional-changelog-conventionalcommits', - rules: { - 'body-leading-blank': [1, 'always'], - 'footer-leading-blank': [1, 'always'], - 'header-max-length': [2, 'always', 72], - 'scope-case': [2, 'always', 'lower-case'], - 'subject-case': [ - 2, - 'never', - ['sentence-case', 'start-case', 'pascal-case', 'upper-case'] - ], - 'subject-empty': [2, 'never'], - 'subject-full-stop': [2, 'never', '.'], - 'type-case': [2, 'always', 'lower-case'], - 'type-empty': [2, 'never'], - 'type-enum': [ - 2, - 'always', - [ - 'build', - 'chore', - 'ci', - 'docs', - 'feat', - 'fix', - 'improvement', - 'perf', - 'refactor', - 'release', - 'revert', - 'style', - 'test' - ] - ] - } -}; diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index a4f424788c3..00000000000 --- a/.editorconfig +++ /dev/null @@ -1,11 +0,0 @@ -# http://editorconfig.org -root = true - -[*] -charset = utf-8 -end_of_line = lf -indent_size = 2 -indent_style = space -insert_final_newline = true -max_line_length = 80 -trim_trailing_whitespace = true diff --git a/.eslintrc b/.eslintrc deleted file mode 100644 index 975a2e82ba6..00000000000 --- a/.eslintrc +++ /dev/null @@ -1,20 +0,0 @@ -{ - "env": { - "browser": true, - "jquery": true, - "node": true - }, - "rules": { - "no-console": "error", - "semi": ["error", "always"], - "quotes": ["error", "single"], - "comma-dangle": ["error", "never"], - "block-scoped-var": "error", - "default-case": "error", - "no-extra-bind": "error", - "camelcase": "error", - "indent": ["error", 2, { "SwitchCase": 1 }], - "eol-last": ["error", "always"] - }, - "extends": ["eslint:recommended"] -} diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 0c4a19dc744..00000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: 'Bug:' -labels: '' -assignees: '' - ---- - - - -**Description** - -[Description of the bug] - -**Steps to Reproduce** - -1. [First Step] -2. [Second Step] -3. [and so on...] - -**Expected behavior** - -[What you expected to happen] - -**Screenshots (If Necessary)** - -[Screenshots to help explain your problem.] - -**Environment (If Necessary)** - -- OS: [e.g. Github Pages, Windows 10, macOS 10.13, Linux(CentOS 7.5), iOS 11, Android 8(Pixel 2)] -- Ruby: [e.g. Github Pages, 2.4.0p0] -- Jekyll: [e.g. Github Pages, 3.7.3] -- Browser: [e.g. Chrome, Safari, Edge, Firefox] diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md deleted file mode 100644 index cc5d513b4f7..00000000000 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: 'Feature request: ' -labels: '' -assignees: '' - ---- - - - -## Description - -[Description of the feature] diff --git a/.stylelintignore b/.stylelintignore deleted file mode 100644 index ea41ac3c399..00000000000 --- a/.stylelintignore +++ /dev/null @@ -1,5 +0,0 @@ -/node_modules/ -/_gh_pages/ -**/dist/ -**/*.min.css -**/vendor/ diff --git a/.stylelintrc b/.stylelintrc deleted file mode 100644 index 28df0f66a72..00000000000 --- a/.stylelintrc +++ /dev/null @@ -1,276 +0,0 @@ - -{ - "extends": ["stylelint-config-standard", "stylelint-config-recommended-scss"], - "plugins": [ - "stylelint-order" - ], - "rules": { - "at-rule-empty-line-before": null, - "at-rule-name-space-after": "always", - "at-rule-no-vendor-prefix": true, - "at-rule-semicolon-space-before": "never", - "block-closing-brace-empty-line-before": null, - "block-closing-brace-newline-after": null, - "block-opening-brace-space-before": null, - "color-named": "never", - "color-hex-case": "lower", - "color-hex-length": "short", - "declaration-block-semicolon-newline-after": "always-multi-line", - "declaration-block-semicolon-newline-before": "never-multi-line", - "declaration-block-semicolon-space-after": "always-single-line", - "declaration-empty-line-before": null, - "declaration-no-important": true, - "font-family-name-quotes": "always-where-recommended", - "font-weight-notation": null, - "function-url-no-scheme-relative": true, - "function-url-quotes": "always", - "length-zero-no-unit": true, - "max-empty-lines": 2, - "max-line-length": null, - "media-feature-name-no-vendor-prefix": true, - "media-feature-parentheses-space-inside": "never", - "media-feature-range-operator-space-after": "always", - "media-feature-range-operator-space-before": "never", - "no-descending-specificity": null, - "no-duplicate-selectors": true, - "number-leading-zero": "never", - "media-feature-name-no-unknown": [true, { - "ignoreMediaFeatureNames": ["prefers-reduced-motion"] - }], - "order/properties-order": [ - "position", - "top", - "right", - "bottom", - "left", - "z-index", - "box-sizing", - "display", - "flex", - "flex-align", - "flex-basis", - "flex-direction", - "flex-wrap", - "flex-flow", - "flex-shrink", - "flex-grow", - "flex-order", - "flex-pack", - "align-content", - "align-items", - "align-self", - "justify-content", - "order", - "float", - "width", - "min-width", - "max-width", - "height", - "min-height", - "max-height", - "padding", - "padding-top", - "padding-right", - "padding-bottom", - "padding-left", - "margin", - "margin-top", - "margin-right", - "margin-bottom", - "margin-left", - "overflow", - "overflow-x", - "overflow-y", - "-webkit-overflow-scrolling", - "-ms-overflow-x", - "-ms-overflow-y", - "-ms-overflow-style", - "columns", - "column-count", - "column-fill", - "column-gap", - "column-rule", - "column-rule-width", - "column-rule-style", - "column-rule-color", - "column-span", - "column-width", - "orphans", - "widows", - "clip", - "clear", - "font", - "font-family", - "font-size", - "font-style", - "font-weight", - "font-variant", - "font-size-adjust", - "font-stretch", - "font-effect", - "font-emphasize", - "font-emphasize-position", - "font-emphasize-style", - "font-smooth", - "src", - "hyphens", - "line-height", - "color", - "text-align", - "text-align-last", - "text-emphasis", - "text-emphasis-color", - "text-emphasis-style", - "text-emphasis-position", - "text-decoration", - "text-indent", - "text-justify", - "text-outline", - "-ms-text-overflow", - "text-overflow", - "text-overflow-ellipsis", - "text-overflow-mode", - "text-shadow", - "text-transform", - "text-wrap", - "-webkit-text-size-adjust", - "-ms-text-size-adjust", - "letter-spacing", - "-ms-word-break", - "word-break", - "word-spacing", - "-ms-word-wrap", - "word-wrap", - "overflow-wrap", - "tab-size", - "white-space", - "vertical-align", - "direction", - "unicode-bidi", - "list-style", - "list-style-position", - "list-style-type", - "list-style-image", - "pointer-events", - "-ms-touch-action", - "touch-action", - "cursor", - "visibility", - "zoom", - "table-layout", - "empty-cells", - "caption-side", - "border-spacing", - "border-collapse", - "content", - "quotes", - "counter-reset", - "counter-increment", - "resize", - "user-select", - "nav-index", - "nav-up", - "nav-right", - "nav-down", - "nav-left", - "background", - "background-color", - "background-image", - "filter", - "background-repeat", - "background-attachment", - "background-position", - "background-position-x", - "background-position-y", - "background-clip", - "background-origin", - "background-size", - "border", - "border-color", - "border-style", - "border-width", - "border-top", - "border-top-color", - "border-top-style", - "border-top-width", - "border-right", - "border-right-color", - "border-right-style", - "border-right-width", - "border-bottom", - "border-bottom-color", - "border-bottom-style", - "border-bottom-width", - "border-left", - "border-left-color", - "border-left-style", - "border-left-width", - "border-radius", - "border-top-left-radius", - "border-top-right-radius", - "border-bottom-right-radius", - "border-bottom-left-radius", - "border-image", - "border-image-source", - "border-image-slice", - "border-image-width", - "border-image-outset", - "border-image-repeat", - "outline", - "outline-width", - "outline-style", - "outline-color", - "outline-offset", - "box-shadow", - "opacity", - "-ms-interpolation-mode", - "page-break-after", - "page-break-before", - "page-break-inside", - "transition", - "transition-delay", - "transition-timing-function", - "transition-duration", - "transition-property", - "transform", - "transform-origin", - "perspective", - "appearance", - "animation", - "animation-name", - "animation-duration", - "animation-play-state", - "animation-timing-function", - "animation-delay", - "animation-iteration-count", - "animation-direction", - "animation-fill-mode", - "fill", - "stroke" - ], - "property-no-vendor-prefix": true, - "rule-empty-line-before": null, - "selector-attribute-quotes": "always", - "selector-list-comma-newline-after": "always-multi-line", - "selector-list-comma-newline-before": "never-multi-line", - "selector-list-comma-space-after": "always-single-line", - "selector-list-comma-space-before": "never-single-line", - "selector-max-attribute": 2, - "selector-max-class": 4, - "selector-max-combinators": 4, - "selector-max-compound-selectors": 4, - "selector-max-empty-lines": 1, - "selector-max-id": 0, - "selector-max-specificity": null, - "selector-max-type": 2, - "selector-max-universal": 1, - "selector-no-qualifying-type": null, - "selector-no-vendor-prefix": true, - "string-quotes": "double", - "value-keyword-case": "lower", - "value-list-comma-newline-after": "never-multi-line", - "value-list-comma-newline-before": "never-multi-line", - "value-list-comma-space-after": "always", - "value-no-vendor-prefix": true - } -} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 09f7f28b426..00000000000 --- a/.travis.yml +++ /dev/null @@ -1,17 +0,0 @@ -language: ruby -rvm: - - 2.4.1 -branches: - only: - - master -before_script: cp -rfv docs/_includes . -script: JEKYLL_ENV=production bundle exec jekyll build --config ./docs/_config.yml -deploy: - provider: pages - skip_cleanup: true - github_token: $GITHUB_TOKEN - local_dir: _site - keep-history: true - on: - branch: master - target_branch: gh-pages diff --git a/404.html b/404.html deleted file mode 100644 index c4e870fdc7d..00000000000 --- a/404.html +++ /dev/null @@ -1,3 +0,0 @@ ---- -layout: 404 ---- diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index c5d1032f6a4..00000000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,235 +0,0 @@ -# Change Log - -## 2.2.6 (2019-02-02) - -### Enhancements - -- Add [commit linter](https://commitlint.js.org/) -- Add [EditorConfig](https://editorconfig.org/) -- Update npm packages - -### Bug Fixes - -- Fix some spelling errors in documents -- Fix some errors in configs - -## 2.2.5 (2019-12-08) - -### Enhancements - -- Update to Jekyll 4.0 -- Add custom snippets for main/top, main/bottom, article/top, article/bottom, etc -- Add Medium, Zhihu social icons -- Add Google Custom Search support -- Add Korean locale (@ssosso) -- Add French locale (@ctrl-q) -- Add Docker support - -## 2.2.4 (2018-12-10) - -### Enhancements - -- Swiper component support mouse move -- Add lightbox (modal image gallery) -- Add Valine comment system (@Lloyar) - -### Bug Fixes - -- Fix some spelling errors in documents (@Krinkle) - -## 2.2.3 (2018-11-11) - -### Enhancements - -- Add Swiper component -- Add AddThis sharing service (@liao961120) -- Add extensions for demos (CodePen) -- Add special stylesheets for print - -## 2.2.2 (2018-10-21) - -### Enhancements - -- Add extensions for audios (SoundCloud, Netease Cloud Music), videos (YouTube, TED, bilibili) and slide(SlideShare) -- Add AddToAny sharing service - -## 2.2.1 (2018-10-02) - -### Enhancements - -- Update screenshots -- Landing layout `data.sections` item's `image` add `full_width` setting -- Remove `header.type` and add `header.background` setting -- Page layout sidebar use document scroll when viewport width < 1024px, this enhance the user experience on a phone or a pad -- Telegram social icon (@WangQiru) -- Search panel use dark background - -## 2.2.0 (2018-09-16) - -### Enhancements - -- `article_header` setting for page layout -- Articles layout -- New grid system -- Image, card, item and hero components -- Tag additional style -- chart.js update to 2.7.2, mathjax update to 2.7.4 and mermaid update to 8.0.0-rc.8 - -### Bug Fixes - -- Replace Lenna test image - -## 2.1.0 (2018-08-26) - -### Enhancements - -- Search panel (Click search icon in the header or press `s` or `/` key to search) -- Npm social icon (@WangQiru) - -### Bug Fixes - -- Google analytics may not work, use gtag.js - -## 2.0.2 (2018-07-29) - -### Enhancements - -- Highlight theme -- Articles whit `sidebar.toc` support section navigator (previous and next navigator) -- Aside Toc show immediately after page get ready (no more delay) - -### Bug Fixes - -- Aside Toc may display error when scroll to bottom - -## 2.0.1 (2018-07-07) - -> “All elements that respond to press should have a visual feedback when touched.” -> -> —TouchableWithoutFeedback in *React Native Docs* - -### Enhancements - -- Some interaction details optimize: button and link add feedback when clicked, cancel button of input in archive layout, button focus style, etc - -### Bug Fixes - -- `mathjax` and `mermaid` setting may not work - -## 2.0.0 (2018-07-01) - -Breaking changes, please check [Update from 1.x to 2.x](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/update-from-1-to-2) for details - -### Enhancements - -- Authors -- License -- New layouts (page, article, landing, etc) - -## 1.5.0 (2018-03-18) - -### Enhancements - -- `text_color_theme` setting -- Long pagination -- Additional styles (Alert, Image) -- Mathjax `autoNumber` setting (@liao961120) -- Article heading anchor -- Previous and next post -- Search - -## 1.4.3 (2018-01-13) - -### Enhancements - -- New TOC style -- Gitalk support (@WangQiru) -- Mermaid support -- `site.paths` and `site.nav_lists` configs support absolute URL - -## 1.4.2 (2017-12-10) - -### Enhancements - -- Use new liquid syntax `{%-` `-%}` to avoid unnecessary output whitespace -- Add `paths.base` setting - -## 1.4.1 (2017-12-05) - -### Enhancements - -- New color themes(Chocolate, Orange) - -### Bug Fixes - -- Issues 9: the _posts file can't recorded by git - -## 1.4.0 (2017-11-19) - -### Enhancements - -- Internationalization - -### Bug Fixes - -- Table overflow-x smooth on iOS - -## 1.3.0 (2017-11-11) - -### Enhancements - -- Article tag supports special characters -- Excerpts type (HTML | TEXT) -- Titles on the phone become smaller -- Change styles for table, code and blockquote - -## 1.2.2 (2017-11-04) - -### Enhancements - -- MathJax Support -- Add “Read more” link at the end of article excerpt -- 404 page - -### Bug Fixes - -- Fix Email link URL error -- Fix Site Title link URL error -- Fix table responsive style error - -## 1.2.1 (2017-10-27) - -### Enhancements - -- Optimize Article TOC - -### Bug Fixes - -- Pageview display error when the post key include `-` (@yuxianda) -- Email url error - -## 1.2.0 (2017-10-22) - -### Enhancements - -- Article excerpt no more than 200 words -- If `leancloud` is not set, 0 view won't display - -### Bug Fixes - -- Fix article TOC’s display error at proper situation -- Fix footer social buttons not in the center bug - -## 1.1.0 (2017-10-19) - -### Enhancements - -- Color variables -- More color themes (dark, forest, ocean) - -## 1.0.0 (2017-10-17) - -### Enhancements - -- Better article directories -- Dark color theme diff --git a/CydiaIcon.png b/CydiaIcon.png deleted file mode 100644 index 6d3f649ad70..00000000000 Binary files a/CydiaIcon.png and /dev/null differ diff --git a/Dockerfile.dev b/Dockerfile.dev deleted file mode 100644 index 33682a99aa7..00000000000 --- a/Dockerfile.dev +++ /dev/null @@ -1,18 +0,0 @@ -FROM ruby:2.7 - -# Set default locale for the environment -ENV LC_ALL C.UTF-8 -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US.UTF-8 - -# throw errors if Gemfile has been modified since Gemfile.lock -RUN bundle config --global frozen 1 - -WORKDIR /usr/src/app - -COPY Gemfile Gemfile.lock jekyll-text-theme.gemspec ./ -RUN bundle install - -EXPOSE 4000 - -CMD ["bundle", "exec", "jekyll", "help"] diff --git a/Gemfile b/Gemfile deleted file mode 100644 index 63d309ac358..00000000000 --- a/Gemfile +++ /dev/null @@ -1,6 +0,0 @@ -source "https://rubygems.org" - -# gem "github-pages", group: :jekyll_plugins -gemspec - -# gem "jekyll-text-theme" diff --git a/HOW_TO_RELEASE.md b/HOW_TO_RELEASE.md deleted file mode 100644 index a10499b073b..00000000000 --- a/HOW_TO_RELEASE.md +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO RELEASE - -## Preparation - -- diff configs (*_config.yml*, *docs/_config.yml*, *docs/_config.dev.yml*, *test/_config.yml*) -- diff data dirs (*_data*, *docs/_data*, *test/_data*) -- *assets/css/main.scss* use configurable skin -- *screenshot.jpg* is the same as *screenshots/TeXt-home.jpg* -- update *CHANGELOG.md* -- update version (*jekyll-text-theme.gemspec*, *package.json*, *_includes/scripts/variables.html*) - -## Publishing - -- run `npm run gem-build` to build gem -- run `npm run gem-push` to publish gem to rubygems.org -- run `git add . && git commit -m "release: vx.x.x"` to make a release commit -- run `git tag vx.x.x` to add a tag -- run `git push && git push origin vx.x.x` to push -- edit release on github.com diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 4799d4a3ea7..00000000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2017 Tian Qi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Packages b/Packages deleted file mode 100644 index a56463e0ae8..00000000000 --- a/Packages +++ /dev/null @@ -1,2079 +0,0 @@ -Package: com.julioverne.adblock -Architecture: iphoneos-arm -Version: 0.2~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.adblock_0.2~beta1_iphoneos-arm.deb -Size: 10002 -MD5sum: 101ab904d484419893048fd6f98b5ccc -SHA1: f096100ee2cea682486d484f41def64e60950156 -SHA256: 2573086d20612f845b245b999088a4c1d00adea8c55ec87e628473a0b936eca9 -SHA512: ac12350c471e261e8406a4eb267e5fb3451d6004c1f7f9c3357a055f0fa1455797f4284cb94cf043b7c51853b935821cc211a012c6da87e08caf43273f823502 -Homepage: https://twitter.com/ijulioverne -Description: ADs Blocker for Apps.. Note: may not load page or app crash. -Name: ADs Blocker -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.adblock - -Package: com.julioverne.albumhider -Architecture: iphoneos-arm -Version: 0.0~beta3 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.albumhider_0.0~beta3_iphoneos-arm.deb -Size: 37134 -MD5sum: 50711b9320b7c41f6a30d912e4338c35 -SHA1: ebdf85f49413a138beb5e1df9e990b55bc48b92c -SHA256: fe4ccf8376a16480fe44d94b285a116e86f086ca519bb3118e00bc021f1a04f0 -SHA512: 5b01a47a7f889b004e3bfd647c94e64237626216ec560d722a99633f153f84c808c02624a10cfe806d7768593883ca3ba4f757d912eb882ee48bbe850970b75f -Description: Hide Album's On Photo App -Name: AlbumHider -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.albumhider - -Package: com.julioverne.albumpref -Architecture: iphoneos-arm -Version: 0.0~beta2a -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.albumpref_0.0~beta2a_iphoneos-arm.deb -Size: 95134 -MD5sum: 228488037579ce3097f5692341dafc12 -SHA1: 8ce91aa64557d2f860f7c860a0564d17057554f2 -SHA256: 1ec543022a17c1276334f81e2f70d4466b42339032d45e267d276b6adca0f379 -SHA512: a23a9edc797bacf1a126b19f2136972b63f385f4b30e466515dc0ac5487b1b27447a3f6c3f5569fbd2965f29623525e2fa5703304236f25e321f870fa5b4a9ff -Homepage: https://twitter.com/ijulioverne -Description: Choose Preferred Album in Messages -Name: AlbumPref -Author: julioverne -Icon: file:///Library/PreferenceBundles/AlbumPrefSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.albumpref - -Package: com.julioverne.alt5tore -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.alt5tore_0.0~beta1_iphoneos-arm.deb -Size: 37172 -MD5sum: fe6b41b01ec392b415be14dee1eab208 -SHA1: 90585eb8db4efbfca632cb3baa78e6a019ec142a -SHA256: 7e61d9fa27b86d5a771232df228cfcff9c9410de5e61bd61012393add1f52f7b -SHA512: e109ded44c35ba2c16cf06255528b3e488c1fee219a39a5d34f451a36ce208801911cd6377be63a151c2184bff975d3ec3f1382d4ad93d66384b76ce3b67e5f4 -Homepage: https://twitter.com/ijulioverne -Description: Extra Features For AltStore -Name: Alt5tore -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.alt5tore - -Package: com.julioverne.appellancy11 -Architecture: iphoneos-arm -Version: 1.1-20b -Priority: optional -Section: Tweaks -Maintainer: Julio -Depends: firmware (>= 6.0), mobilesubstrate (>= 0.9.5000), preferenceloader (>= 2.2.2) -Conflicts: com.myrepospace.mlnlover11.appellancy, com.efrederickson.appellancy, org.thebigboss.appellancy -Replaces: com.myrepospace.mlnlover11.appellancy, com.efrederickson.appellancy -Filename: ./debfiles/com.julioverne.appellancy11_1.1-20b_iphoneos-arm.deb -Size: 3709596 -MD5sum: 2b072e52293df37e2369c1223d0e6e64 -SHA1: eb0ad7375181814825a94e7d351359b9ebf069b9 -SHA256: 4f7e7829ae3a8dd6824df0a6164caef4c8f31e43b61cb57d43f20be078c4d2fb -SHA512: e59fbf99e85239c7885e212fb3c57e8c4bfbded71959ff1eaaa79074baeed1939049840a2eacfe11939873841019031ed0b8edfdfffb010922fe792cb37063c9 -Description: Control your phone with your face! -Name: Appellancy (iOS 11) -Author: Elijah Frederickson, julioverne -dev: elijahfrederickson -Icon: file:///Library/PreferenceBundles/AppellancySettings.bundle/AppellancySettings@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.appellancy11 - -Package: com.julioverne.appssiripin -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader, applist -Filename: ./debfiles/com.julioverne.appssiripin_0.0~beta1_iphoneos-arm.deb -Size: 41194 -MD5sum: 50a99f664fb5ecf81e52377f63db9090 -SHA1: 930c0a28b16a27ec23f673da3f46188f2cb969fc -SHA256: b4d7dddd641692cf2a34f5e166e63fdaa57789be437c84e7141dc2ffec9d8202 -SHA512: 1a6741bb2876181e5bc4fc24d20261902c0ddd1fd94ee898e5b5b31899f80ec156c7a72b52534122146a220eebfc92934ef7197d46d0f29e5a1f1b7643629ff9 -Homepage: https://twitter.com/ijulioverne -Description: Pin Apps In Siri Suggestion Widget -Name: AppsSiriPin -Author: julioverne -Icon: file:///Library/PreferenceBundles/AppsSiriPin.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.appssiripin - -Package: com.julioverne.appstorenohistory -Architecture: iphoneos-arm -Version: 0.0~beta8 -Section: Tweaks -Maintainer: Julio -Depends: preferenceloader, mobilesubstrate, applist -Filename: ./debfiles/com.julioverne.appstorenohistory_0.0~beta8_iphoneos-arm.deb -Size: 30756 -MD5sum: 8bb64a3266d85feb4dec87a3abc868c6 -SHA1: 7b7918124222f56bb92e9c4df43907a9ca015f32 -SHA256: 1e3c518d4485a9540c5bf884d0e1acef2d7e403793c5dabc62d933d812aab9b4 -SHA512: b722dad37a468f7c424145b312ce3b03cccf2d8c7cc11409126179ecf740f6998a4781374777caa82175c5d7e9c4f714ed8c73572d94752d8d5b3d80e12a98d2 -Homepage: https://twitter.com/ijulioverne -Description: Clean Updated Apps History -Name: Appstore No History -Author: julioverne -Icon: file:///Library/PreferenceBundles/AppstoreNoHistorySettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.appstorenohistory - -Package: com.julioverne.appstoreunrestrict -Architecture: iphoneos-arm -Version: 0.0~beta4a -Section: Tweaks -Maintainer: Julio -Depends: preferenceloader, mobilesubstrate -Filename: ./debfiles/com.julioverne.appstoreunrestrict_0.0~beta4a_iphoneos-arm.deb -Size: 26188 -MD5sum: 929407ca9cef02b76fc6dd38f9fc01a1 -SHA1: 8b8ec6472d8001a676577f0f3f8aaf60fdc9ca6f -SHA256: 12df85b73accca49769566cb84f3e0e78e9688143a82315afc331d785e9564fc -SHA512: 9e085616f5749adf3f624701f3e2dcfdcfa9edcedc97447e576d5476b257e2695099cba645d8a8a53d954ebf0ca6de262d8ef4d92423d8943ecc4fefc7c79e82 -Homepage: https://twitter.com/ijulioverne -Description: No Download Size Limit In AppStore Over Cellular -Name: Appstore Unrestrict -Author: julioverne -Icon: file:///Library/PreferenceBundles/AppstoreUnrestrictSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.appstoreunrestrict - -Package: com.julioverne.artworkify -Architecture: iphoneos-arm -Version: 0.0~beta4 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.artworkify_0.0~beta4_iphoneos-arm.deb -Size: 26624 -MD5sum: 88757e1b53ab7bacc66ee0caa77e16e7 -SHA1: 9dbbeaf6dc386639db2db5279c61b9ed2179866f -SHA256: 993ee29bbc7c49b2edc39f7e5037f3820e17178cb667de8d052ba393bab2373b -SHA512: 496e59b3ca894dbbe72df050edee678d9c1552071a1f86a735379e8089b7d3e7b037338f7f65d7fe0f9116f9a5f2cfcdab39d0272534224c34f8d4053ff8113f -Homepage: https://twitter.com/ijulioverne -Description: Spotify Artwork In Playlist -Name: Artworkify -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.artworkify - -Package: com.julioverne.autolockx -Architecture: iphoneos-arm -Version: 0.0~beta2a -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.autolockx_0.0~beta2a_iphoneos-arm.deb -Size: 94920 -MD5sum: 050480760d81e4150a2950617dcfec6c -SHA1: e1e986c09c9d9ad41b4ceacd53a0dc598568c66c -SHA256: 4c9b90af0248fad87169a8b343d74c7d37cec61acbb6090bf12080d5b400bcac -SHA512: 322f80747c89ce95b4bf283444f470a789ce985f3c0821fc28500c5924cdd97cd60e2ecd145101ec437813c8fa89d719d0395a5b047daea5b6bd0045b16a16e2 -Homepage: https://twitter.com/ijulioverne -Description: Force Auto Lock Device -Name: AutoLockX -Author: julioverne -Icon: file:///Library/PreferenceBundles/AutoLockXSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.autolockx - -Package: com.julioverne.autoshiftfix -Architecture: iphoneos-arm -Version: 0.1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.autoshiftfix_0.1_iphoneos-arm.deb -Size: 3606 -MD5sum: 9268a10132725bc6014f7600fadf8ca7 -SHA1: 1834d386deec8d92688fedb687e728e587dfd86c -SHA256: 6b16aa7c9a678da54ea96fdcbd57782fd27578d31809d54dab7daa5797bb20b5 -SHA512: 2ae7e67f0fc7cf917ea6d0e8495fefbfcbb3da7ec5e97cc38cc896e31aa067f80370d1514410249f81177f77f5822c995d532385c78e3096094432a3e093be91 -Homepage: https://twitter.com/ijulioverne -Description: No shift when delete capitalized letter -Name: AutoShiftFix -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.autoshiftfix - -Package: com.julioverne.autowall -Architecture: iphoneos-arm -Version: 0.0~beta3 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.autowall_0.0~beta3_iphoneos-arm.deb -Size: 135524 -MD5sum: 919e9772075a9997375ebc19ef6e11b9 -SHA1: 4b9a3118705dea9eb27116e98bb1e6d83e9ce62d -SHA256: b194bc2f13c823c3a88bf1994a9f80e94f7b9d98244a9b3f91316344cba8d61d -SHA512: 7f9d91421b267bd01b360b158ad7e4f85ce407ca303e0c7d36765b974d768176c557981a647e751ccca7c6f830772286482bd0ca1b1692a6b82d3380d14cc24c -Homepage: https://twitter.com/ijulioverne -Description: Scheduled Wallpapers -Name: AutoWall -Author: julioverne -Icon: file:///Library/PreferenceBundles/AutoWallSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.autowall - -Package: com.julioverne.avcache -Architecture: iphoneos-arm -Version: 0.0~beta2 -Section: Tweaks -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.avcache_0.0~beta2_iphoneos-arm.deb -Size: 25482 -MD5sum: 3465a4397b0cefedc34ec2d90271dd22 -SHA1: 7bf4e6e9f8741d9fbfd94c5b34be468a5d962778 -SHA256: 14622e52873ea63ec4a325cb09ce9e987e7a30894811b1f11e46fa771621e24f -SHA512: d72d1d2e7dcbde0848037e6c4b81ca7978830fe422ef81e028be6b7aed1b24b857f69ad261c7810bab582276501fe328bba4e40c8141df0053b3a045c257923e -Homepage: https://twitter.com/ijulioverne -Description: Video Buffer System for AVPlayer -Name: AVCache -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.avcache - -Package: com.julioverne.battrate -Architecture: iphoneos-arm -Version: 0.0~beta2 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.battrate_0.0~beta2_iphoneos-arm.deb -Size: 158444 -MD5sum: d9777e4b046116cabd260bc13d29377f -SHA1: 4e8ea204b932f874ef2336aae52223fa831c2f2e -SHA256: db66c8c3a24b331bef1d31d441eff2726edf72a50a2301d7e48fa341204d1b95 -SHA512: e85dcd59515bcce0b94559dee31177efc81e52d16a631cf378529b3c89df5649b1ea6eaa65117104711c1372cbf66bb5d7b5be007537d9e611f6fd4f86ebee62 -Homepage: https://twitter.com/ijulioverne -Description: Battery Discharge Rate Monitor -Name: BattRate -Author: julioverne -Icon: file:///Library/PreferenceBundles/BattRateSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.battrate - -Package: com.julioverne.bgmodekill -Architecture: iphoneos-arm -Version: 0.0~beta -Section: Tweaks -Maintainer: Julio -Depends: firmware (>= 6.0), firmware (<< 11.0), mobilesubstrate -Filename: ./debfiles/com.julioverne.bgmodekill_0.0~beta_iphoneos-arm.deb -Size: 8282 -MD5sum: 5e61b25b7853bd2c9ed2d72c6f14dac8 -SHA1: e40d38989b517d9f3c090028f87077f36bfa1d9b -SHA256: 33301423120c279914e959bcf5efb6b4db6d917c0d1a47e5be969bba534ab467 -SHA512: f26fcb4489c3dad5dd098b1622f43854932567e7fd142db5146e84c5b07e251366d0da002514d69ab831a58a228f0a8e40b5bfdd39143c3233d4d34b7d6f197d -Homepage: https://twitter.com/ijulioverne -Description: Kill Auto-Launch Background Apps Some Apps has Auto-Launch Background whem system start or remove from multitask (like Mail/WhatsApp App) with this will disable Auto-Launch Background in All Apps. No options to Configure. -Name: BGModeKill -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.bgmodekill - -Package: com.julioverne.bigshotjb11 -Architecture: iphoneos-arm -Version: 0.0.2-2b -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, libactivator -Conflicts: com.tapthaker.bigshotjb, com.tapthaker.bigshotjb11 -Filename: ./debfiles/com.julioverne.bigshotjb11_0.0.2-2b_iphoneos-arm.deb -Size: 33342 -MD5sum: 3cf565a6890e4024121ae679c2268059 -SHA1: bba4b4de8140a16ec0ae23d809afdf2ac23f0724 -SHA256: 1676e7400818724057502a475b185f33671643b3661d3098b5787e5e154b27ee -SHA512: eed77d5bb9bfae3fc145dbbb0be06e0ae477f8e48dbc6c3cd78aa451f3cf956a13aaba62401618bce6a44b24cb75ce298419e2508d085d5c106d6046c87192cd -Description: take screenshots of full vertical scrollable area -Name: BigShotJb (iOS 11) -Author: tapthaker, julioverne -dev: tapthaker -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.bigshotjb11 - -Package: com.julioverne.biotap -Architecture: iphoneos-arm -Version: 0.1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, firmware (>= 10) -Filename: ./debfiles/com.julioverne.biotap_0.1_iphoneos-arm.deb -Size: 5554 -MD5sum: fd7019f8a84f8812b207f7c1de7d4aab -SHA1: 50e1139cec2fbc2f899bb419254aaf93921f5585 -SHA256: 653f15f15250eb8f9254a6cdd269b39ce22893dbf7232772d1705393de193d52 -SHA512: f18f7aea40f46f4fb3c8f113bf0b1306fb2864108256a209a6a1b197a19f89b4b8baecb83577732d488156053bb568425dd8ebc20083ee419bb9ea0ab47c218f -Homepage: https://twitter.com/ijulioverne -Description: Bio Authenticated Auto Tap to Unlock -Name: BioTap -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.biotap - -Package: com.julioverne.blightalert -Architecture: iphoneos-arm -Version: 0.0~beta4 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.blightalert_0.0~beta4_iphoneos-arm.deb -Size: 39592 -MD5sum: 2f61cca8e8c503b286d2a16046c0e80b -SHA1: aaf368f0ea6198dd0d29a37e85970c98e8bd4feb -SHA256: 5b12cab22ac75cb68287a6f08818e113bd2ef9dfef3b1d0cc582890a639b6154 -SHA512: c8697ac7ab556085224d3844ae3a4811eb94c7fd9ec910228a9ce2a08cbc73001b7358a7c9522023efc41a7defc7f99a82e95e7b9c3399838ebc2a68563b6e0b -Homepage: https://twitter.com/ijulioverne -Description: Use Brightness As Alert -Name: BLightAlert -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.blightalert - -Package: com.julioverne.bumbleverifyroll -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.bumbleverifyroll_0.0~beta1_iphoneos-arm.deb -Size: 6816 -MD5sum: 24adc9beef4ec92130fffac2f97349c6 -SHA1: f04617974a990b8b51829cd94ca867d10e219a34 -SHA256: f5795950212b84b65b7041676706856a152261ae0dd7e47000734fefcd35f14b -SHA512: 149b2faf058816b87f1a70ec46108d9bc300d86b76792e38fa1115321926b62cb6d0b4db6970867e62d9571b39f052b6c10480b61f8803c44fa11d879fed953f -Homepage: https://twitter.com/ijulioverne -Description: Verify Account Photo via Camera Roll -Name: BumbleVerifyRoll -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.bumbleverifyroll - -Package: com.julioverne.cacheclearer11 -Architecture: iphoneos-arm -Version: 0.1a -Section: Tweaks -Maintainer: Julio -Depends: firmware (>= 7.0), mobilesubstrate (>= 0.9.5001) -Conflicts: com.rpetrich.cacheclearer -Filename: ./debfiles/com.julioverne.cacheclearer11_0.1_iphoneos-arm.deb -Size: 9264 -MD5sum: 8611f60d5e8e0da3523d9c4c3412872b -SHA1: d7fdf2ec36ea9256d7d3b438492d9d6f432c21e0 -SHA256: c71a94a0e146c7cfb85e9dcae72c78b1852af225b43d7d22977ec01aa4e6fea6 -SHA512: b530f3e32a9f0fc360f977ce63f411dd91c94bf473ba50fdd39e5cb2e5f372e40fd6a1f52d6e7bbac25ad64519bc7e21ec60e9e304074585662c3df54914db3a -Description: Clear app caches from the Usage section in Settings -Name: CacheClearer (iOS 11) -Author: Ryan Petrich, julioverne -dev: rpetrich -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.cacheclearer11 - -Package: com.julioverne.cachewipe -Architecture: iphoneos-arm -Version: 0.0~beta1a -Section: Addons (Flipswitch) -Maintainer: Julio -Depends: mobilesubstrate, com.a3tweaks.flipswitch -Filename: ./debfiles/com.julioverne.cachewipe_0.0~beta1a_iphoneos-arm.deb -Size: 31046 -MD5sum: 098deaf821d43f8b3c558b93005194ae -SHA1: fff3f236878370fe5a7e6348af5e9ff93ec7407d -SHA256: 10ea98aeb3571a3dc52077ba313caaa53ff9b1724274bf510ef1a60509d20d49 -SHA512: 17310907b0d8cc6111f1a2d11d4ba38d4d345542d88372c962ed1407e243c1a4fb244812770d694e7e6d88e2a98c8daf27742a526682a36d0c76d77cefc597e4 -Homepage: https://twitter.com/ijulioverne -Description: Clear Apps Caches Switch -Name: CacheWipe -Author: julioverne -Icon: file:///Library/Switches/CacheWipe.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.cachewipe - -Package: com.julioverne.caixatemfast -Architecture: iphoneos-arm -Version: 0.0~beta2 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.caixatemfast_0.0~beta2_iphoneos-arm.deb -Size: 26190 -MD5sum: ce5bb40cc00c0c13b58c7df6474b95c8 -SHA1: 8d22da87e94dbe7b20bb0145851038b492624f50 -SHA256: 684bc6e11ad816bfd2baa06415c84ae64e67a7392ec2da8233321f0a197951b8 -SHA512: 497504c29256b07b4944cd8eee70121c2b494e7d08b420262891ed6a0ea3ea7ec4551bfbf64ee37017452008548ef64cd8033953b207e13dd4f9571948daee4a -Homepage: https://twitter.com/ijulioverne -Description: Brazilian Caixa Tem App No Queue Wait, JB Detection Bypass -Name: CaixaTemFast -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.caixatemfast - -Package: com.julioverne.celldia -Architecture: iphoneos-arm -Version: 0.0~beta5 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, cydia -Filename: ./debfiles/com.julioverne.celldia_0.0~beta5_iphoneos-arm.deb -Size: 19986 -MD5sum: 612065281762fa48414228ad5d06f27c -SHA1: 0a2327832fe0d64205e97aaaf81c3891f9635bb0 -SHA256: 7d3f95086c97d0e75ed75db90cd98cda8c315e2097849d78e5cf7fbd6d8c16f3 -SHA512: 83f423cdd83645c4bff1654f1097c4b72b305ea3f8b4a4bd8e72c3b2758daafc56eea118b4d027b844b94b99bf3e7ffaa1ad650335e635d9e5bb423c57edd446 -Homepage: https://twitter.com/ijulioverne -Description: Redesigned Cell Cydia -Name: CellDia -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.celldia - -Package: com.julioverne.chargemode -Architecture: iphoneos-arm -Version: 0.0~beta4 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.chargemode_0.0~beta4_iphoneos-arm.deb -Size: 33334 -MD5sum: 80d388381c98ba6af4551eb96dd9b5c0 -SHA1: a98587091a91a0e9fdc56af21a110b0ebce8641c -SHA256: f844010ff9b3a78082c8f4d7a4b17befa18a4d7054f56d42d10ab159ca0f1d49 -SHA512: 82a36678e17b0ec61391e77daa45f75688f7dbdff71b8ca61e93064c7cb760b84e187f707e88d8724ea4e5dbc4948b844217a880b752309335570ec0c6648cf9 -Homepage: https://twitter.com/ijulioverne -Description: Lite Charging View with Batt Dots and Hour. -Name: ChargeMode -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.chargemode - -Package: com.julioverne.cirdock11 -Architecture: iphoneos-arm -Version: 1.3.0 -Section: Tweaks -Maintainer: Julio -Depends: firmware (>= 7.0), mobilesubstrate (>= 0.9.5000), preferenceloader, applist -Conflicts: org.thebigboss.cirdock -Filename: ./debfiles/com.julioverne.cirdock11_1.3.0_iphoneos-arm.deb -Size: 343128 -MD5sum: c9a8b3568cb77a632702d6997ccc4590 -SHA1: 3e7c30c84f6f58904b50d33b56cead47a1d83d98 -SHA256: e361d41406f70a6db6af076fa094d4cf77b4c8cb6efbd00f41b4630867da61fd -SHA512: cdc7529d51ce527c855fbdc26cfd5ede35310a474339a56d7cdcfccd831a0772ced72a4606cb4d2ef7239e451df1465e409bb637d785f056806a3f434ae9f947 -Description: evolutionizes the device's dock! -Name: CirDock (iOS 11) -Author: Brave Heart, julioverne -dev: alsafa7dev -Icon: file:///PreferenceBundles/CirDockSettings.bundle/Icon-Small@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.cirdock11 - -Package: com.julioverne.closecam -Architecture: iphoneos-arm -Version: 0.0~beta2 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.closecam_0.0~beta2_iphoneos-arm.deb -Size: 6422 -MD5sum: 38264da2b4cf385f4aed7912d5ff0281 -SHA1: 023cd3a5816e78e01f1b8c7d7623c68bf1f6b6ee -SHA256: 35aa74da1f52db2b703cfaf84c469be3a3f3019eec1303d7e0eafb69b22c7866 -SHA512: 9fef4d97a70ecc07383c2dae373200ed347d5ef3075d35093e984cc54a5595fd880043308d98d6c9f08eab05cb58dfe90e148795870f6a44085bd52233ba6a0e -Homepage: https://twitter.com/ijulioverne -Description: Close/Kill Camera App When Exit -Name: CloseCam -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.closecam - -Package: com.julioverne.cmdsapp -Architecture: iphoneos-arm -Version: 0.1 -Section: Utilities -Maintainer: Julio -Filename: ./debfiles/com.julioverne.cmdsapp_0.1_iphoneos-arm.deb -Size: 8592 -MD5sum: f3ed843a4372945b416838245f554574 -SHA1: c02a61cf57eda8634d26b2c1f28d59f2695064d5 -SHA256: dfea491fff0b9b4bfc047a067b9644f357bc70d4fe8d1946ad1e46eda3c58bf9 -SHA512: de209f3b117b01edd3cfd402d788d3027f18bb13760a9e08e54a39729a82ffbad86bba6a0d3f9dccb01963f68a1b9b0521141ca7c9cdcd750ccc13e5c0c45030 -Homepage: https://twitter.com/ijulioverne -Description: bash command list installed apps.. (getapplist [-id], getappdir [APP_ID]) -Name: cmdsapp -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.cmdsapp - -Package: com.julioverne.coverflowm -Architecture: iphoneos-arm -Version: 0.2 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, firmware (>= 10.0), com.rpetrich.rocketbootstrap -Filename: ./debfiles/com.julioverne.coverflowm_0.2_iphoneos-arm.deb -Size: 285742 -MD5sum: d2561edf0bdde1e5565f8681eee037e7 -SHA1: 89d91d6582ffe3f5f0463dff42d51eb759bc177e -SHA256: 9cbcdf1e4e21ec25abe1e415f87c1c33ba1d1668ee7d67a2fa48f9048ff7c823 -SHA512: 842c84ea90b339f0e2e5398a2a1724dc9b492ac24266fc627601f0f06e0d63322af01a1de5be7c2dd685a17df493dda4317e312c9eeb551b437cb9eedc89b8d7 -Homepage: https://twitter.com/ijulioverne -Description: Landscape Music Styles for Music App -Name: CoverflowM -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.coverflowm - -Package: com.julioverne.cypush2 -Architecture: iphoneos-arm -Version: 1.2 -Section: Tweaks -Maintainer: Julio -Depends: firmware (>= 7.0), cydia, mobilesubstrate, preferenceloader -Conflicts: com.julioverne.cypush -Filename: ./debfiles/com.julioverne.cypush2_1.2_iphoneos-arm.deb -Size: 195710 -MD5sum: 4b8b129938805e62aeb13428a51f9436 -SHA1: 1d9249b68e868605f835470a2bf6a6be5a8c5417 -SHA256: adb1e8ae6c0bab8e8d95355d7107eee17f2c39430f3b81ac0207097facc60683 -SHA512: 5ce8a15a8093d5a72ae3625f95db23edcc46b1aa7269a2e2d5fb1b3ac5fbb613a37e91f3b7c07337704327cc38411fcd35aac327e9bf45dfd03dda5733d0a4ce -Homepage: https://twitter.com/ijulioverne -Description: Cydia Push Notifications Background -Name: CyPush2 -Author: julioverne -Icon: file:///Library/PreferenceBundles/CyPushSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.cypush2 - -Package: com.julioverne.cypush -Architecture: iphoneos-arm -Version: 0.7 -Section: Tweaks -Maintainer: Julio -Depends: firmware (>= 6.0), firmware (<< 11.0), cydia, mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.cypush_0.7_iphoneos-arm.deb -Size: 144170 -MD5sum: bb47bbdd3e5aca866fe9a29ef4aadd07 -SHA1: dec933d8d77bc5e50816aa5f625f65ca270915da -SHA256: 7fb0db58b2549fc2177eb040ddb3c43deaf07fdd4cce43a28112ba4bcadd372f -SHA512: 96fb6b8e50de0bf14e6b82b79d9464e723cc996ce1a953559cf5732445a6a1b4db0803cdd2bf08a2b3d3404eb8c19737922f355ee2ad856449a677c957796708 -Homepage: https://twitter.com/ijulioverne -Description: Cydia Push Notifications Background -Name: CyPush -Author: julioverne -Icon: file:///Library/PreferenceBundles/CyPushSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.cypush - -Package: com.julioverne.debrepack -Architecture: iphoneos-arm -Version: 1.0-1a -Section: Development -Maintainer: Julio -Depends: dpkg -Filename: ./debfiles/com.julioverne.debrepack_1.0-1a_iphoneos-arm.deb -Size: 1156 -MD5sum: 41b32bf563f667454301b2efe847c681 -SHA1: cba2897b43838d4318105a75d1bec3b3de0d16aa -SHA256: bc28c32b8d5efa3f20018f39e48340df8fb5217e56815c422755eb2129420833 -SHA512: 4d754d3e9b26c75b6c63490469ff895135a1fc1d6fd999545ae541b51c4db2058fbb9cac05f4e5282fe5ff40e11b1fd31e4f6b620c12a2025455adbf93abf980 -Homepage: https://twitter.com/ijulioverne -Description: bash command to repack deb file Easy Repack deb files. type debextract/debmount on terminal to unmount/mount deb file on /var/mobile/deb/ -Name: deb Repack -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.debrepack - -Package: com.julioverne.dropbearalert -Architecture: iphoneos-arm -Version: 0.0~beta2 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.dropbearalert_0.0~beta2_iphoneos-arm.deb -Size: 57300 -MD5sum: c80c4df683164630e72c58494a350aeb -SHA1: a4a6188c7f09f684824b1a4a0d10a585ac03e3fa -SHA256: 657c09206d1eb41639c2f2475f16fd6e079cee86aebd60d4458d2b0f1cd4c95b -SHA512: 2f1b732bfeac742735b3034b809bf306288709a6fb6e4cd13d9fef043993b1c2c9119f1da1ba17fab88c5b52ff21c6f25a623a3239f6c7dfbb2372b0aa38c3da -Homepage: https://twitter.com/ijulioverne -Description: Dropbear System Login Alert for iOS 10 -Name: DropbearAlert -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.dropbearalert - -Package: com.julioverne.dropbearswith -Architecture: iphoneos-arm -Version: 0.3 -Section: Addons (Flipswitch) -Maintainer: Julio -Depends: mobilesubstrate, com.a3tweaks.flipswitch, firmware (>= 10) -Filename: ./debfiles/com.julioverne.dropbearswith_0.3_iphoneos-arm.deb -Size: 22480 -MD5sum: 4ec295c47bb477373ef7e96335d5def9 -SHA1: 7e9e6bb9fb3d0a2bcc589246f25728bc37aa222f -SHA256: 395f66f57d3de376476963bf35a4dc204d70cee3aa45b2c2524893717e7a3f44 -SHA512: 8a6639981b4ee2dad7b78e6ca5cf88e78e62ab03321927b64ceaf9b3523e5714eb0d00797fe666a2b336c944f29d0dd0198d2d59210efe4099d42bc703e65ee5 -Homepage: https://twitter.com/ijulioverne -Description: SSH Toogle for Dropbear via Flipswitch in iOS 10 -Name: DropbearSwitch -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.dropbearswith - -Package: com.julioverne.edgealert -Architecture: iphoneos-arm -Version: 0.0~beta2 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader, org.thebigboss.libcolorpicker -Filename: ./debfiles/com.julioverne.edgealert_0.0~beta2_iphoneos-arm.deb -Size: 51438 -MD5sum: c252459e6b0dbe925dfed93514d8b752 -SHA1: 7b73d2770cce438b1211165b0082bb54e256857e -SHA256: e1936f04c6d759183b7cc7d11b947c4ed4f4b7c3344e8af300f8e3daf76019d7 -SHA512: 59d45910a2f5248efed4005062a99864cffe6e49aa066c34380ec9514fa6530465d168cdd6e2e544e89a3dfcd08cd69c65aaf6b2dfeaa0ca545fb1f3f26d1950 -Homepage: https://twitter.com/ijulioverne -Description: S8 Edge Alert -Name: EdgeAlert -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.edgealert - -Package: com.julioverne.epicentre11 -Architecture: iphoneos-arm -Version: 2.0-2b -Section: Tweaks -Maintainer: Julio -Depends: firmware (>= 7.0), mobilesubstrate, preferenceloader -Conflicts: com.phillipt.epicentre -Filename: ./debfiles/com.julioverne.epicentre11_2.0-2b_iphoneos-arm.deb -Size: 459028 -MD5sum: 56a8286affa391dc875c98c161192b22 -SHA1: 42d7a3e4a2c4d8c52f13eea77dc8b7ef6832e1d7 -SHA256: f3603878ef23154826139e4126bf08c66dc4ec30ed63776a3c63f684b4e1bae1 -SHA512: 2a89928add09387e4d915ac9228ef15def886c0d4363a1a0998ff6d11155474fb98f71c8cb84bce902aeaab2bb5ff289c6d7259b395ab750d55eae1978df986c -Description: A gorgeous passcode replacement -Author: Phillip Tennen, julioverne -Name: Epicentre (iOS 11) -dev: phillipt -Icon: file:///Library/PreferenceBundles/Epicentre.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.epicentre11 - -Package: com.julioverne.exchangent2 -Architecture: iphoneos-arm -Version: 0.0~beta4 -Section: Tweaks -Maintainer: Julio -Depends: preferenceloader, mobilesubstrate -Conflicts: com.derv82.exchangent -Filename: ./debfiles/com.julioverne.exchangent2_0.0~beta4_iphoneos-arm.deb -Size: 124044 -MD5sum: aba7ad67dcc9bd68ee251063b9445fcf -SHA1: 10e86ef5f86e5b17dbc074783d62bc58697e0a61 -SHA256: 3bcc96c465a785a9d5f66d4305fd0b7030e471a8cc8d4dcda9009014d513a847 -SHA512: 6d83563179c9bd32b66ec7579f4c4fea410f1e166ac45a277ad8dfed228d31c36b118286a72b24331b9918ea6292cbafc631e2fefce1d38069395b5df35d4ded -Description: Spoof Exchange/ActiveSync User-Agent -Name: Exchangent2 -Author: derv82 & julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.exchangent2 - -Package: com.julioverne.exsto11 -Architecture: iphoneos-arm -Version: 0.0.1.2-2 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, firmware (>= 8.0), preferenceloader -Conflicts: com.zachatrocity.exsto -Filename: ./debfiles/com.julioverne.exsto11_0.0.1.2-2_iphoneos-arm.deb -Size: 226136 -MD5sum: d73158b381904e49cf8eea1c9cb6101e -SHA1: e5a2887158781c797f0637ea57e653dd27b729b2 -SHA256: e8b98cd897e91ea9db13a14fb8466d75992a42c3d319608d40306c6075bc07d7 -SHA512: 84208b0f9213be0b346ef281e7348d6d80fc81f7a8119987f58d9fad4a06056c8c5a4b86bf5b40c0d63f7bddd4d0ee800af0649872b2cadef62e1ede67573ddd -Description: Unleash your folders -Author: Zachary Russell, julioverne -Name: Exsto (iOS 11) -dev: zachatrocity -Icon: file:///Library/PreferenceBundles/exsto.bundle/exsto@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.exsto11 - -Package: com.julioverne.ext3nder-installer -Architecture: iphoneos-arm -Version: 022b -Section: Utilities -Maintainer: Julio -Pre-Depends: ldid, unzip, coreutils, zip, sed -Depends: mobilesubstrate -Conflicts: com.julioverne.ext3nder -Filename: ./debfiles/com.julioverne.ext3nder-installer_022b_iphoneos-arm.deb -Size: 1947704 -MD5sum: e6ade754c8aa7269951799f81c1e53ac -SHA1: 37f2a30eb782d9595ef8ec231f82f3521cbd463d -SHA256: 92d8c63e304aa93f2eb46ed1f08a193f2090944b12a36eb805ae459f148fd5b8 -SHA512: 6adb9d3fc89a0ddd0f8eacf3c7d3a0dc857ed5642d8d326a41cd22f153a9e6e0892506a6320bd5a724820b53e3be2389d51e58b019a4a453d3b6bbd019e93c6a -Homepage: https://twitter.com/ijulioverne -Description: Cydia Extender Installer With Extra Features -Name: Ext3nder Installer -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.ext3nder-installer - -Package: com.julioverne.fastuprepo2 -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: cydia (>> 1.1.27), mobilesubstrate, cy+cpu.arm64 -Filename: ./debfiles/com.julioverne.fastuprepo2_0.0~beta1_iphoneos-arm.deb -Size: 68450 -MD5sum: 454e777e265f5c80a57b7a6b7aef4e74 -SHA1: 43e6ef6cb8b1a7a2c18f57fa13d1e0e61d8b442c -SHA256: a4346f9c94461a7d5d437b166ac0f5a40bb11bd1334955654cb474b19bbd6e1a -SHA512: 745269ef7f8fee84195794a9c806265d0978ceeef2817674dfa85e62576d1449468a933ace4f13329468b44359280246d6373b1726eaba2af599f2aa4645a42b -Homepage: https://twitter.com/ijulioverne -Description: SpeedUp Cydia Update Sources by blocking download translation. -Name: fastUpRepo2 -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.fastuprepo2 - -Package: com.julioverne.fastuprepo -Architecture: iphoneos-arm -Version: 0.0~beta4a -Section: Tweaks -Maintainer: Julio -Depends: cydia (>> 1.1.27), mobilesubstrate, cy+cpu.arm64, firmware (<< 11.0) -Conflicts: com.julioverne.fastuprepo2 -Filename: ./debfiles/com.julioverne.fastuprepo_0.0~beta4a_iphoneos-arm.deb -Size: 7806 -MD5sum: e502870e99b3f5fedc496f0a67dad29a -SHA1: 4d59d362e934100d2a0b45cc5302977c5349db46 -SHA256: 1a5759d8366ea3b10742c53d73ceb132596694fac1e991e5937d0606d79ca48a -SHA512: 4785897e5297cb1d5c1912bb31998a16ff9ffa284cd9f899da258d49df314cf759c6f3c6056974fd0e797b49b2bc0c8947ee5b952972df163233f2f5e9991ad7 -Homepage: https://twitter.com/ijulioverne -Description: SpeedUp Cydia Update Sources by blocking download translation. -Name: fastUpRepo -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.fastuprepo - -Package: com.julioverne.fiona -Architecture: iphoneos-arm -Version: 0.1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.fiona_0.1_iphoneos-arm.deb -Size: 48954 -MD5sum: 3fb48006d1a75287531e3942cdb8c137 -SHA1: 4d845736ad5b7b798f22d9e8640f05d2d26d437b -SHA256: 157240459d4dbe0d7d1895bc84d6ca76d7b3698463699e299059adfec92c850f -SHA512: e5d104cc5050451ba7427871c27a16d79f559af45f58ade69d2efa2fa0ed08e7329669971b4c7fd127d609e5f7dbcd4ad80598dc61f1abe85092c89269ee4b9b -Homepage: https://twitter.com/ijulioverne -Description: Keep WiFi Always Connected -Name: Fiona -Author: julioverne -Icon: file:///Library/PreferenceBundles/FionaSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.fiona - -Package: com.julioverne.flipconvert -Architecture: iphoneos-arm -Version: 0.0~beta6 -Section: Tweaks -Maintainer: Julio -Depends: preferenceloader, mobilesubstrate, com.opa334.ccsupport, com.a3tweaks.flipswitch, firmware (>= 11.0) -Filename: ./debfiles/com.julioverne.flipconvert_0.0~beta6_iphoneos-arm.deb -Size: 58742 -MD5sum: 10d9f1b525c31b9d0827b8aa0c01296b -SHA1: a2394aa9bd3f3c12e6b89cad7146c92c1002d0ad -SHA256: 378770f833051bc691c1261b42fe1a1a009c31c51584a750c8b49860b676802c -SHA512: c8aa2db2ce4cf065ab2ad2c6bdec9e80d9e037f7f697f267d4d7b2dc87a65ed3a66badfd7a203a09aab50cef5d9e87ed566296ccbf3909de871377858b213db7 -Homepage: https://twitter.com/ijulioverne -Description: Port Flipswitch Toggles With CCSupport -Name: FlipConvert -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.flipconvert - -Package: com.julioverne.flipstatus -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, com.rpetrich.flipcontrolcenter -Filename: ./debfiles/com.julioverne.flipstatus_0.0~beta1_iphoneos-arm.deb -Size: 6042 -MD5sum: 5c013957f4c53315d12ce7be618b1847 -SHA1: 4177cc809f2c751992f0dddd47059d5da875ae84 -SHA256: d9f1d5b96b93c32fd3271e36c00f27b98cfdbc48c8659a0db967598ca90d6b71 -SHA512: dd0365f72b9a24d6089067957a7c24529e39fbdb56e25ad558bd79c9f710cfb35454c5ec9ecb9e89abf4dae5f0e683df2446fa0d5535e24be240816d26e91c56 -Homepage: https://twitter.com/ijulioverne -Description: FlipControlCenter Status Switch in iOS 10 -Name: FlipStatus -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.flipstatus - -Package: com.julioverne.fmydblocker -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.fmydblocker_0.0~beta1_iphoneos-arm.deb -Size: 32806 -MD5sum: ea2fc304d4b8a366b56fd17f33b14dd3 -SHA1: 93e964e830c9a333942373b66b8efe22ed0628bd -SHA256: d4c09622dc07910287c49a039de59cf1976fc39ee807cd1bc5560bfa5205f1b0 -SHA512: 6d5909f84f04865deea44d475858255cfac232ad1b316531e1d2a3fb8b6e01a1ff15de34fb34937e7e2b12b89f3f8c8cdc0d6228ce9e16cb3f3ea735a9d71c04 -Homepage: https://twitter.com/ijulioverne -Description: Find My iPhone Block Remote Actions via iCloud, Configure From Settings -Name: fmydBlocker -Author: julioverne -Icon: file:///Library/PreferenceBundles/fmydBlockerSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.fmydblocker - -Package: com.julioverne.goodwifi -Architecture: iphoneos-arm -Version: 0.0~beta6 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.goodwifi_0.0~beta6_iphoneos-arm.deb -Size: 155794 -MD5sum: 2acd94d21ae1884e084d374f239696d2 -SHA1: 9e1d8f2f20bc00bb6f54306f1990a1f12c7965f7 -SHA256: ca0e93f19009d314251f3a8da8ba4e4f60cd2f6a3491c609c1e4657077d30ef7 -SHA512: 812e6789f8b7d52afd0692fe1ea1d0b705a0044df478e23ed9ce6fefd4b3f2fea75a490cdbd5ff96b29a9421461ff5e997622ddb8f9ac1b5e1251b4434386189 -Homepage: https://twitter.com/ijulioverne -Description: Better WiFi Preferences -Name: GoodWiFi -Author: julioverne -Icon: file:///Library/PreferenceBundles/GoodWiFiSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.goodwifi - -Package: com.julioverne.googleauthpro -Architecture: iphoneos-arm -Version: 0.0~beta2a -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.googleauthpro_0.0~beta2a_iphoneos-arm.deb -Size: 40392 -MD5sum: 27b93a94a4790c6301ecf3d314156354 -SHA1: 7b1ecb4aecee8630ba06e818f0fad67cbe75c88a -SHA256: ffce06e7f15001691796da66431a13b1d4435b5dc38fe603ab1635ce32e04785 -SHA512: dcccf7faca34b6fa3736a8f876fd65971b5fa93067253f6a7984c6bd6908360845806227ee3e1d0a33fba5141dde9b139a36be110c5bb8062144cabfb31fc63e -Description: Features For Google Authenticator App -Name: GoogleAuthPro -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.googleauthpro - -Package: com.julioverne.gravity -Architecture: iphoneos-arm -Version: 0.7 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.gravity_0.7_iphoneos-arm.deb -Size: 223620 -MD5sum: c69914ea0d77f68ace34035ca5d98ede -SHA1: 58db4b7430b63e748b071598acd4d863fc8aa9cc -SHA256: 1aacbf01d84f55e181360d28c54bbe10263e464109a6253a3317d1e8aa5a4695 -SHA512: 29e4635df8ecf30e07dbce3e074d9e9c4b48431b7c345f2e5e9ee67a6d5f0c16f9a707a06e35b4ff7983a8d1c7419c69202317ca0abe51da12bd21273866d1a0 -Homepage: https://twitter.com/ijulioverne -Description: Graviboard alternative -Name: Gravity -Author: julioverne -Icon: file:///Library/PreferenceBundles/Gravity.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.gravity - -Package: com.julioverne.headsetbtsound -Architecture: iphoneos-arm -Version: 0.0~beta -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.headsetbtsound_0.0~beta_iphoneos-arm.deb -Size: 4332 -MD5sum: 8ded04223b1b6631833b220a0eb78316 -SHA1: ca1bd92c051c6b46d9b697bb6fdef20edc309df9 -SHA256: 96e4346c33a6a13a63fac3fd1fb20bfd6ce287276b3663b011c852269cd604fe -SHA512: 2b54ef3e707d4a3dc365f955c215d221bebff68541c7a9adb843ac0e91e141288f61f136aef395f7d69d89bfe3f1d6593b15ac5d8c660d3c64b4da242e3f8a46 -Homepage: https://twitter.com/ijulioverne -Description: Use Bluetooth HFP Headset in Apps like BT Headphones -Name: HeadsetBTSound -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.headsetbtsound - -Package: com.julioverne.heysiri -Architecture: iphoneos-arm -Version: 0.0~beta6 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.heysiri_0.0~beta6_iphoneos-arm.deb -Size: 103366 -MD5sum: ad8ca967a19b89099250563747e3cee8 -SHA1: 02f617a51c7bca6fa03b8b5b38f9b06a532cf709 -SHA256: e125931b0c6ae607be50ea4bbd22b724b51b7804942a62b1baf3b7caae9f7984 -SHA512: e5c29093e97d75890ce1ef46fd068e158d82832b02ff6fbf63e408f0cc972e7cb96c26414fbdb4d9e72cd864a018f8c1c2cd8dbd48287912ab181612d445af73 -Homepage: https://twitter.com/ijulioverne -Description: Hey Siri While Not Charging -Name: HeySiri -Author: julioverne -Icon: file:///Library/PreferenceBundles/HeySiriSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.heysiri - -Package: com.julioverne.hold2speak11 -Architecture: iphoneos-arm -Version: 1.3a -Section: Tweaks -Maintainer: Julio -Depends: firmware (>= 7.0), mobilesubstrate -Conflicts: isklikas.hold2speak -Filename: ./debfiles/com.julioverne.hold2speak11_1.3a_iphoneos-arm.deb -Size: 15928 -MD5sum: d165f98888965fa0625b27964917a4a7 -SHA1: efceecb6faee8742875d9d860673d60aac56850d -SHA256: 633d5a832a2d3a618779d0d753bf0476820393c48a67b4ef994ea6982558e268 -SHA512: 0ac111e15c7b4133bebdd0fe962ed8adce506ebec9113a29abadb580f9087ea22ce99f0e18f83645a43f1a82cf49857cecaa8fe71e1413931a82738b52151ea7 -Description: answer your calls, while activating your speaker. -Name: Hold2Speak (iOS 11) -Author: isklikas, julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.hold2speak11 - -Package: com.julioverne.hotspotting -Architecture: iphoneos-arm -Version: 0.0~beta2 -Section: Addons (Flipswitch) -Maintainer: Julio -Depends: mobilesubstrate, com.a3tweaks.flipswitch -Filename: ./debfiles/com.julioverne.hotspotting_0.0~beta2_iphoneos-arm.deb -Size: 16612 -MD5sum: 66374ec7b0da04ab92fa8f26f7a6858a -SHA1: 810cad627cc354dae0a43693ba464ae68b30317d -SHA256: b4c38c62a975859c96a32be3d7405102de7fab5377652e12eaf82cd4a8b88d7f -SHA512: 3fb82a0871edff3a423c20deb7761edee6e84f202b106c3c9bf0af71bf446be9b6bdf1a054fa5a7df02158c5d38883625e56d6c954f9af2dde0516d8ba98b812 -Homepage: https://twitter.com/ijulioverne -Description: Hotspot Switch Enhanced -Name: Hotspotting -Author: julioverne -Icon: file:///Library/PreferenceBundles/HotspottingSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.hotspotting - -Package: com.julioverne.hsbcbypass -Architecture: iphoneos-arm -Version: 0.3b -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.hsbcbypass_0.3b_iphoneos-arm.deb -Size: 20862 -MD5sum: 7d4a611f7b37f755e96d8139cdbcb764 -SHA1: 92cc050f2722be69bdc5be1589114db3251af1c1 -SHA256: 6f3d131c7fa495029740dd34db4bab11a0d0eb9f5d527465d6d94b18bc70d2ef -SHA512: 9e79a5b54c8e5acc178f7b9b80798efb82c061d4e9e36aaca75055b6325fa8b0c3eb1c1a9db46aea3af625ee088d7ea1fc420543d9063b97a21405e967f56899 -Homepage: https://twitter.com/ijulioverne -Description: Jailbreak Detection Bypass for HSBC HK/UK/France Banking App. -Name: HSBC Bypass -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.hsbcbypass - -Package: com.julioverne.igsaver -Architecture: iphoneos-arm -Version: 0.1~beta2 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.igsaver_0.1~beta2_iphoneos-arm.deb -Size: 252312 -MD5sum: d4b45642a9a468ee3dc42d1697a2ae18 -SHA1: e19a05956785a863da3acf050368a2c9ebda7f53 -SHA256: d8896b3e02b1cd72ab8e2cb694aaa68c0247fc1a7dbc632d22453017724f4c78 -SHA512: bb9b750f307b81220a7786c95809da8eee85bbd87d2be02edd6f569c4cd73729dc82f1912a83a2903ea969586c9adf1a6beea07462b8df332bf07a071010234d -Homepage: https://twitter.com/ijulioverne -Description: Instagram Media Saver -Name: IGSaver -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.igsaver - -Package: com.julioverne.illlooklater11 -Architecture: iphoneos-arm -Version: 2.0-2 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader, applist, firmware (>= 7.0) -Conflicts: com.N104.IllLookLater -Filename: ./debfiles/com.julioverne.illlooklater11_2.0-2_iphoneos-arm.deb -Size: 63906 -MD5sum: 28ebae564521aa6b50d5df8eb67779da -SHA1: 8cf7e991bf23fb79f8295acdf7ccd5c72ba3e604 -SHA256: 9465193ff201e28fa6a178bdf3a52b9aa8ff3ce284c251c4d2d21d2cd702fd69 -SHA512: b27f40d94d9e5276b73989f4114d51b5c75fe1dab89838e827e216b435de46447a4a57ab4e22a5f6e8ff6de92d28d2b9dfdb51caee854a6d2070d409c5f6427e -Description: Look at notifications when YOU want to! -Name: IllLookLater (iOS 11) -Author: N104, julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.illlooklater11 - -Package: com.julioverne.intejb -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.intejb_0.0~beta1_iphoneos-arm.deb -Size: 49912 -MD5sum: bbccf4ba4e3e6c3761ecc904430a70a6 -SHA1: e5b89421c569884b21e2cfea9f88ece2ff58e5b9 -SHA256: fdd4f91507553ad4588e3e4aa74164f084b13314ceedbf82c916d869c2d0e38e -SHA512: 9ad883c0adff37336a35c669b76b824ab49e415a7d92bafac7b0174cd910967e834976130c1ad8a5de7eae4b220140b832bebd2c95b04562d9dd3b591683207e -Homepage: https://twitter.com/ijulioverne -Description: Bypass Inter Jailbreak Detection -Name: InteJB -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.intejb - -Package: com.julioverne.jailprotect -Architecture: iphoneos-arm -Version: 0.0~beta4a -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.jailprotect_0.0~beta4a_iphoneos-arm.deb -Size: 53144 -MD5sum: a65c79076e6d0cb5e0d20e2d0d23d0cc -SHA1: ca99c1526ba4cb74bf8b2a84fbdd9519e444a8bf -SHA256: c458e3bdf17240241ae7094e050de40826aa10af2afd19f23b1f0e4a1c859959 -SHA512: 31aa043a0a99a1b3df030416a7df2c02c88fc58f315008c65ce9ff90095117e9eec7bd0e88be55c2e1790a05a03f4770ecc15c42e22339c57c7238ee9dfb95bd -Homepage: https://twitter.com/ijulioverne -Description: No Substrate Mode Alternative -Name: JailProtect -Author: julioverne -Icon: file:///Library/PreferenceBundles/JailProtectSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.jailprotect - -Package: com.julioverne.jbme10xwebclip -Architecture: iphoneos-arm -Version: 0.1 -Section: Utilities -Maintainer: Julio -Filename: ./debfiles/com.julioverne.jbme10xwebclip_0.1_iphoneos-arm.deb -Size: 1191694 -MD5sum: bd74df3a0b7c5687a0f781c7032281ee -SHA1: 09fd8f507937075fe8a0a521c649d25eb1c469e9 -SHA256: ae12191f3d1f97d187e9de768ac06d25c40bd59126f646f4de908f284cd8b4c4 -SHA512: 2cf0e059a457fec982b0431df6404176eb4a0ebf3c72df04604846e103d55a914042564de54b324a7b6137404504cdf3cbc6517430a54eb7d9642bf42dda9c7a -Homepage: https://twitter.com/ijulioverne -Description: Re-Active iOS 10.x Jailbreak Offline, Install totally-not.spyware.lol 10.x Webclip Profile 100% Offline. -Name: JBMe 10.x Webclip -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.jbme10xwebclip - -Package: com.julioverne.jbme93xwebclip -Architecture: iphoneos-arm -Version: 0.1 -Section: Utilities -Maintainer: Julio -Filename: ./debfiles/com.julioverne.jbme93xwebclip_0.1_iphoneos-arm.deb -Size: 371648 -MD5sum: 91aca8bea0fdfea194c69acc2b61d69a -SHA1: 3bb0d62279b3684fbf78ca02d007159785742934 -SHA256: 8a3b166a81f9693c18caeb5c682ea48dabb683988343d2e54a5e596f34c7e4fb -SHA512: 9355bd5e11bfe61a5b38920d57e0c9d340c5a1a8f837fafbe545567d96073ec76d04496a4a2bfbb5286bbe678c6a1e1fd6c8b3bfb1eb9aeaaa946e5747aff4bb -Homepage: https://twitter.com/ijulioverne -Description: Re-Active Pangu 9.3.x Jailbreak Offline, Install JailbreakMe 9.3.x Webclip Profile 100% Offline. -Name: JBMe 9.3.x Webclip -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.jbme93xwebclip - -Package: com.julioverne.kb2change -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.kb2change_0.0~beta1_iphoneos-arm.deb -Size: 5532 -MD5sum: 9b6dd893e7664c15cee0c1cc4a155128 -SHA1: c19feda7cd9489a718817e82ff9760b6bb9f9c35 -SHA256: 610e11d1bbdc40066ad4293e363c6d30761715c6c90d8e9d1acddfe6127a0ee2 -SHA512: 18fdb33a67c0867dd9f6419dedc53daef896a7a156e9815d36a393a887d07732a894fa5ee7164d6da3a03a78eb15271611df6cd4f4868fdc52fe9bde58a68a62 -Homepage: https://twitter.com/ijulioverne -Description: Switch Between First 2 Keyboards -Name: KB2Change -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.kb2change - -Package: com.julioverne.kbmover -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.kbmover_0.0~beta1_iphoneos-arm.deb -Size: 20454 -MD5sum: e58b117cac64eb922570ae360ea2a4b7 -SHA1: f9342c4028261ce12d2599342f4b2ac476a8e159 -SHA256: abcbc5244a70a3e976d689a6aa31b44c64114cce82574eb9fa0ee58da3a8b35c -SHA512: 839623e73ce36a8e5117125852e9f0071b9151015e107830ca9d8c0432b99b81491d3aaedfaa82cad68187018ed3d940fca5db428eb5a50289b7312d044bb0ed -Homepage: https://twitter.com/ijulioverne -Description: Move your Keyboard on Screen -Name: KBMover -Author: julioverne -Icon: file:///Library/PreferenceBundles/KBMover.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.kbmover - -Package: com.julioverne.keyswipe11 -Architecture: iphoneos-arm -Version: 1.0.2-3b -Section: Tweaks -Maintainer: Julio -Depends: firmware (>= 7.0), mobilesubstrate (>= 0.9.5000), preferenceloader -Conflicts: org.thebigboss.keyswipe -Filename: ./debfiles/com.julioverne.keyswipe11_1.0.2-3b_iphoneos-arm.deb -Size: 31834 -MD5sum: 845df25c4c641fece623ea6e3839b68c -SHA1: 4778e16a47b2b1b56303fac25ac589729ac4dd32 -SHA256: d563d41affba78d70c116b484cc05238e08934487450b12812e258944040a425 -SHA512: 9c546bbbefdaf5f76911a2f0c05c371776a4c7b3eab92f3871ce528f5a39156754fa4d7ad3e7aca03a309f6c47271d84ce0ee01a4e192d38c26eda10bcd91ae0 -Description: change keyboard by swiping up/down -Author: Delewhopper, julioverne -Name: KeySwipe (iOS 11) -dev: delewhopper -Icon: file:///Library/PreferenceLoader/Preferences/KeySwipe/KeySwipe.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.keyswipe11 - -Package: com.julioverne.liblinker -Architecture: iphoneos-arm -Version: 0.3 -Section: Development -Maintainer: Julio -Filename: ./debfiles/com.julioverne.liblinker_0.3_iphoneos-arm.deb -Size: 34032 -MD5sum: b3854e8aadf991f97033e532e4e4f001 -SHA1: 9627bb80e048298aefd795bc0a20bf2230dfc59c -SHA256: 86dba078a051588909026e11eebb00e6a0756fe4205d638e10eb2c3b033d8565 -SHA512: 4788e7e2c11f3a3dff79a693a2b55793a444664a25ecf014f0ab75738d132c3ce66a69bcb89aa6fa0f60e0509951ef9e7e939cbb1c6708381416755298b46063 -Homepage: https://twitter.com/ijulioverne -Description: link library in executable that's already compiled. type on terminal: liblinker [EXECUTABLE_PATH] [LIBRARY] -Name: liblinker -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.liblinker - -Package: com.julioverne.lockanim -Architecture: iphoneos-arm -Version: 0.0~beta4 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.lockanim_0.0~beta4_iphoneos-arm.deb -Size: 132474 -MD5sum: 4129a36b92c4419ad59042614511f134 -SHA1: ac0a9886fd80c47bcf5ea7d28eb788d7e6f6c7dc -SHA256: d2a40f1e9d519cd8529148471f3910b6bb9e5111622012ae54a4793fff4eef9e -SHA512: 18b04f7243e8b37bc2957d0b47d2501296faaf77230277bc9d8cdcfc79d3402531a9c6f4aa96f02d24fc37a88083d2c8c338d002313cb019802a22abc5107afa -Homepage: https://twitter.com/ijulioverne -Description: Lock Animations -Name: LockAnim -Author: julioverne -Icon: file:///Library/PreferenceBundles/LockAnimSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.lockanim - -Package: com.julioverne.lockdroid -Architecture: iphoneos-arm -Version: 0.0~beta8 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader, org.thebigboss.libcolorpicker -Filename: ./debfiles/com.julioverne.lockdroid_0.0~beta8_iphoneos-arm.deb -Size: 203958 -MD5sum: 6d677573236e21de6015fd6de7397650 -SHA1: 0a04657ca3ea3dd7fb3c74293dd4cf18ef11eadd -SHA256: 1d0d41cb70f9e337f772af280888ebb044c1640fd61a98aeb2de591b798590dc -SHA512: 2a4ecdd2a82c25d6abf70edd9cb153be6f4f3db0183e528f1132071961ee81120a76c80121ee4ea5a31b56f23feb25a12e26348d401434f0be988e1f2f95853c -Homepage: https://twitter.com/ijulioverne -Description: Android Lockscreen -Name: LockDroid -Author: julioverne -Icon: file:///Library/PreferenceBundles/LockDroid.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.lockdroid - -Package: com.julioverne.lockdroiddonuts -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Themes -Maintainer: Julio -Filename: ./debfiles/com.julioverne.lockdroiddonuts_0.0~beta1_iphoneos-arm.deb -Size: 178408 -MD5sum: 7064be3222df298b48f906702a521c19 -SHA1: e0836253a85bca5a56b63465de38ecf4db98ac01 -SHA256: 89f40089b8b36c494e0a2ca9aa501d937db1f8b7f252d7d089f163189c9cc42f -SHA512: 2ec1af0e207d0ba73f4e93e11224bdff74d161670f42aa7908a667b6dd6a61688cf4a4519480efe3412b7e0e9452a75086bbad14f19656cb9d85853cac365b51 -Homepage: https://twitter.com/ijulioverne -Description: Donuts Theme For LockDroid -Name: Donuts LockDroid -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.lockdroiddonuts - -Package: com.julioverne.lowerinstall -Architecture: iphoneos-arm -Version: 0.0~beta6 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.lowerinstall_0.0~beta6_iphoneos-arm.deb -Size: 94160 -MD5sum: 39a54683ff0f9fb0c2880cf393c87816 -SHA1: eafac690946057ec063f6a9d786950a9f092ea4e -SHA256: 0b641d287e8dfbbd00948de6cf85a6b18fb4f885f6e3b98ffb627b68388cf8c1 -SHA512: b36e8da8389be78568e7ac1d74e333e8d0e42a6a60149854a06ac752c28bb2dbe131859713495c90197487adf049148372df4071dd7590073452bc1073c2bcb4 -Homepage: https://twitter.com/ijulioverne -Description: Install Apps In Lower iOS Version -Name: LowerInstall -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.lowerinstall - -Package: com.julioverne.luxyverifyroll -Architecture: iphoneos-arm -Version: 0.0~beta2 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.luxyverifyroll_0.0~beta2_iphoneos-arm.deb -Size: 6742 -MD5sum: 602c59d8795291f124359acbb92a8fa3 -SHA1: 7d4d537fd912265f30abf4ebcee4ee8bb663485a -SHA256: 494c34447559a40938be39a7b2848282b6ff0776a64d1bad568c42b1a8da6f36 -SHA512: b10fb2feae4478ef6df0e4659267494722e9dc30084346f059c234e0d91ad03e03c625a646ee18de88f2157ddcfa1c1e4b36ed408ba339abac3d93f4ebeec318 -Homepage: https://twitter.com/ijulioverne -Description: Verify Account Photo via Camera Roll -Name: LuxyVerifyRoll -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.luxyverifyroll - -Package: com.julioverne.mcast -Architecture: iphoneos-arm -Version: 0.0~beta6 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.mcast_0.0~beta6_iphoneos-arm.deb -Size: 294092 -MD5sum: e44415e79f09d7c750a7e2db2f0a8e47 -SHA1: 5f0337c3e76c8f6a327bbf1b9818ed50e0dc98b3 -SHA256: 240b870090b8ae5b1b0faa8d7d7d36895ace552664dfb28524bca8e42903d996 -SHA512: 48c8fd4fb81d1eeebb6ac44b345310546238b04b78d4c79bf327714896da18ecf4f97fd00e0fcda588fac8c729279332a28b9d3e47aed4a38aa5997d530ecff0 -Homepage: https://twitter.com/ijulioverne -Description: Chromecast from Music App... Cast Music from Now Playing View. tested in Chromecast model 2014 -Name: mCast -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.mcast - -Package: com.julioverne.messagefile -Architecture: iphoneos-arm -Version: 0.0~beta3 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.messagefile_0.0~beta3_iphoneos-arm.deb -Size: 65436 -MD5sum: 5061dd3f3b009b5b5a04667f23de58ce -SHA1: c62b3e1cd84110c32a51e26490e290350be30ba7 -SHA256: fa076e4dd5b02a13789120fb5c1cdabb5ee9045f7fae4038933770f7ec746d7d -SHA512: a38e7921b414892caa689487b8f8cef8847bc41440eb3b5ef921011ec7687de14456cb51c95ca815bdf3e9b6193c4451875f0115006ea375f70c8e4bdfbcfc98 -Homepage: https://twitter.com/ijulioverne -Description: Message App Send Any Root Filesystem -Name: MessageFile -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.messagefile - -Package: com.julioverne.mibandalert -Architecture: iphoneos-arm -Version: 0.0.4 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, applist, preferenceloader -Conflicts: com.pigigaldi.mibandutility -Filename: ./debfiles/com.julioverne.mibandalert_0.0.4_iphoneos-arm.deb -Size: 89280 -MD5sum: 53d680050a84ddf9b88cc562c28c75b5 -SHA1: 39b883eb727d01b43c1edd41cc4015513c33d335 -SHA256: 5600370ba3d99e8f2630c6832df29f412f83a1f0e61cb8cad46b6cb442cd017c -SHA512: 32b519d24c85c287fe3cec5c11f4a23942fa24c1d3409875545c6bbebcc401458c43f25d9ecd9f64aca568125b1c7000b91564c66ae26b7869ede9ef5c9ec511 -Homepage: https://twitter.com/ijulioverne -Description: System Notification XiaoMi Mi Band for iOS. -Name: MiBand Alert -Author: julioverne -Icon: file:///Library/PreferenceBundles/MiBandAlertSettings.bundle/MiBandAlert@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.mibandalert - -Package: com.julioverne.mimport -Architecture: iphoneos-arm -Version: 0.0~beta40 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, unzip, unrar -Filename: ./debfiles/com.julioverne.mimport_0.0~beta40_iphoneos-arm.deb -Size: 1495760 -MD5sum: 577986fe71b6fb188b31a0e4ceb257ed -SHA1: 38af4bac2f9829c274b1d9dd9385b17752cd46b7 -SHA256: 34133d611240b7ccbc757a47740bd225a5a5746cd6ac342d9ccd8eb55e62292d -SHA512: 97291ca151235e6b1b9422d288d20a780258249885edd8a2589e578f39e89e270b54c51ad7481489b817e289bebcdea36c91215fb621f6cb4d2cb10f1f641fcc -Homepage: https://twitter.com/ijulioverne -Description: Media Importer Directly From Music App -Name: MImport -Author: julioverne -Icon: file:///Library/PreferenceBundles/MImport.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.mimport - -Package: com.julioverne.modernxinoblur -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.modernxinoblur_0.0~beta1_iphoneos-arm.deb -Size: 4672 -MD5sum: 858c47627b54358cc115358cd985680b -SHA1: 5831041a8014080a2b33b88c4472d29f8791de32 -SHA256: ef7de4df0324b53d5591c2e38cc4ec9df2458381584df0f2d0ef700e980ed197 -SHA512: 2f8026472df05d92ec4f3bb1ac57a9d4d024d298eaaa915ec231352b6f5fc9c484831d0dea9d66f2b030b873412e62508c2923d9e3007d53b90417612a68eefd -Homepage: https://twitter.com/ijulioverne -Description: Remove Blur in ModernXI -Name: ModernXINoBlur -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.modernxinoblur - -Package: com.julioverne.mpscale -Architecture: iphoneos-arm -Version: 0.0~beta3b -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.mpscale_0.0~beta3b_iphoneos-arm.deb -Size: 17732 -MD5sum: 2bbb6e698f599e6071b70c5fd0f609c2 -SHA1: b203e8afcd5da818812c084671a78ce7c9f11e33 -SHA256: 8f4e336cc77f6ab3cbf9aac502402be53c8e4eae2021cd35333dfcf4b10880b4 -SHA512: 1df6b7348877c85363681f0bf5aafa9f34e15a1bcd04a3b0fcc554b7bcc8106075ca6ffd3c5ecd11b17a0996cb3c788b44cbaf3693e2d7ec64c8373f7d663c03 -Description: Show Scale On Maps -Name: MPScale -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.mpscale - -Package: com.julioverne.mshuffle -Architecture: iphoneos-arm -Version: 0.0~beta4 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.mshuffle_0.0~beta4_iphoneos-arm.deb -Size: 36334 -MD5sum: f08d6d646cb5a62a4f367b931fab085c -SHA1: 957f09b8000f338fb881ff68cdbcaacb38c1ff7f -SHA256: 8368b6ce46aa78a839d8e52a143659222641b2983264d233b9abb549673b386d -SHA512: 66eeb57da25d5e04ca4a419e1132be49153dc5cf4b62d4497faf24f1317f849eeffd3325f074290888e9ec9224c1a691e2c9b6bc99eadc9dc7f2bf83d4e3b13f -Homepage: https://twitter.com/ijulioverne -Description: Music Album End Playing Hit Play To Shuffle.. Music App -Name: MShuffle -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.mshuffle - -Package: com.julioverne.musicsection -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.musicsection_0.0~beta1_iphoneos-arm.deb -Size: 5282 -MD5sum: 51289d81642b741f80c693e0a45ecf4d -SHA1: 0408f0e16a14098a037b0859b7a36ba56a8c3de4 -SHA256: 57dd5d157b60d417b1b457f757eeea09781e0e4eebbcd5e29b03e0b3cd0a61ae -SHA512: 4af6f25089d793d1a3f87d4b7761e3014a48cee4c78708df0497b2094836a8cfc2c8c7bd23ecce45137f13af875dd21763ace69d574e619580d8b21eb295a2ad -Homepage: https://twitter.com/ijulioverne -Description: Open Music App On Music List Section -Name: MusicSection -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.musicsection - -Package: com.julioverne.musicv -Architecture: iphoneos-arm -Version: 0.0~beta2-0 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.musicv_0.0~beta2-0_iphoneos-arm.deb -Size: 30498 -MD5sum: 793119c3db76f3dfe444f013461bb3be -SHA1: b471cde2d241c7ca75bcbe3c52db8def1695de9a -SHA256: 878f0eff9f1d6184df79f809870523ce3612584e4331cdaa3d87eca333454d8f -SHA512: 17fc3c7e364da7942e0c7c6d83e0889df1c93bdb28a9c6dfc9c843371a0ae34f707056886e597ded9ad95a1676a79ae22db0d3130526d9ad35aea4dbc61cab50 -Homepage: https://twitter.com/ijulioverne -Description: Better Now Playing View in Music App -Name: MusicV -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.musicv - -Package: com.julioverne.musilyric -Architecture: iphoneos-arm -Version: 0.5~beta8b -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.musilyric_0.5~beta8b_iphoneos-arm.deb -Size: 120330 -MD5sum: 8562c8295ef7dc7ab9474bddedc66793 -SHA1: 3455e42c59246e7b9c6b7a38c88e2f0caedadcbc -SHA256: 7cb9f2e2039c381b8436d59e78f4f23567d18e18b4246c08e24fec0f617f3386 -SHA512: d41e1763395fc3d4605df7d7870b160d1ded1655df66800e8fa3429e25c38b1debe01fdfffe792b5968963b4d5d3bbf2e05dad037f95f4b6c6a69dc38b5cc974 -Homepage: https://twitter.com/ijulioverne -Description: Best Lyrics Music -Name: MusiLyric -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.musilyric - -Package: com.julioverne.nbkjb -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.nbkjb_0.0~beta1_iphoneos-arm.deb -Size: 29660 -MD5sum: af4a39b5b4d3e405b515b6a6874d23aa -SHA1: 52bd4e274aad9dc263a671f8c55ae12f9d9e7d9e -SHA256: 92aaf35859dbcc69466217be692ad44dcac4bb91e6999757f55c464d133addd5 -SHA512: 82188944f1a0388e162d81512bb9d98106127def9efed6af87dd9b3cb35b978d867422c1393d004da02a323b71e280df42928024314b39aad31e473b9b95170c -Homepage: https://twitter.com/ijulioverne -Description: Bypass NBK Jailbreak Detection -Name: NBKJB -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.nbkjb - -Package: com.julioverne.ncgroup -Architecture: iphoneos-arm -Version: 0.0~beta11 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.ncgroup_0.0~beta11_iphoneos-arm.deb -Size: 62898 -MD5sum: 69d03874e07a95bd40919b4fc0324d6d -SHA1: 19d09344064c1ef4541fa34ce93021214d6a8a4d -SHA256: 6d01cf699a858e7fc5ead0ffe6f5f78768844bc222dfff5b057ebfb3c7548b0b -SHA512: eee60088b59dae8e46b91e71281d2cec17c57fe2903b25532efad7e852233e0bc3ad453b638200cedfdc3bdc87a02b2faed6ae9edd203511114b3251953dee8c -Homepage: https://twitter.com/ijulioverne -Description: Group Notification Center items -Name: NCGroup -Author: julioverne -Icon: file:///Library/PreferenceBundles/NCGroup.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.ncgroup - -Package: com.julioverne.noexinsta -Architecture: iphoneos-arm -Version: 0.0~beta1a -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.noexinsta_0.0~beta1a_iphoneos-arm.deb -Size: 4536 -MD5sum: 6b688ac3e6fa3d235a85bb8423491d1f -SHA1: 7baa62ff8b587b871ae93b137a3fb1ccffd7570a -SHA256: b694e98584f52513d2f727ac4a5aa8d45f5d6967538ca5e8bd1cc3c1bb6abad6 -SHA512: 4e9e8d8b9c42f4f19f41dac3e672c67dcfa33200698612357c0d1a96f4a224c991886727aad559a740b57ec6012240c539c25a9d5f4350227d726e5f91aba2ce -Homepage: https://twitter.com/ijulioverne -Description: Hide Explore Section In Instagram -Name: NoExInsta -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.noexinsta - -Package: com.julioverne.nonceset -Architecture: iphoneos-arm -Version: 0.4 -Section: Utilities -Maintainer: Julio -Filename: ./debfiles/com.julioverne.nonceset_0.4_iphoneos-arm.deb -Size: 79710 -MD5sum: afa57f7512659d52e9cb4a13846f2b30 -SHA1: ef219a0235b12f5c80ea8be6d955debc2981dec0 -SHA256: 44c944e369bb6c8f5decea9da51136cde37f3149b6281e53f1dbe9fb869650b7 -SHA512: 8f0142cfbbc6f492e19261308a8ae9a6645edc128639f93f9926418df76ec7e990f4886ab43ff6683bdfbba408cc9a5018ca686ea7e52c824e2930acddb58f7e -Homepage: https://twitter.com/ijulioverne -Description: Manage boot-nonce easy. -Name: NonceSet -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.nonceset - -Package: com.julioverne.ntspeed -Architecture: iphoneos-arm -Version: 0.2~beta9 -Section: Tweaks -Maintainer: Julio -Depends: firmware (>= 6.0), mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.ntspeed_0.2~beta9_iphoneos-arm.deb -Size: 121846 -MD5sum: 7f1d387678cb6d59f0d5eeeb26e31415 -SHA1: f30ea72198fc8b59bdc515f5cac9c1e8e040f36a -SHA256: b4313cd5fd32c04ac66c36531bad62938c7cff1e89989b1dadd6d21bd8e20bfc -SHA512: 517f14dbd64538d13c0d120e9cb7896c8d2dfe455d56530daf6bfe54d1f92fc01b79ba41d6eb5aeeeb667803436a5830611fe4caac7fe39aaf2c8c5b261e856c -Homepage: https://twitter.com/ijulioverne -Description: See Active Traffic Network Speed -Name: NtSpeed -Author: julioverne -Icon: file:///Library/PreferenceBundles/NtSpeedSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.ntspeed - -Package: com.julioverne.otablocker -Architecture: iphoneos-arm -Version: 0.2a -Section: Utilities -Maintainer: Julio -Filename: ./debfiles/com.julioverne.otablocker_0.2a_iphoneos-arm.deb -Size: 5756 -MD5sum: adeab5d55be6bf517a7be89de8e9d621 -SHA1: d747907fb4aed89da80e1681773424e8fef24f51 -SHA256: 725223e5b2e24a5d92f50b6786026f8c0a10b6e424e394e6cc383493ccc1344f -SHA512: c0c4ecfd2e3fbe3c76e19077ab4afd0191625b5d1bea2c26553b325befc6fae605f2e45509602b8e941812a689876960eee5127fd5e9bb942d72ee9e9e080f3c -Homepage: https://twitter.com/ijulioverne -Description: Block iOS OTA Updates -Name: OTABlocker -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.otablocker - -Package: com.julioverne.phonescroll -Architecture: iphoneos-arm -Version: 0.0~beta2a -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.phonescroll_0.0~beta2a_iphoneos-arm.deb -Size: 27910 -MD5sum: 598a396fc8a5ab5ea02ec11cb2374c65 -SHA1: 3f6d9ad018f1e294cc11e30b5bd9b48a67c9f1db -SHA256: a49d9433613eb76ff3739e5d4409ca323acf380d89a31514f4504a03a6688760 -SHA512: bfc4a134eb69089229492cb93d55d3027756917b49c9e523b3bfe05dcdd4e2b504b57a4329e72ada647b9165353979854888185d333df156831cebc0330b4282 -Homepage: https://twitter.com/ijulioverne -Description: Tap In Selected Tap Bar For Scroll To Top -Name: PhoneScroll -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.phonescroll - -Package: com.julioverne.picjb -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.picjb_0.0~beta1_iphoneos-arm.deb -Size: 49586 -MD5sum: af590149c09d254bd41b897c2dfc4d43 -SHA1: 31384a81f5e99f2d84f5b7ed33e5c3c83d645ccb -SHA256: 38153595edbb1f28c0e2ebcd8c8911065734f6d8807e902e8b5b3f96970559a7 -SHA512: cba79b4febcba5149aa7b27ad198ee99b2679631c64076ddf0910db1326b70e8bf11f336f17368d11f8d99b003a6433d801c1109f61dc01a1cd2878ec8a9d29b -Homepage: https://twitter.com/ijulioverne -Description: Bypass PicPay Jailbreak Detection -Name: PicJB -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.picjb - -Package: com.julioverne.pimport -Architecture: iphoneos-arm -Version: 0.0~beta5 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, firmware (>= 6.0) -Filename: ./debfiles/com.julioverne.pimport_0.0~beta5_iphoneos-arm.deb -Size: 783058 -MD5sum: 2fa165f5c5394cd4a1f981041da25d23 -SHA1: 7b0e6f8907595a3953accec9fae009b3cf1c405e -SHA256: 651cf3bce8b71f93644d7c2c6a8ad65e6d9146b45deaa3f84cbcd4c6c26660d8 -SHA512: 019416119a7d3a1f95b519ff9b6f61776478ae031b14896a9f10d7dcc022b244976972f86a1556f65d13501d32564de80379ded7e53d546099e4f8851d9444f7 -Homepage: https://twitter.com/ijulioverne -Description: Photo Importer Directly From Photo App -Name: PImport -Author: julioverne -Icon: file:///Library/PreferenceBundles/PImport.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.pimport - -Package: com.julioverne.pipenabler -Architecture: iphoneos-arm -Version: 0.3 -Section: Tweaks -Maintainer: Julio -Depends: firmware (>= 9.0), mobilesubstrate -Filename: ./debfiles/com.julioverne.pipenabler_0.3_iphoneos-arm.deb -Size: 93772 -MD5sum: 6c39835af6567056fc9b47d11df0b478 -SHA1: 28dc68fde4ed0638c615eaabd931a9c9db8f628c -SHA256: 17673e2afb843e3d2dd1c162946cda8f9bb67a300a375330e4b776bbcd363f66 -SHA512: 38dc6ced0df2c3aa46c55677d467c590cf783a8dd1a50ab5c3d8b7c205b2dd8693629b532c06d62dfa1f44c3f5df23b9ca2ad3fd34671071c7ee269f4d585572 -Homepage: https://twitter.com/ijulioverne -Description: Enabler Picture In Picture Feature -Name: PIPEnabler -Author: julioverne -Icon: file:///Library/PreferenceBundles/PIPEnablerSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.pipenabler - -Package: com.julioverne.pipsize -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.pipsize_0.0~beta1_iphoneos-arm.deb -Size: 23116 -MD5sum: dcd56c60d6443a161c657e565e965eaf -SHA1: f20cfd610206d28d6827826b6f555c44a811d2ee -SHA256: 9ec4564988cf31d9fbeaa27cafa607a96280ac1760e9b1ccd64ab14308f16ff1 -SHA512: 4723ca97b4de76d816981a47d5d40142759a01d23ab5f3163c6becbcb2ddf1d8c6c036779867770b596c198f9917fd3c9fefca19108e5a347b04c6606f0d2817 -Homepage: https://twitter.com/ijulioverne -Description: Resize Picture In Picture in any size -Name: PIPSize -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.pipsize - -Package: com.julioverne.quickunlock11 -Architecture: iphoneos-arm -Version: 1.0 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Conflicts: com.phillipt.quickunlock -Filename: ./debfiles/com.julioverne.quickunlock11_1.0_iphoneos-arm.deb -Size: 7332 -MD5sum: 4f44fe66ad07525db453a5344200d7d9 -SHA1: c3886371cc89ae5a3aa85be81c31f9e307b18cb4 -SHA256: 9f1448d95b1fc2c7ce15c69eec5ec291a93436f72718a2ed4686a7be15535232 -SHA512: 9c8220ee00ad39d486672ae76b7f3110d08e5c699efcd36dd701953162accca86200c2a9ee6289ea8a35c80b67becafd497fe9106f7c49135a3ef1dcf4635259 -Description: Skip lockscreen if no notifications -Author: Phillip Tennen, julioverne -Name: QuickUnlock (iOS 11) -dev: phillipt -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.quickunlock11 - -Package: com.julioverne.raisetoanswer -Architecture: iphoneos-arm -Version: 1.1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Conflicts: com.mohammadag.raisetoanswer -Filename: ./debfiles/com.julioverne.raisetoanswer_1.1_iphoneos-arm.deb -Size: 29836 -MD5sum: 5284ae874e717688e540d581d6d8da15 -SHA1: a29f5d8f536c376b5ad17ceb1596a929de32dc97 -SHA256: 63f6b6f96b3133a05977adc687fb4b6d73ada9c07ab0e2f16f2eb1354ded9330 -SHA512: 8690b89e417200782d935cf9dd23d5faab6500d8c9a7ba28068a3530ae538dc7ffe553dda26ce2332ea2e71f57f1ff3a81f9ca0adffede0685c49458892a5ecc -Description: Raise phone to answer phone calls -Name: RaiseToAnswer (iOS 11) -Author: MohammadAG, julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.raisetoanswer -dev: mohammadag - -Package: com.julioverne.sbcard -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.sbcard_0.0~beta1_iphoneos-arm.deb -Size: 5764 -MD5sum: fb7b0dee5408ff645eb985d0c2424db5 -SHA1: 3dbe38fc0a107106c0977597929260b986a08f72 -SHA256: 5a0898e5f2b516503741b88d27e5e248fff96558371c2b136bc56d755dde0590 -SHA512: 93949805380a31676f22281a10e5fcba91df3201d1950f74c908ef9ff2ef70c523af86e3dec5d8080bfec6af058a8c5a4be51892afb44388e61bb0b9653fe8f4 -Homepage: https://twitter.com/ijulioverne -Description: Add HomeScreen Card to Switcher, swipe up to close all apps. -Name: SBCard -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.sbcard - -Package: com.julioverne.scloudinfo -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.scloudinfo_0.0~beta1_iphoneos-arm.deb -Size: 13560 -MD5sum: a25828fedfc6a324effaa97f35d0ebc1 -SHA1: 27d87ab0ad6a06a0d4c07f243023596f6836958c -SHA256: 9ec82eae629c9757a07cd0586deb454124054865db537f3efc4c336978629784 -SHA512: 69ff4870c2c18a8e2aaa4bb88c46e661bae1b36de3fefe47df9c8f808af6428ae29ca3639fcc14da64d9d53ce75522af28d6e8f5e33aef75f766cc47844b9803 -Homepage: https://twitter.com/ijulioverne -Description: SoundCloud Track Description Info -Name: SCloudInfo -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.scloudinfo - -Package: com.julioverne.screendump13 -Architecture: iphoneos-arm -Version: 0.0.3d -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Conflicts: com.cosmosgenius.screendump -Filename: ./debfiles/com.julioverne.screendump13_0.0.3d_iphoneos-arm.deb -Size: 1540656 -MD5sum: 8f5311fe5327dba3ad0847dd63c2a344 -SHA1: 6f11e3f390800da668311068e3098fd42d92dd6d -SHA256: d6dc80cea9ff395025f7997693804b4b9f6eb77bc9dce9aa56e53c55c175afc9 -SHA512: e87ee108aa5de5ca21af378ec78938b4cf786790a37ce1ad62db40cbc7b0d0badf533d266609c57bc59c0b048b235ce466e99ba8d808f81e3680d1a133773677 -Description: VNC for ios -Name: screendump (iOS 13) -Author: julioverne, Sharat M R -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.screendump13 -Icon: file:///Library/PreferenceLoader/Preferences/screendump/ScreenDump@2x.png - -Package: com.julioverne.sftpenabler -Architecture: iphoneos-arm -Version: 0.1 -Section: Networking -Maintainer: Julio -Depends: openssl, firmware (>> 9) -Conflicts: openssh -Filename: ./debfiles/com.julioverne.sftpenabler_0.1_iphoneos-arm.deb -Size: 34288 -MD5sum: b8add291582483513ea1fc5ea2e0697e -SHA1: 88e4fc8a53970a57a98d6b7e865d0f3d118f558d -SHA256: 9bd61fcaa1562c2d92565ce6a6a20009870380366e5a5d0de2963959f437f762 -SHA512: de79cd14a7395fa6c13111db1b10260c7cbb592d96bf43963c5f1ba60efc9fd6794eb43ba9a14e48ec14e9263e48e224b5eb75bafd599edade69cb5652a25012 -Homepage: https://twitter.com/ijulioverne -Description: SFTP connection for SSH Dropbear in iOS 10 -Name: SFTPEnabler -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.sftpenabler - -Package: com.julioverne.signaldbm -Architecture: iphoneos-arm -Version: 0.0~beta3 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.signaldbm_0.0~beta3_iphoneos-arm.deb -Size: 121372 -MD5sum: da243701a8f97cdd2141d81af02d6b12 -SHA1: 3fffa7e3691f1f186f75917d1609b8e7c64bf461 -SHA256: 3d2d70bc3eef3db2f555c3e3b2e81f50b98d18de5ecc0936a3e93bf3b1f44bc3 -SHA512: 321ccbba2de756715eae951401d98ef01923f8fef3265d10cf0737856442e5ed61761dc2c43ff17bb02f9a6dd8556cd1779fffba61856c62d2a834db7d302ec6 -Homepage: https://twitter.com/ijulioverne -Description: Replece Signal Bars with dBm level -Name: SignaldBm -Author: julioverne -Icon: file:///Library/PreferenceBundles/SignaldBmSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.signaldbm - -Package: com.julioverne.signalplane -Architecture: iphoneos-arm -Version: 0.0~beta3a -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader -Filename: ./debfiles/com.julioverne.signalplane_0.0~beta3a_iphoneos-arm.deb -Size: 52558 -MD5sum: 46a6b4282a2c19739ad637e1b5474484 -SHA1: a1d515a5e2cc3755f657e2e59013eb952615bb1f -SHA256: dfd3cc40e305f5253b59bd93862d9dd9e16cfbb70f089dafcb295693cd564c56 -SHA512: d556934c79b368d3fab677557b1b57beefe7775c09f24968b9fd0546c19b42d53d3e493ae14ee47785104774019de8149f50a551d1e9578dc7474fdf4f22ccf6 -Homepage: https://twitter.com/ijulioverne -Description: Plan For Low Signal -Name: SignalPlane -Author: julioverne -Icon: file:///Library/PreferenceBundles/SignalPlaneSettings.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.signalplane - -Package: com.julioverne.simulatetouch -Architecture: iphoneos-arm -Version: 0.7-17~beta5 -Section: Tweaks -Maintainer: Julio -Depends: firmware (>= 6.0) -Conflicts: kr.iolate.simulatetouch -Filename: ./debfiles/com.julioverne.simulatetouch_0.7-17~beta5_iphoneos-arm.deb -Size: 15800 -MD5sum: e3c333b4b9805f2c9b685deb1ee7a9a7 -SHA1: 765458cd6f4e409e2a8cfbcdeac078509378af9c -SHA256: e21bee99781dbd5c4eb902a7c6dfde9ad4de5bd2f02e529bc09f4f8c144a363b -SHA512: f0cfaa41eaaa73577bfdeaa84d0e97d0871cb1cc23440d4d5d9bf7d1e5c10dc467225365851bd29efa0552c0b7023676d7c0dc5552dd1c48b84d7fcc639f0699 -Description: Simulate fake touch and swipe. Support multi-touch -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.simulatetouch -Author: iolate, julioverne -Name: SimulateTouch -dev: iolate - -Package: com.julioverne.siriifpossible -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.siriifpossible_0.0~beta1_iphoneos-arm.deb -Size: 8746 -MD5sum: 027d1c5ace75dbbe1b3ad33675724b19 -SHA1: 76289cbbb0216ef5931c903c3ed0eec392dbba55 -SHA256: 5daf62bf0f990e390ed6d7419864fe91cfa34d0072374b9783b503980481ddc6 -SHA512: bd691a3e88d233e75fff8083f0f9699cee78deadb8b9f75715df77a10b2cf7c8ea1d0facd7d9af51d67fe046175a0094ba95a06d5e52683ca9d71eaa12929542 -Homepage: https://twitter.com/ijulioverne -Description: If Siri Unavailable Use Voice Control -Name: SiriIfPossible -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.siriifpossible - -Package: com.julioverne.slackhistory -Architecture: iphoneos-arm -Version: 0.1c -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.slackhistory_0.1c_iphoneos-arm.deb -Size: 15454 -MD5sum: 6c46655fac194eb91e7fc169be896fe7 -SHA1: bea187ad819c7f0c7a15649abdd84da0447c5cfe -SHA256: 97c729bda5152cf5a7ec36ae76a11b92ceeca68f786ccf2c699f0f3150c66a99 -SHA512: e45da0572221d9b9871172858217d5ead89ff68bc01b6173f14a06bcd8b403c53339c7f243be3f6f5b7b59ca15efbf054420279d0a3f92814b04aa5597739476 -Homepage: https://twitter.com/ijulioverne -Description: Slack See Edited Message History -Name: SlackHistory -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.slackhistory - -Package: com.julioverne.sslkillswitch2 -Architecture: iphoneos-arm -Version: 0.14c -Section: Tweaks -Maintainer: julioverne, Alban Diquet -Depends: mobilesubstrate -Conflicts: com.nablac0d3.sslkillswitch2 -Filename: ./debfiles/com.julioverne.sslkillswitch2_0.14c_iphoneos-arm.deb -Size: 39096 -MD5sum: 1e02e476bbda0d897f9626d582a97ee1 -SHA1: f75137de882befe7b3a4d5f66a95565869fa6bde -SHA256: 4afc9a1748140dee6c1347c445a7ca971b8f78eac5b8ecd71f7444cf5097a067 -SHA512: 6573944e770d08f2a519680ec0b29928c73b66b84a4d4fffdd3ad82b208286e0cd436c93f07e2cd48f7fe327a50c95e9aac7bcd880a788d878ee7012e765342f -Homepage: https://twitter.com/ijulioverne -Description: Blackbox tool to disable SSL certificate validation and pinning -Name: SSL Kill Switch 2 (iOS 13) -Author: julioverne, Alban Diquet -Icon: file:///Library/PreferenceLoader/Preferences/SSLKillSwitch.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.sslkillswitch2 - -Package: com.julioverne.tb280 -Architecture: iphoneos-arm -Version: 0.2 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.tb280_0.2_iphoneos-arm.deb -Size: 7046 -MD5sum: f5ba2f52d8e8808f6b728c6da33c58f1 -SHA1: 1773f978b748394259baf878d16e721caaddea6d -SHA256: 3b00ff8f217e09158912436aefc3ff83496d80e873d200730b7b2d545748e1c8 -SHA512: d300e9aefd0941e68a8b22ef9e56d57f1d91db96ef6c198242d8d1c501c5ad04b122d27f42c2ac615e0bc177f247960da2ea79152f6d5c6021227c5bf443fa01 -Homepage: https://twitter.com/ijulioverne -Description: Tweetbot 280 Character Enabler -Name: TB280 -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.tb280 - -Package: com.julioverne.trustdevalert -Architecture: iphoneos-arm -Version: 0.2a -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, firmware (>= 8.0) -Filename: ./debfiles/com.julioverne.trustdevalert_0.2a_iphoneos-arm.deb -Size: 16348 -MD5sum: de076a3b0a57b2627ce645e6b219837c -SHA1: 7474721ea73a8e5b2f749408f58e0749389a3624 -SHA256: 32f4b9f0f15313ef894a195f240b428107464d66ff29dbd6a9d78f594e43958b -SHA512: 27a61e4ae6d411de02de1bac2546f8544c4234c4ab881216223d5d350385237425714d5f5d086aaa71221b621fc8cfd3e25616ea030293bb3ab52d0cbaa6e66f -Homepage: https://twitter.com/ijulioverne -Description: Add Trust Button In Alert Of Free Developer Profile Not Trusted. -Name: trustDevAlert -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.trustdevalert - -Package: com.julioverne.tw280 -Architecture: iphoneos-arm -Version: 0.2 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.tw280_0.2_iphoneos-arm.deb -Size: 5890 -MD5sum: 8af5362af5f246a890e0579b3c5cc117 -SHA1: 069b351e57aa554f3f0115654a9e30da46396477 -SHA256: fc2ad263418381dce50d22ce3163d4236fe1b5d38c8ad321e7ee74901c19e183 -SHA512: b2343baf0923736934cc84e5ec8cf6a1635d639725b36d57f01cbd6dcaf6c7d4d4920f1a129882a2de21db295512fb692beee625f8e68404c376b067d7123a43 -Homepage: https://twitter.com/ijulioverne -Description: Twitter 280 Character Enabler -Name: TW280 -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.tw280 - -Package: com.julioverne.twslidetoblock -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.twslidetoblock_0.0~beta1_iphoneos-arm.deb -Size: 31128 -MD5sum: e9f3d4c9914baabfe8c26757cccdd1c6 -SHA1: a27163fd567d75fac325c2cc8610bdca558d7c7f -SHA256: 0461f89511525b5fed3ac2e47e92ee5bd81904e6e8b0e5924133eaca355951d1 -SHA512: 8fac866cb4b24ef4bc7d83c0e85f78c28a6ba10016533e8dac6162ed6530dad4ccc841b3682ae4ffbc54b7bb32983b76f99c015ceb09d1e65ab856c9e6d28180 -Description: Twitter Slide To Block/Mute in Liked/Rettweeted Section -Author: julioverne -Name: TWSlideToBlock -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.twslidetoblock - -Package: com.julioverne.uicachefix10 -Architecture: iphoneos-arm -Version: 0.1 -Section: Utilities -Maintainer: Julio -Depends: uikittools (= 1.1.12) -Filename: ./debfiles/com.julioverne.uicachefix10_0.1_iphoneos-arm.deb -Size: 758 -MD5sum: 8f2e2fb0267c453dc9171499a9c5a76f -SHA1: 4045ed3580ecec0aa8dd5aa64f1f259b9adffb24 -SHA256: 21ac886940f883f91e38c3bf359a922c8201f7384df0f34d66393d892ba0ab80 -SHA512: 5c7f1f789b8dc676fd612c27a4c6078722ae1ffd95d9019e76e8d2d4092cc3376191166b377e2220a027c2d79b0ddcd93b8e96544e2ef11456522f0c169f6361 -Homepage: https://twitter.com/ijulioverne -Description: Temp Fix uicache in iOS 10 by setting chmod 4755 in uicache and preventing Substrate loading intro uicache. -Name: uicache Fix -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.uicachefix10 - -Package: com.julioverne.upscale -Architecture: iphoneos-arm -Version: 0.0.1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Conflicts: com.bd452.upscale -Filename: ./debfiles/com.julioverne.upscale_0.0.1_iphoneos-arm.deb -Size: 19968 -MD5sum: 7a7f04ab7e187da6f4c6e264b10c4da8 -SHA1: a6be3de131109df942300a71709c760ad3e26025 -SHA256: f7455ad9ead4eaee6b970706b6b110fbe483ccee4f30c3c98bf0fd1e459ea2bf -SHA512: 9c5509ce4def94cb90c4348214d1b07fb41270a7eb84f41a905423653349e6dd6a411165766cfdf25fed423f6634fa04adc9861069459a4d2e9d5b70f4cf9a67 -Description: Change Device Resolution -Name: Upscale -Author: bd452, julioverne -Icon: file:///Library/PreferenceBundles/Upscale.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.upscale - -Package: com.julioverne.vwallpaper2os11 -Architecture: iphoneos-arm -Version: 0.5.0-3a -Section: Multimedia -Maintainer: Julio -Depends: mobilesubstrate (>= 0.9.5000), firmware (>= 10.0) -Conflicts: com.skrew.vwallpaper2os11, com.skrew.vwallpaper2os -Replaces: com.skrew.skrewcommon2, com.skrew.vwallpaper2os9, com.skrew.vwallpaper2os10 -Filename: ./debfiles/com.julioverne.vwallpaper2os11_0.5.0-3a_iphoneos-arm.deb -Size: 11336422 -MD5sum: 60d76949aa230642efcf7348112e2126 -SHA1: aec5efd09075ff92907ec2101cdc0fb791d3b514 -SHA256: f5d925f38d0fcf6b18a8081b8b6a6f8d4a37934d5d8c321679951ad812f38a4c -SHA512: 2f69a380fa24e11cfd1e99974ad39cf10aa639319cee26b22c9ada726123868d3eebc80db4de89e7d4d152b1e49ca6d071e3915e9350ab88710dac3b0cb7350c -Description: Add videos, video ringtones, cool effects (particles, 3D objects), HTML Widgets (...) on your Springboard and / or Away view. Bring your iPhone to life ! (Beta stage) -Name: vWallpaper 2 (iOS 11) -Author: skrew, julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.vwallpaper2os11 - -Package: com.julioverne.whilelotus -Architecture: iphoneos-arm -Version: 0.0~beta3 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.whilelotus_0.0~beta3_iphoneos-arm.deb -Size: 9220 -MD5sum: 80a5dbe40f38374694af798c3f7c0225 -SHA1: 9f4671fb51ef59f78311d077da5b1271d5d0ff43 -SHA256: 9b5eb03d442cea20995df5cee35a1435a318785709b581bc09ec4892b228e1db -SHA512: 21e64c9dc0add2bee44b0ba668977fcd803ce852a22a6378379e5789f595dd7be266ffc85f5a1272bbed7b8203471d0b5e545c5de45804defef5126daa1efadb -Homepage: https://twitter.com/ijulioverne -Description: Lotus Dark For Unthemed Icons -Name: WhileLotus -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.whilelotus - -Package: com.julioverne.widplayer -Architecture: iphoneos-arm -Version: 3.5.4 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate, preferenceloader, firmware (>= 7.0) -Filename: ./debfiles/com.julioverne.widplayer_3.5.4_iphoneos-arm.deb -Size: 136846 -MD5sum: 88145303364baaaaa0ba789a43e42380 -SHA1: db7008555ce81ac63d57d99879ff15272388abc6 -SHA256: 0747f7658105923e6ae53c43220d852d117a7635c9e25c4e1074ffb8d66338a8 -SHA512: 5ed7ca195c210ccf2c3d06fd72c462efce29b3d3924f6e1abf13ec56c4def9fd0cd3e7546df853fe4b5e613187300de73223b123b578a46ff3acfd3bb7e97c81 -Homepage: https://twitter.com/ijulioverne -Description: Music Widget In Screen -Name: WidPlayer -Author: julioverne -Icon: file:///Library/PreferenceBundles/WidPlayer.bundle/icon@2x.png -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.widplayer - -Package: com.julioverne.wishdia -Architecture: iphoneos-arm -Version: 0.0~beta1 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.wishdia_0.0~beta1_iphoneos-arm.deb -Size: 19072 -MD5sum: 1535b4d1170d091729a65cd74d60dc80 -SHA1: 6558be2c2cafae937794f48b2aedc7a4c6e65886 -SHA256: 3df0e22ce2c6892524e24ed2c22791b947c6a2ed3fb00dc24429e2256c791d03 -SHA512: e52ac9fb5236477f99191374e792f081c6ad3d4a118bcb15b3b6ae9e2237b5fe07dd267e9a16c20857aac481c848f86b83cfb917143575dc0dcb2199161c7ca3 -Homepage: https://twitter.com/ijulioverne -Description: Wish List For Cydia -Name: WishDia -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.wishdia - -Package: com.julioverne.ythdunlocker -Architecture: iphoneos-arm -Version: 0.0~beta1c -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.ythdunlocker_0.0~beta1c_iphoneos-arm.deb -Size: 22562 -MD5sum: 69ecc561c15596df4df95446670a055e -SHA1: 8d057e8f3dc3ef8f2a04350f9a1c3623dccd1808 -SHA256: 7b23972a488163425d1c6a27b1c74b13fcd2d2023a46cc96d256646f91c828de -SHA512: fc0bdf4f9fd6dfe65e4d714412c12f07083f66846f86c68b1b4741e4e66c1c48ba0b431e7bf73ce5fd644bbe4dbe324ca3555084224a77fe8ed602c47b9a5e27 -Homepage: https://twitter.com/ijulioverne -Description: Unlocks HD Videos in YouTube App -Name: YTHDUnlocker -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.ythdunlocker - -Package: com.julioverne.ytnoautoplay -Architecture: iphoneos-arm -Version: 0.0~beta2 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.ytnoautoplay_0.0~beta2_iphoneos-arm.deb -Size: 14060 -MD5sum: e2d71af373b358426297735547d12c4b -SHA1: 9be9f3634cae9e2cced2dd24ad00668c27f42877 -SHA256: 57abf4b5c40a377481448c3fcf20da80344c230baca69c5ce9277cbba5db9590 -SHA512: 70a2a8eeb875c7f5fab952526ad0f47848a50eb7fde6676ea1efb38aa770c3c232e7af9fc0afcc40ba7a7d31c9f80c7232b0d4aa96b98c7ee1931c2583e7ec64 -Homepage: https://twitter.com/ijulioverne -Description: YouTube Disable Autoplay Videos -Name: YTNoAutoPlay -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.ytnoautoplay - -Package: com.julioverne.zaddyverifyroll -Architecture: iphoneos-arm -Version: 0.0~beta2 -Section: Tweaks -Maintainer: Julio -Depends: mobilesubstrate -Filename: ./debfiles/com.julioverne.zaddyverifyroll_0.0~beta2_iphoneos-arm.deb -Size: 7152 -MD5sum: 72d5d1c65e632831d30bdb65b25a86d7 -SHA1: bbb49be8d8272a094034a35c612f8d9ac5ca2f7c -SHA256: ccb4c77887d8618feb86bdce960e5c3dc6c23c31717cee86cefe28b1add2b025 -SHA512: 27021abf6d73f9db73da43450f2aa949a674bb3bfd792757ebb302fbd51190339b39fc3969bd70078a977b79f6a99818a07263630a8b7fa9113e726283281aae -Homepage: https://twitter.com/ijulioverne -Description: Verify Account Photo via Camera Roll -Name: ZaddyVerifyRoll -Author: julioverne -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.zaddyverifyroll - diff --git a/Packages.bz2 b/Packages.bz2 deleted file mode 100644 index a1366baf8f0..00000000000 Binary files a/Packages.bz2 and /dev/null differ diff --git a/README-zh.md b/README-zh.md deleted file mode 100644 index ed3021e60b6..00000000000 --- a/README-zh.md +++ /dev/null @@ -1,106 +0,0 @@ -# [TeXt Theme](https://github.com/kitian616/jekyll-TeXt-theme) - -[![license](https://img.shields.io/github/license/kitian616/jekyll-TeXt-theme.svg)](https://github.com/kitian616/jekyll-TeXt-theme/blob/master/LICENSE) -[![Gem Version](https://img.shields.io/gem/v/jekyll-text-theme.svg)](https://github.com/kitian616/jekyll-TeXt-theme/releases) -[![Travis](https://img.shields.io/travis/kitian616/jekyll-TeXt-theme.svg)](https://travis-ci.org/kitian616/jekyll-TeXt-theme) -[![Tip Me via PayPal](https://img.shields.io/badge/PayPal-tip%20me-1462ab.svg?logo=paypal)](https://www.paypal.me/kitian616) -[![Tip Me via Bitcoin](https://img.shields.io/badge/Bitcoin-tip%20me-f7931a.svg?logo=bitcoin)](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/3Fkufxcw2xd8HnaRJBNK4ccdtkUDyyNu4V.jpg) - -![TeXt Theme](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/TeXt-home.jpg) - -![TeXt Theme Details](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/TeXt-layouts.png) - -TeXt 是针对个人或团队网站、博客、项目、文档等的一款高度可定制的 Jekyll 主题。它参考了 iOS 11 的风格,有大而突出的标题和圆润的按钮及卡片。 - -**[English](https://github.com/kitian616/jekyll-TeXt-theme/blob/master/README.md)** - -## 特性 - -- 响应式 -- HTML 语意化 -- 皮肤 -- 代码高亮主题 -- 国际化 -- 搜索 -- 目录 -- 作者(支持多个) -- 附加样式(提示,标签,图片,图标,按钮,栅格等) -- 扩展(音频,视频,幻灯片,在线示例) -- Markdown 增强([MathJax](https://www.mathjax.org/),[mermaid](https://mermaidjs.github.io/),[chartjs](http://www.chartjs.org/)) -- 分享([AddToAny](https://www.addtoany.com/),[AddThis](https://www.addthis.com/)) -- 评论([Disqus](https://disqus.com/),[Gitalk](https://gitalk.github.io/),[Valine](https://valine.js.org/en/)) -- 阅读量统计([LeanCloud](https://leancloud.cn/)) -- 站点统计([Google Analytics](https://analytics.google.com/analytics/web/)) -- RSS([jekyll-feed](https://github.com/jekyll/jekyll-feed)) - -## 皮肤 - -TeXt 内置有 6 套皮肤,你也可以定制自己的皮肤。 - -| `default` | `dark` | `forest` | -| --- | --- | --- | -| ![Default](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_default.jpg) | ![Dark](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_dark.jpg) | ![Forest](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_forest.jpg) | - -| `ocean` | `chocolate` | `orange` | -| --- | --- | --- | -| ![Ocean](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_ocean.jpg) | ![Chocolate](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_chocolate.jpg) | ![Orange](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_orange.jpg) | - -### 代码高亮主题 - -TeXt 使用 [Tomorrow](https://github.com/chriskempson/tomorrow-theme) 作为它的代码高亮主题。 - -| `tomorrow` | `tomorrow-night` | `tomorrow-night-eighties` | `tomorrow-night-blue` | `tomorrow-night-bright` | -| --- | --- | --- | --- | --- | -| ![Tomorrow](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow.png) | ![Tomorrow Night](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night.png) | ![Tomorrow Night Eighties](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night-eighties.png) | ![Tomorrow Night Blue](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night-blue.png) | ![Tomorrow Night Bright](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night-bright.png) | - -## 文档 - -### 开始 - -- [快速开始](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/quick-start) -- [从 1.x 升级到 2.x](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/update-from-1-to-2) - -### 定制 - -- [配置](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/configuration) -- [导航栏](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/navigation) -- [布局](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/layouts) -- [Logo 和 Favicon](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/logo-and-favicon) -- [作者](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/authors) -- [国际化](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/i18n) - -### 内容 - -- [撰写博客](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/writing-posts) -- [附加样式](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/additional-styles) -- [扩展](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/extensions) -- [Markdown 增强](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/markdown-enhancements) - -## 示例 - -| Name | Description | -| --- | --- | -| [Home](https://kitian616.github.io/jekyll-TeXt-theme/test/) | 列表页 | -| [Archive](https://kitian616.github.io/jekyll-TeXt-theme/archive.html) | 归档页 | -| [Layout Examples](https://kitian616.github.io/jekyll-TeXt-theme/samples.html) | 各种布局示例 | - -## 支持我 - -你的支持是我的动力。你可以通过以下方式支持我: - -- 给该项目点赞 🌟 -- 赞同[这个知乎回答](https://www.zhihu.com/question/20223939/answer/122596506) -- 关注我的 GitHub -- 打赏 - -| 微信支付 | 支付宝 | -| --- | --- | -| ![微信支付二维码](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/tip_wechat.jpg) | ![支付宝二维码](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/tip_alipay.jpg) | - -## 其他资源 - -在 *_includes/icon/social* 目录下有很多的社交产品图标,例如 Behance、Flickr、QQ、微信等,方便修改和使用。 - -## 协议 - -TeXt Theme 遵循 [MIT 协议](https://github.com/kitian616/jekyll-TeXt-theme/blob/master/LICENSE)。 diff --git a/README.md b/README.md deleted file mode 100644 index b29eb701254..00000000000 --- a/README.md +++ /dev/null @@ -1,89 +0,0 @@ -# [TeXt Theme](https://github.com/kitian616/jekyll-TeXt-theme) - -[![license](https://img.shields.io/github/license/kitian616/jekyll-TeXt-theme.svg)](https://github.com/kitian616/jekyll-TeXt-theme/blob/master/LICENSE) -[![Gem Version](https://img.shields.io/gem/v/jekyll-text-theme.svg)](https://github.com/kitian616/jekyll-TeXt-theme/releases) -[![Travis](https://img.shields.io/travis/kitian616/jekyll-TeXt-theme.svg)](https://travis-ci.org/kitian616/jekyll-TeXt-theme) -[![Tip Me via PayPal](https://img.shields.io/badge/PayPal-tip%20me-1462ab.svg?logo=paypal)](https://www.paypal.me/kitian616) -[![Tip Me via Bitcoin](https://img.shields.io/badge/Bitcoin-tip%20me-f7931a.svg?logo=bitcoin)](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/3Fkufxcw2xd8HnaRJBNK4ccdtkUDyyNu4V.jpg) - -![TeXt Theme](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/TeXt-home.jpg) - -![TeXt Theme Details](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/TeXt-layouts.png) - -TeXt is a super customizable Jekyll theme for personal site, team site, blog, project, documentation, etc. Similar to iOS 11 style, it has large and prominent titles, round buttons and cards. - -**[Change Log](https://github.com/kitian616/jekyll-TeXt-theme/blob/master/CHANGELOG.md)** | **[中文](https://github.com/kitian616/jekyll-TeXt-theme/blob/master/README-zh.md)** - -## Features - -- Responsive -- Semantic HTML -- Skins -- Highlight Theme -- Internationalization -- Search -- Table of contents -- Authors -- Additional styles (alert, tag, image, icon, button, grid, etc) -- Extensions (audios, videos, slides, demos) -- Markdown enhancements ([MathJax](https://www.mathjax.org/), [mermaid](https://mermaidjs.github.io/), [chartjs](http://www.chartjs.org/)) -- Sharing ([AddToAny](https://www.addtoany.com/), [AddThis](https://www.addthis.com/)) -- Comments ([Disqus](https://disqus.com/), [Gitalk](https://gitalk.github.io/), [Valine](https://valine.js.org/en/)) -- Pageview ([LeanCloud](https://leancloud.cn/)) -- Analytics ([Google Analytics](https://analytics.google.com/analytics/web/)) -- RSS ([jekyll-feed](https://github.com/jekyll/jekyll-feed)) - -## Skins - -TeXt has 6 built-in skins, you can also set up your own skin. - -| `default` | `dark` | `forest` | -| --- | --- | --- | -| ![Default](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_default.jpg) | ![Dark](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_dark.jpg) | ![Forest](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_forest.jpg) | - -| `ocean` | `chocolate` | `orange` | -| --- | --- | --- | -| ![Ocean](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_ocean.jpg) | ![Chocolate](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_chocolate.jpg) | ![Orange](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_orange.jpg) | - -### Highlight Theme - -TeXt use [Tomorrow](https://github.com/chriskempson/tomorrow-theme) as the highlight theme. - -| `tomorrow` | `tomorrow-night` | `tomorrow-night-eighties` | `tomorrow-night-blue` | `tomorrow-night-bright` | -| --- | --- | --- | --- | --- | -| ![Tomorrow](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow.png) | ![Tomorrow Night](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night.png) | ![Tomorrow Night Eighties](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night-eighties.png) | ![Tomorrow Night Blue](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night-blue.png) | ![Tomorrow Night Bright](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night-bright.png) | - -## Documentation - -### Start - -- [Quick Start](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/quick-start) -- [Update from 1.x to 2.x](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/update-from-1-to-2) - -### Customization - -- [Configuration](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/configuration) -- [Navigation](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/navigation) -- [Layouts](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/layouts) -- [Logo and Favicon](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/logo-and-favicon) -- [Authors](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/authors) -- [Internationalization](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/i18n) - -### Content - -- [Writing Posts](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/writing-posts) -- [Additional styles](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/additional-styles) -- [Extensions](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/extensions) -- [Markdown Enhancements](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/markdown-enhancements) - -## Demo Pages - -| Name | Description | -| --- | --- | -| [Home](https://kitian616.github.io/jekyll-TeXt-theme/test/) | Home page | -| [Archive](https://kitian616.github.io/jekyll-TeXt-theme/archive.html) | Archive page | -| [Layout Examples](https://kitian616.github.io/jekyll-TeXt-theme/samples.html) | Examples for different layouts | - -## License - -TeXt Theme is [MIT licensed](https://github.com/kitian616/jekyll-TeXt-theme/blob/master/LICENSE). diff --git a/Release b/Release deleted file mode 100644 index 19f3b1789ac..00000000000 --- a/Release +++ /dev/null @@ -1,11 +0,0 @@ -Origin: codwam's Repo 2 -Label: julioverne -Suite: stable -Version: 1.0 -Codename: julioverne -Architecture: iphoneos-arm -Components: main -Description: julioverne's Tweaks -MD5Sum: - e36ac0a233d02830530a39aa3fa57068 88987 Packages - 987b602a74100ed060f7b31fdb943013 23851 Packages.bz2 diff --git a/_config.yml b/_config.yml deleted file mode 100644 index c438bde3caa..00000000000 --- a/_config.yml +++ /dev/null @@ -1,228 +0,0 @@ -# Welcome to Jekyll! -# -# This config file is meant for settings that affect your whole blog, values -# which you are expected to set up once and rarely need to edit after that. -# For technical reasons, this file is *NOT* reloaded automatically when you use -# 'jekyll serve'. If you change this file, please restart the server process. -# -# ,--------. ,--. ,--. ,--. -# '--. .--',---. \ `.' /,-' '-. -# | | | .-. : .' \ '-. .-' -# | | \ --. / .'. \ | | -# `--' `----''--' '--' `--' - - - - -## => Site Settings -############################## -text_skin: default # "default" (default), "dark", "forest", "ocean", "chocolate", "orange" -highlight_theme: default # "default" (default), "tomorrow", "tomorrow-night", "tomorrow-night-eighties", "tomorrow-night-blue", "tomorrow-night-bright" -url : # the base hostname & protocol for your site e.g. https://www.someone.com -baseurl : # does not include hostname -title : Codwam's Training -description: > # this means to ignore newlines until "Language & timezone" - Codwam's Blog -# theme: jekyll-text-theme - -## => Language and Timezone -############################## -lang: zh-CN # the language of your site, default as "en" -timezone: Asia/Shanghai # see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones for the available values - - -## => Author and Social -############################## -author: - type : # "person" (default), "organization" - name : Codwam - url : - avatar : # path or url of avatar image (square) - bio : I am an amazing person. - email : - facebook : # "user_name" the last part of your profile url, e.g. https://www.facebook.com/user_name - twitter : # "user_name" the last part of your profile url, e.g. https://twitter.com/user_name - weibo : # "user_id" the last part of your profile url, e.g. https://www.weibo.com/user_id/profile?... - googleplus: # "user_id" the last part of your profile url, e.g. https://plus.google.com/u/0/user_id - telegram : # "user_name" the last part of your profile url, e.g. https://t.me/user_name - medium : # "user_name" the last part of your profile url, e.g. https://medium.com/user_name - zhihu : # "user_name" the last part of your profile url, e.g. https://www.zhihu.com/people/user_name - douban : # "user_name" the last part of your profile url, e.g. https://www.douban.com/people/user_name - linkedin : # "user_name" the last part of your profile url, e.g. https://www.linkedin.com/in/user_name - github : # "user_name" the last part of your profile url, e.g. https://github.com/codwam - npm : # "user_name" the last part of your profile url, e.g. https://www.npmjs.com/~user_name - - -## => GitHub Repository (if the site is hosted by GitHub) -############################## -repository: codwam/codwam.github.io -repository_tree: master - - -## => Paths -############################## -paths: - root : # title link url, "/" (default) - home : # home layout url, "/" (default) - archive : # "/archive.html" (default) - rss : # "/feed.xml" (default) - - -## => Post -############################## -## excerpt -excerpt_separator: - -## license -license: CC-BY-NC-4.0 # "CC-BY-4.0", "CC-BY-SA-4.0", "CC-BY-NC-4.0", "CC-BY-ND-4.0" - -## TOC -toc: - selectors: # "h1,h2,h3" (default) - - -## => Markdown Enhancements -############################## -## Mathjax -mathjax: # false (default), true -mathjax_autoNumber: # false (default), true - -## Mermaid -mermaid: # false (default), true - -## Chart -chart: # false (default), true - - -## => Paginate -############################## -paginate: 8 -paginate_path: /page:num # don't change this unless for special need - - -## => Sources -############################## -sources: # bootcdn (default), unpkg - - -## => Sharing -############################## -sharing: - provider: false # false (default), "addtoany", "addthis", "custom" - - ## AddThis - addthis: - id: # AddThis pubid, e.g. ra-5xxxxxxxxxxx - - -## => Comments -############################## -comments: - provider: false # false (default), "disqus", "gitalk", "valine", "custom" - - ## Disqus - disqus: - shortname: # the Disqus shortname for the site - - ## Gitalk - # please refer to https://github.com/gitalk/gitalk for more info. - gitalk: - clientID : # GitHub Application Client ID - clientSecret: # GitHub Application Client Secret - repository : # GitHub repo - owner : # GitHub repo owner - admin: # GitHub repo owner and collaborators, only these guys can initialize GitHub issues, IT IS A LIST. - # - your GitHub Id - - ## Valine - # please refer to https://valine.js.org/en/ for more info. - valine: - app_id : # LeanCloud App id - app_key : # LeanCloud App key - placeholder : # Prompt information - visitor : # false (default) - meta : # "[nick, mail, link]" (default) nickname, E-mail, Personal-site - - -## => Pageview -############################## -pageview: - provider: false # false (default), "leancloud", "custom" - - ## Leancloud - leancloud: - app_id : # LeanCloud App id - app_key : # LeanCloud App key - app_class : # LeanCloud App class - - -## => Search -############################## -search: - provider: default # "default" (default), false, "google", "custom" - - ## Google Custom Search Engine - google: - custom_search_engine_id: # Google Custom Search Engine ID - - -## => Analytics -############################## -analytics: - provider: false # false (default), "google", "custom" - - ## Google Analytics - google: - tracking_id : # Google Analytics id for the site - anonymize_ip: false # Anonymize IP tracking for Analytics - - -## => Build -############################## -markdown : kramdown -highlighter : rouge -permalink : date - -exclude: - - CHANGELOG.md - - HOW_TO_RELEASE.md - - Gemfile - - Gemfile.lock - - LICENSE - - README-*.md - - README.md - - gulpfile.js - - jekyll-text-theme.gemspec - - package-lock.json - - package.json - - /docs - - /node_modules - - /screenshots - - /test - - /vendor - -keep_files: - # - iosre/404.html - -defaults: - - scope: - path: "" - type: posts - values: - layout: article - sharing: true - license: false - aside: - toc: true - show_edit_on_github: false - show_subscribe: false - pageview: true - - -## => Plugins -############################## -plugins: - - jekyll-feed - - jekyll-paginate - - jekyll-sitemap - - jemoji diff --git a/_data/authors.yml b/_data/authors.yml deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/_data/licenses.yml b/_data/licenses.yml deleted file mode 100644 index 6729af56f6b..00000000000 --- a/_data/licenses.yml +++ /dev/null @@ -1,16 +0,0 @@ -CC-BY-4.0: - name: Attribution 4.0 International - url: https://creativecommons.org/licenses/by/4.0/ - image: https://i.creativecommons.org/l/by/4.0/88x31.png -CC-BY-SA-4.0: - name: Attribution-ShareAlike 4.0 International - url: https://creativecommons.org/licenses/by-sa/4.0/ - image: https://i.creativecommons.org/l/by-sa/4.0/88x31.png -CC-BY-NC-4.0: - name: Attribution-NonCommercial 4.0 International - url: https://creativecommons.org/licenses/by-nc/4.0/ - image: https://i.creativecommons.org/l/by-nc/4.0/88x31.png -CC-BY-ND-4.0: - name: Attribution-NoDerivatives 4.0 International - url: https://creativecommons.org/licenses/by-nd/4.0/ - image: https://i.creativecommons.org/l/by-nd/4.0/88x31.png diff --git a/_data/locale.yml b/_data/locale.yml deleted file mode 100644 index e7e1486bd1f..00000000000 --- a/_data/locale.yml +++ /dev/null @@ -1,169 +0,0 @@ -# @start locale config -## => English -######################## -en: &EN - SUBSCRIBE : "Subscribe" - READMORE : "Read more" - SEARCH : "Search" - CANCEL : "Cancel" - VIEWS : "views" - LAST_UPDATED : "Last updated" - PREVIOUS : "PREVIOUS" - NEXT : "NEXT" - ARTICLE_DATE_FORMAT : "%b %d, %Y" - ARTICLE_LIST_DATE_FORMAT: "%b %d" - STATISTICS : "[POST_COUNT] post articles, [PAGE_COUNT] pages." - LICENSE_ANNOUNCE : "This work is licensed under a [LICENSE] license." - POST_ON_GITHUB : "Edit on Github" - FOLLOW_ME : "Follow me on [NAME]." - FOLLOW_US : "Follow us on [NAME]." - EMAIL_ME : "Send me an Email." - EMAIL_US : "Send us an Email." - COPYRIGHT_DATES : "2024" - -en-GB: - <<: *EN -en-US: - <<: *EN -en-CA: - <<: *EN -en-AU: - <<: *EN - -## => Simplified Chinese -######################## -zh-Hans: &ZH_HANS - SUBSCRIBE : "订阅" - READMORE : "阅读更多" - SEARCH : "搜索" - CANCEL : "取消" - VIEWS : "阅读" - LAST_UPDATED : "更新于" - PREVIOUS : "上篇" - NEXT : "下篇" - ARTICLE_DATE_FORMAT : "%Y年 %m月%d日" - ARTICLE_LIST_DATE_FORMAT: "%m月%d日" - STATISTICS : "共计 [POST_COUNT] 篇文章,[PAGE_COUNT] 页。" - LICENSE_ANNOUNCE : "本文遵守 [LICENSE] 许可协议。" - POST_ON_GITHUB : "在 Github 上修改" - FOLLOW_ME : "在 [NAME] 上关注我。" - FOLLOW_US : "在 [NAME] 上关注我们。" - EMAIL_ME : "给我发邮件。" - EMAIL_US : "给我们发邮件。" - COPYRIGHT_DATES : "2024" - -zh: - <<: *ZH_HANS -zh-CN: - <<: *ZH_HANS -zh-SG: - <<: *ZH_HANS - -## => Traditional Chinese -######################## -zh-Hant: &ZH_HANT - SUBSCRIBE : "訂閱" - READMORE : "閱讀更多" - SEARCH : "搜索" - CANCEL : "取消" - VIEWS : "閱讀" - LAST_UPDATED : "更新於" - PREVIOUS : "上篇" - NEXT : "下篇" - ARTICLE_DATE_FORMAT : "%Y年 %m月%d日" - ARTICLE_LIST_DATE_FORMAT: "%m月%d日" - STATISTICS : "共計 [POST_COUNT] 篇文章,[PAGE_COUNT] 頁。" - LICENSE_ANNOUNCE : "本文遵守 [LICENSE] 許可協議。" - POST_ON_GITHUB : "在 Github 上修改" - FOLLOW_ME : "在 [NAME] 上關注我。" - FOLLOW_US : "在 [NAME] 上關注我們。" - EMAIL_ME : "給我發郵件。" - EMAIL_US : "給我們發郵件。" - COPYRIGHT_DATES : "2024" - -zh-TW: - <<: *ZH_HANT -zh-HK: - <<: *ZH_HANT - -## => Korean -######################## -ko: &KO - SUBSCRIBE : "구독하기" - READMORE : "더보기" - SEARCH : "검색" - CANCEL : "취소" - VIEWS : "조회" - LAST_UPDATED : "마지막 수정" - PREVIOUS : "이전" - NEXT : "다음" - ARTICLE_DATE_FORMAT : "%Y년 %m월 %d일" - ARTICLE_LIST_DATE_FORMAT: "%m월 %d일" - STATISTICS : "전체 글 [POST_COUNT]개, [PAGE_COUNT] 페이지" - LICENSE_ANNOUNCE : "이 글의 저작권은 [LICENSE] 라이센스를 따릅니다." - POST_ON_GITHUB : "Github에서 확인하기" - FOLLOW_ME : "[NAME]에서 팔로우하기" - FOLLOW_US : "[NAME]에서 팔로우하기" - EMAIL_ME : "이메일 보내기" - EMAIL_US : "이메일 보내기" - COPYRIGHT_DATES : "2024" - -ko-KR: - <<: *KO - -## => French -######################## -fr: &FR - SUBSCRIBE : "S'abonner" - READMORE : "Plus" - SEARCH : "Recherche" - CANCEL : "Annuler" - VIEWS : "vues" - LAST_UPDATED : "Dernière modification" - PREVIOUS : "PRÉCÉDENT" - NEXT : "SUIVANT" - ARTICLE_DATE_FORMAT : "%d %b, %Y" - ARTICLE_LIST_DATE_FORMAT: "%d %b" - STATISTICS : "[POST_COUNT] articles, [PAGE_COUNT] pages." - LICENSE_ANNOUNCE : "Ce travail est sous licence [LICENSE]." - POST_ON_GITHUB : "Modifier sur Github" - FOLLOW_ME : "Suivez-moi sur [NAME]." - FOLLOW_US : "Suivez-nous sur [NAME]." - EMAIL_ME : "Envoyez-moi un courriel." - EMAIL_US : "Envoyez-nous un courriel" - COPYRIGHT_DATES : "2024" - DONATE : "Faites un don de [NAME]." - -fr-BE: - <<: *FR -fr-CA: - <<: *FR -fr-CH: - <<: *FR -fr-FR: - <<: *FR -fr-LU: - <<: *FR -## => Turkish -######################## -tr: &TR - SUBSCRIBE : "Takip et" - READMORE : "Devamını Oku" - SEARCH : "İçerik Ara" - CANCEL : "İptal" - VIEWS : "gösterim" - LAST_UPDATED : "Son güncellenme" - PREVIOUS : "ÖNCEKİ" - NEXT : "SONRAKİ" - ARTICLE_DATE_FORMAT : "%d %b, %Y" - ARTICLE_LIST_DATE_FORMAT: "%d %b" - STATISTICS : "Toplam [POST_COUNT] adet gönderim ve [PAGE_COUNT] adet sayfa bulunuyor." - LICENSE_ANNOUNCE : "Bu içerik [LICENSE] ile lisanslanmıştır." - POST_ON_GITHUB : "Github üzerinde düzenle" - FOLLOW_ME : "Beni [NAME] üzerinden takip et." - FOLLOW_US : "Bizi [NAME] üzerinden takip edin." - EMAIL_ME : "Bana email ile ulaşın." - EMAIL_US : "Bize email ile ulaşın." - COPYRIGHT_DATES : "2024" - -# @end locale config diff --git a/_data/navigation.yml b/_data/navigation.yml deleted file mode 100644 index e6f5ee962e9..00000000000 --- a/_data/navigation.yml +++ /dev/null @@ -1,52 +0,0 @@ -header: - - titles: - # @start locale config - en : &EN Archive - en-GB : *EN - en-US : *EN - en-CA : *EN - en-AU : *EN - zh-Hans : &ZH_HANS 归档 - zh : *ZH_HANS - zh-CN : *ZH_HANS - zh-SG : *ZH_HANS - zh-Hant : &ZH_HANT 歸檔 - zh-TW : *ZH_HANT - zh-HK : *ZH_HANT - ko : &KO 아카이브 - ko-KR : *KO - fr : &FR Archives - fr-BE : *FR - fr-CA : *FR - fr-CH : *FR - fr-FR : *FR - fr-LU : *FR - tr : &TR Arşivdekiler - # @end locale config - url: /archive.html - - - titles: - # @start locale config - en : &EN About - en-GB : *EN - en-US : *EN - en-CA : *EN - en-AU : *EN - zh-Hans : &ZH_HANS 关于 - zh : *ZH_HANS - zh-CN : *ZH_HANS - zh-SG : *ZH_HANS - zh-Hant : &ZH_HANT 關於 - zh-TW : *ZH_HANT - zh-HK : *ZH_HANT - ko : &KO 소개 - ko-KR : *KO - fr : &FR À propos - fr-BE : *FR - fr-CA : *FR - fr-CH : *FR - fr-FR : *FR - fr-LU : *FR - tr : &TR Hakkında - # @end locale config - url: /about.html diff --git a/_data/variables.yml b/_data/variables.yml deleted file mode 100644 index 43aa3aaf4fe..00000000000 --- a/_data/variables.yml +++ /dev/null @@ -1,64 +0,0 @@ -default: - text_skin: default - highlight_theme: default - lang: en - paths: - root: / - home: / - archive: /archive.html - rss: /feed.xml - mathjax: false - mathjax_autoNumber: false - mermaid: false - chart: false - toc: - selectors: 'h1,h2,h3' - sources: bootcdn - - page: - mode: normal - type: webpage - article_header: - align: left - theme: light - articles: - show_cover: true - show_excerpt: false - show_readmore: false - show_info: false - show_title: true - show_edit_on_github: false - show_date: true - show_tags: true - show_author_profile: false - show_subscribe: false - full_width: false - sharing: false - comment: true - license: false - pageview: false - search: default - -sources: - bootcdn: - font_awesome: 'https://cdn.bootcdn.net/ajax/libs/font-awesome/5.15.1/css/all.css' - jquery: 'https://cdn.bootcss.com/jquery/3.1.1/jquery.min.js' - leancloud_js_sdk: '//cdn.jsdelivr.net/npm/leancloud-storage@3.13.2/dist/av-min.js' - chart: 'https://cdn.bootcss.com/Chart.js/2.7.2/Chart.bundle.min.js' - gitalk: - js: 'https://cdn.bootcss.com/gitalk/1.2.2/gitalk.min.js' - css: 'https://cdn.bootcss.com/gitalk/1.2.2/gitalk.min.css' - valine: 'https://unpkg.com/valine/dist/Valine.min.js' # bootcdn not available - mathjax: 'https://cdn.bootcss.com/mathjax/2.7.4/MathJax.js?config=TeX-MML-AM_CHTML' - mermaid: 'https://cdn.bootcss.com/mermaid/8.0.0-rc.8/mermaid.min.js' - unpkg: - font_awesome: 'https://use.fontawesome.com/releases/v5.15.1/css/all.css' - jquery: 'https://unpkg.com/jquery@3.3.1/dist/jquery.min.js' - leancloud_js_sdk: '//cdn.jsdelivr.net/npm/leancloud-storage@3.13.2/dist/av-min.js' - chart: 'https://unpkg.com/chart.js@2.7.2/dist/Chart.min.js' - gitalk: - js: 'https://unpkg.com/gitalk@1.2.2/dist/gitalk.min.js' - css: 'https://unpkg.com/gitalk@1.2.2/dist/gitalk.css' - valine: 'https//unpkg.com/valine/dist/Valine.min.js' - mathjax: 'https://unpkg.com/mathjax@2.7.4/unpacked/MathJax.js?config=TeX-MML-AM_CHTML' - mermaid: 'https://unpkg.com/mermaid@8.0.0-rc.8/dist/mermaid.min.js' diff --git a/_includes/analytics-providers/custom.html b/_includes/analytics-providers/custom.html deleted file mode 100644 index 58448f777a1..00000000000 --- a/_includes/analytics-providers/custom.html +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/analytics-providers/google.html b/_includes/analytics-providers/google.html deleted file mode 100644 index 5fbd17dc7d0..00000000000 --- a/_includes/analytics-providers/google.html +++ /dev/null @@ -1,14 +0,0 @@ -{%- if site.analytics.google.tracking_id -%} - - - -{%- endif -%} diff --git a/_includes/analytics.html b/_includes/analytics.html deleted file mode 100644 index 46ba91d0333..00000000000 --- a/_includes/analytics.html +++ /dev/null @@ -1,7 +0,0 @@ -{%- 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 -%} diff --git a/_includes/article-footer.html b/_includes/article-footer.html deleted file mode 100644 index 33c3742e837..00000000000 --- a/_includes/article-footer.html +++ /dev/null @@ -1,55 +0,0 @@ -{%- include snippets/assign.html - target=site.data.variables.default.page.show_author_profile - source0=layout.show_author_profile source1=page.show_author_profile -%} -{%- assign _show_author_profile = __return -%} - -{%- include snippets/assign.html - target=site.data.variables.default.page.show_subscribe - source0=layout.show_subscribe source1=page.show_subscribe -%} -{%- assign _show_subscribe = __return -%} - -{%- include snippets/assign.html - target=site.data.variables.default.page.license - source0=layout.license source1=page.license -%} -{%- assign _license = __return -%} - -
- {%- if page.modify_date -%} - {%- include snippets/get-locale-string.html key='ARTICLE_DATE_FORMAT' -%} - {%- assign _locale_date_format = __return -%} - - {%- include snippets/get-locale-string.html key='LAST_UPDATED' -%} - {%- assign _locale_last_update = __return -%} - {{ _locale_last_update }} - - - {%- elsif page.date -%} - - {%- endif -%} - - {%- include article/footer/custom.html -%} - - {%- if _show_author_profile -%} - {%- if page.author -%} - {%- assign _author = site.data.authors[page.author] -%} - {%- else -%} - {%- assign _author = site.author -%} - {%- endif -%} - {%- include article/footer/author-profile.html author=_author -%} - {%- endif -%} - - {%- if _show_subscribe -%} - - {%- endif -%} - - {%- if _license != false -%} - {%- assign _data_license = site.data.licenses-%} - {%- if site.license -%} - {%- assign _license_data = _data_license[site.license] -%} - {%- endif -%} - {%- if _license != true -%} - {%- assign _license_data = _data_license[_license] -%} - {%- endif -%} -
{%- include article/footer/license.html license=_license_data -%}
- {%- endif -%} -
diff --git a/_includes/article-header.html b/_includes/article-header.html deleted file mode 100644 index 748b24c79af..00000000000 --- a/_includes/article-header.html +++ /dev/null @@ -1,49 +0,0 @@ -{%- include snippets/get-article-title.html article=include.article-%} -{%- assign _article_title = __return -%} - -{%- if include.html != false -%} - - {%- include snippets/assign.html - target=site.data.variables.default.page.show_title - source0=layout.show_title source1=include.article.show_title -%} - {%- assign _show_title = __return -%} - - {%- include snippets/assign.html - target=site.data.variables.default.page.show_edit_on_github - source0=layout.show_edit_on_github source1=include.article.show_edit_on_github -%} - {%- assign _show_edit_on_github = __return -%} - - {%- if _show_title or _show_edit_on_github -%} -
- {%- if _show_title -%} -

{{ _article_title }}

- {%- endif -%} - {%- if _show_edit_on_github -%} - {%- if site.repository and site.repository_tree -%} - {%- include snippets/is_collection.html page=include.article -%} - {%- assign _is_article_collection = __return -%} - {%- include snippets/get-locale-string.html key='POST_ON_GITHUB' -%} - {%- assign _locale_post_on_github = __return -%} - {%- if _is_article_collection -%} - {%- include snippets/prepend-path.html path=include.article.path prepend_path=site.collections_dir -%} - {%- assign _article_path = __return -%} - {%- else -%} - {%- assign _article_path = include.article.path -%} - {%- endif -%} - {%- assign _github_path = site.repository | append: '/tree/' | append: site.repository_tree | append: '/' | append: _article_path | replace:'//','/' -%} -   - - - {%- endif -%} - {%- endif -%} -
- {%- else -%} -

{{ _article_title }}

- {%- endif -%} -{%- endif -%} - -{%- if include.semantic != false -%} - -{%- endif -%} diff --git a/_includes/article-info.html b/_includes/article-info.html deleted file mode 100644 index c97fac9acfe..00000000000 --- a/_includes/article-info.html +++ /dev/null @@ -1,96 +0,0 @@ -{%- assign _author = site.data.authors[include.article.author] | default: site.author -%} - -{%- if include.html != false -%} - - {%- include snippets/assign.html - target=site.data.variables.default.page.show_date - source0=layout.show_date source1=include.article.show_date -%} - {%- assign _show_date = __return -%} - {%- if _show_date and include.article.date -%} - {%- assign _show_date = true -%} - {%- else -%} - {%- assign _show_date = false -%} - {%- endif -%} - - {%- include snippets/assign.html - target=site.data.variables.default.page.show_tags - source0=layout.show_tags source1=include.article.show_tags -%} - {%- assign _show_tags = __return -%} - {%- if _show_tags and include.article.tags[0] -%} - {%- assign _show_tags = true -%} - {%- else -%} - {%- assign _show_tags = false -%} - {%- endif -%} - - {%- assign _show_author = include.article.author -%} - - {%- include snippets/assign.html target=site.data.variables.default.page.pageview - source0=layout.pageview source1=page.pageview -%} - {%- assign _pageview = __return -%} - {%- if _pageview or include.show_pageview -%} - {%- assign _pageview = true -%} - {%- else -%} - {%- assign _pageview = false -%} - {%- endif -%} - - {%- assign _paths_archive = site.paths.archive | default: site.data.variables.default.paths.archive -%} - - {%- if _show_tags or _show_author or _show_date or _pageview -%} - - {%- endif -%} -{%- endif -%} - - -{%- if include.semantic != false -%} - {%- if _author -%} - - {%- endif -%} - {%- if include.article.date -%} - - {%- endif -%} - {%- if include.article.tags[0] -%} - {%- assign _keywords = include.article.tags | join: ',' %} - - {%- endif -%} -{%- endif -%} diff --git a/_includes/article-list.html b/_includes/article-list.html deleted file mode 100644 index dfe0c85f587..00000000000 --- a/_includes/article-list.html +++ /dev/null @@ -1,144 +0,0 @@ -{%- assign _excerpt_truncate = include.excerpt_truncate | default: 350 -%} - -{%- assign _excerpt_type = include.excerpt_type -%} - -{%- include snippets/get-locale-string.html key='READMORE' -%} -{%- assign _locale_readmore = __return -%} - -{%- assign _sorted_list = include.articles -%} -{%- if include.group_by == 'year' -%} - {%- assign _sorted_list = _sorted_list | sort: 'date' -%} -{%- endif -%} -{%- if include.reverse -%} - {%- assign _sorted_list = _sorted_list | reverse -%} -{%- endif -%} - -{%- if include.type == 'item' -%} -
-{%- elsif include.type == 'brief' -%} -
-{%- elsif include.type == 'grid' -%} - {%- if include.size == 'sm' -%} -
- {%- else -%} -
- {%- endif -%} -{%- endif -%} - - {%- for _article in _sorted_list -%} - - {%- include snippets/prepend-baseurl.html path=_article.url -%} - {%- assign _article_url = __return -%} - - {%- if _article.cover -%} - {%- include snippets/get-nav-url.html path=_article.cover -%} - {%- assign _article_cover = __return -%} - {%- endif -%} - - {%- if include.type == 'item' -%} - {%- if include.article_type == 'BlogPosting' -%} -
- {%- else -%} -
- {%- endif -%} - {%- if _article.cover and include.show_cover-%} - {%- include snippets/get-nav-url.html path=_article.cover -%} - {%- assign _article_cover = __return -%} -
- {%- if include.cover_size == 'lg' -%} - - {%- elsif include.cover_size == 'sm' -%} - - {%- else -%} - - {%- endif -%} -
- {%- endif -%} -
-

{{ _article.title }}

-
- {%- if _article.excerpt and include.show_excerpt -%} -
- {%- if _excerpt_type == 'html' -%} - {{ _article.excerpt }} - {%- else -%} - {{ _article.excerpt | strip_html | strip | truncate: _excerpt_truncate }} - {%- endif -%} -
- {%- endif -%} - {%- if include.show_readmore -%} -

{{ _locale_readmore }}

- {%- endif -%} -
- {%- if include.show_info -%} - {%- include snippets/assign.html target=site.data.variables.default.page.pageview - source0=_article.pageview -%} - {%- assign _show_pageview = __return -%} - {%- include article-info.html article=_article show_pageview=_show_pageview -%} - {%- endif -%} -
-
- - - {%- elsif include.type == 'brief' -%} - {%- assign _tags = '' -%} - {%- for _tag in _article.tags -%} - {%- assign _tag_encode = _tag | strip | url_encode -%} - {%- if forloop.last -%} - {%- assign _tags = _tags | append: _tag_encode -%} - {%- else -%} - {%- assign _tags = _tags | append: _tag_encode | append: ',' -%} - {%- endif -%} - {%- endfor -%} - {%- if include.group_by == 'year' -%} - {%- assign _currentdate = _article.date | date: '%Y' -%} - {%- if _currentdate != _date -%} - {%- unless forloop.first -%}{%- endunless -%} -

{{ _currentdate }}

    - {%- assign _date = _currentdate -%} - {%- endif -%} - {%- endif -%} - {%- include snippets/get-locale-string.html key='ARTICLE_LIST_DATE_FORMAT' -%} -
  • -
    - {%- if include.show_info -%} - {{ _article.date | date: __return }} - {%- endif -%} - {{ _article.title }}
    -
  • - - {%- elsif include.type == 'grid' -%} - {%- if include.size == 'sm' -%} -
    -
    - {%- if _article.cover -%} -
    - - -
    - {%- endif -%} -
    -
    - {%- else -%} - -
    -
    - {%- if _article.cover -%} -
    - {%- endif -%} - -
    -
    - {%- endif -%} - {%- endif -%} - {%- endfor -%} - -
diff --git a/_includes/article-section-navigator.html b/_includes/article-section-navigator.html deleted file mode 100644 index a88aaf9f0a0..00000000000 --- a/_includes/article-section-navigator.html +++ /dev/null @@ -1,54 +0,0 @@ -{%- if page.sidebar.nav -%} - {%- assign _sidebar_nav = site.data.navigation[page.sidebar.nav] -%} - {%- if _sidebar_nav -%} - {%- assign _find_cur = false -%} - {%- assign _find_next = false -%} - - {%- for _item in _sidebar_nav -%} - {%- if _find_next -%} {%- break -%} {%- endif -%} - {%- if _item.children -%} - - {%- for _child in _item.children -%} - {%- include snippets/get-nav-url.html path=_child.url -%} - {%- assign _nav_url = __return -%} - {%- include snippets/get-nav-url.html path=page.url -%} - {%- assign _page_url = __return -%} - - {%- if _nav_url == _page_url -%} - {%- assign _find_cur = true -%} - {%- elsif _find_cur and _find_next != true -%} - {%- assign _find_next = true -%} - {%- assign _next = _child -%} - {%- break -%} - {%- else -%} - {%- assign _previous = _child -%} - {%- endif -%} - {%- endfor -%} - - {%- endif -%} - {%- endfor -%} - {%- endif -%} - -{%- else -%} - {%- assign _previous = page.previous -%} - {%- assign _next = page.next -%} -{%- endif -%} - -{%- if _next or _previous -%} -
- {%- if _previous -%} - {%- include snippets/prepend-baseurl.html path=_previous.url -%} - {%- assign _href = __return -%} - {%- include snippets/get-locale-string.html key='PREVIOUS' -%} - {%- assign _locale_previous = __return -%} - - {%- endif -%} - {%- if _next -%} - {%- include snippets/prepend-baseurl.html path=_next.url -%} - {%- assign _href = __return -%} - {%- include snippets/get-locale-string.html key='NEXT' -%} - {%- assign _locale_next = __return -%} - - {%- endif -%} -
-{%- endif -%} diff --git a/_includes/article/footer/author-profile.html b/_includes/article/footer/author-profile.html deleted file mode 100644 index 8b0d72d585b..00000000000 --- a/_includes/article/footer/author-profile.html +++ /dev/null @@ -1,47 +0,0 @@ -{%- assign _author = include.author -%} - -{%- if _author.type == 'organization' -%} - {%- assign _author_itemtype = 'http://schema.org/Organization' -%} -{%- else -%} - {%- assign _author_itemtype = 'http://schema.org/Person' -%} -{%- endif -%} - -
- {%- if _author.avatar -%} - {%- if _author.url -%} - - {%- endif -%} - {%- include snippets/get-nav-url.html path=_author.avatar -%} - {%- assign _author_avatar = __return -%} - - {%- if _author.url -%} - - {%- endif -%} - {%- endif -%} - - -
- - {%- if _author.name -%} - -

- {%- if _author.url -%} - - - {%- endif -%} - {{ _author.name }} - {%- if _author.url -%} - - {%- endif -%} -

- {%- endif -%} - - {%- if _author.bio -%} -

{{ _author.bio }}

- {%- endif -%} - - -
-
diff --git a/_includes/article/footer/custom.html b/_includes/article/footer/custom.html deleted file mode 100644 index edcd06d843b..00000000000 --- a/_includes/article/footer/custom.html +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/article/footer/license.html b/_includes/article/footer/license.html deleted file mode 100644 index a2c1535e0ca..00000000000 --- a/_includes/article/footer/license.html +++ /dev/null @@ -1,14 +0,0 @@ -{%- include snippets/get-locale-string.html key='LICENSE_ANNOUNCE' -%} -{%- assign _license_announce = __return -%} - -{%- if include.license -%} - - {%-assign _license_name = '[NAME]' | replace: "[URL]", include.license.url | replace: "[NAME]", include.license.name -%} -
-

{{ _license_announce | replace: "[LICENSE]", _license_name }} - - {{ include.license.name }} - -

-
-{%- endif -%} diff --git a/_includes/article/footer/subscribe.html b/_includes/article/footer/subscribe.html deleted file mode 100644 index cb9a169a901..00000000000 --- a/_includes/article/footer/subscribe.html +++ /dev/null @@ -1,6 +0,0 @@ -{%- assign _paths_rss = site.paths.rss | default: site.data.variables.default.paths.rss -%} -{%- include snippets/get-nav-url.html path=_paths_rss -%} -{%- assign _paths_rss = __return -%} -{%- include snippets/get-locale-string.html key='SUBSCRIBE' -%} -{%- assign _locale_nav_subscribe = __return -%} - diff --git a/_includes/article/top/custom.html b/_includes/article/top/custom.html deleted file mode 100644 index 12f393d48c9..00000000000 --- a/_includes/article/top/custom.html +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/aside/toc.html b/_includes/aside/toc.html deleted file mode 100644 index 1d19e6a9963..00000000000 --- a/_includes/aside/toc.html +++ /dev/null @@ -1 +0,0 @@ -
diff --git a/_includes/author-links.html b/_includes/author-links.html deleted file mode 100644 index 5ddc78a57ed..00000000000 --- a/_includes/author-links.html +++ /dev/null @@ -1,120 +0,0 @@ -{%- assign _author = include.author -%} - - diff --git a/_includes/comments-providers/custom.html b/_includes/comments-providers/custom.html deleted file mode 100644 index 600b9f71d12..00000000000 --- a/_includes/comments-providers/custom.html +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/comments-providers/disqus.html b/_includes/comments-providers/disqus.html deleted file mode 100644 index 40223069308..00000000000 --- a/_includes/comments-providers/disqus.html +++ /dev/null @@ -1,22 +0,0 @@ -{%- if page.key and - site.comments.disqus.shortname -%} - -
- - - -{%- endif -%} diff --git a/_includes/comments-providers/gitalk.html b/_includes/comments-providers/gitalk.html deleted file mode 100644 index f7f5c678bfb..00000000000 --- a/_includes/comments-providers/gitalk.html +++ /dev/null @@ -1,39 +0,0 @@ -{%- if page.key and - site.comments.gitalk.clientID and - site.comments.gitalk.clientSecret and - site.comments.gitalk.repository and - site.comments.gitalk.owner and - site.comments.gitalk.admin -%} - - - - - {%- include snippets/get-sources.html -%} - {%- assign _sources = __return -%} -
- {%- assign _admin = '' -%} - {%- for _admin_id in site.comments.gitalk.admin -%} - {%- assign _admin = _admin | append: ", '" | append: _admin_id | append: "'" -%} - {%- endfor -%} - {%- assign _last = _admin | size | minus: 1 -%} - {%- assign _admin = _admin | slice: 2, _last -%} - - -{%- endif -%} diff --git a/_includes/comments-providers/valine.html b/_includes/comments-providers/valine.html deleted file mode 100644 index 68a42748bd3..00000000000 --- a/_includes/comments-providers/valine.html +++ /dev/null @@ -1,46 +0,0 @@ -{%- include snippets/get-sources.html -%} -{%- assign _sources = __return -%} - -{%- assign _VALINE_APP_ID = site.comments.valine.app_id -%} -{%- assign _VALINE_APP_KEY = site.comments.valine.app_key -%} -{%- assign _VALINE_PLACEHOLDER = site.comments.valine.placeholder -%} -{%- assign _VALINE_VISITOR = site.comments.valine.visitor -%} -{%- assign _VALINE_META = site.comments.valine.meta -%} - - -{%- if _VALINE_APP_ID and - _VALINE_APP_KEY -%} - -
- -{%- if _VALINE_VISITOR -%} - - -{%- endif -%} - - - -{%- endif -%} \ No newline at end of file diff --git a/_includes/comments.html b/_includes/comments.html deleted file mode 100644 index 8029395f216..00000000000 --- a/_includes/comments.html +++ /dev/null @@ -1,11 +0,0 @@ -{%- 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 == 'valine' -%} - {%- include comments-providers/valine.html -%} - {%- elsif site.comments.provider == 'custom' -%} - {%- include comments-providers/custom.html -%} - {%- endif -%} -{%- endif -%} diff --git a/_includes/extensions/bilibili.html b/_includes/extensions/bilibili.html deleted file mode 100644 index 26f4fa4e00c..00000000000 --- a/_includes/extensions/bilibili.html +++ /dev/null @@ -1,5 +0,0 @@ -
- -
diff --git a/_includes/extensions/codepen.html b/_includes/extensions/codepen.html deleted file mode 100644 index 2240dcf8a61..00000000000 --- a/_includes/extensions/codepen.html +++ /dev/null @@ -1,4 +0,0 @@ -
- -
diff --git a/_includes/extensions/netease-cloud-music.html b/_includes/extensions/netease-cloud-music.html deleted file mode 100644 index be0b3b10d7d..00000000000 --- a/_includes/extensions/netease-cloud-music.html +++ /dev/null @@ -1,4 +0,0 @@ - diff --git a/_includes/extensions/slideshare.html b/_includes/extensions/slideshare.html deleted file mode 100644 index 310806b44c9..00000000000 --- a/_includes/extensions/slideshare.html +++ /dev/null @@ -1,6 +0,0 @@ -
- -
diff --git a/_includes/extensions/soundcloud.html b/_includes/extensions/soundcloud.html deleted file mode 100644 index b4e086bcdc7..00000000000 --- a/_includes/extensions/soundcloud.html +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/_includes/extensions/ted.html b/_includes/extensions/ted.html deleted file mode 100644 index 1ffc9f49b92..00000000000 --- a/_includes/extensions/ted.html +++ /dev/null @@ -1,5 +0,0 @@ -
- -
diff --git a/_includes/extensions/youtube.html b/_includes/extensions/youtube.html deleted file mode 100644 index 6f9c2c8746f..00000000000 --- a/_includes/extensions/youtube.html +++ /dev/null @@ -1,4 +0,0 @@ -
- -
diff --git a/_includes/footer.html b/_includes/footer.html deleted file mode 100644 index 0a4eb29c54c..00000000000 --- a/_includes/footer.html +++ /dev/null @@ -1,37 +0,0 @@ - -
-
- - {%- assign _site_author = site.author -%} - {%- if _site_author.type == 'organization' -%} - {%- assign _site_author_itemtype = 'http://schema.org/Organization' -%} - {%- else -%} - {%- assign _site_author_itemtype = 'http://schema.org/Person' -%} - {%- endif -%} - -
- - {%- assign _site_author_url = _site_author.url | default: '/'-%} - {%- include snippets/get-nav-url.html path=_site_author_url -%} - {%- assign _site_author_url = __return -%} - - {%- if _site_author.bio -%} - - {%- endif -%} - -
- {%- include snippets/get-locale-string.html key='COPYRIGHT_DATES' -%} - {%- assign _locale_copyright_dates = __return -%} -
-
- {%- include snippets/get-locale-string.html key='COPYRIGHT_DATES' -%} - {%- assign _locale_copyright_dates = __return -%} - © {{ site.title }} {{ _locale_copyright_dates }}, - Powered by Jekyll & TeXt Theme. -
-
-
-
diff --git a/_includes/head.html b/_includes/head.html deleted file mode 100644 index 35a3b193e96..00000000000 --- a/_includes/head.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - -{%- include snippets/get-article-title.html article=page -%} -{%- if __return -%}{{ __return }} - {{ site.title }}{%- else -%}{{ site.title }}{%- endif -%} - - - - -{%- assign _paths_rss = site.paths.rss | default: site.data.variables.default.paths.rss -%} -{%- include snippets/get-nav-url.html path=_paths_rss -%} - - -{%- include head/favicon.html -%} - -{%- include snippets/prepend-baseurl.html path='/assets/css/main.css' -%} - - -{%- include snippets/get-sources.html -%} -{%- assign _sources = __return -%} - - -{%- include head/custom.html -%} diff --git a/_includes/head/custom.html b/_includes/head/custom.html deleted file mode 100644 index 33b15087382..00000000000 --- a/_includes/head/custom.html +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/head/favicon.html b/_includes/head/favicon.html deleted file mode 100644 index 40fc1791194..00000000000 --- a/_includes/head/favicon.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/_includes/header.html b/_includes/header.html deleted file mode 100644 index c79d3992388..00000000000 --- a/_includes/header.html +++ /dev/null @@ -1,44 +0,0 @@ -{%- if include.theme == 'dark' -%} -
-{%- elsif include.theme == 'light' -%} -
-{%- else -%} -
-{%- endif -%} -
-
-
- {%- include svg/logo.svg -%} - {%- assign _paths_root = site.paths.root | default: site.data.variables.default.paths.root -%} - {%- include snippets/get-nav-url.html path=_paths_root -%} - {%- if site.title -%} - {{ site.title }} - {%- endif -%} -
- {%- if site.search.provider -%} - - {%- endif -%} -
- {%- if site.data.navigation.header -%} - - {%- endif -%} -
-
diff --git a/_includes/main/bottom/custom.html b/_includes/main/bottom/custom.html deleted file mode 100644 index b19da2f2f3e..00000000000 --- a/_includes/main/bottom/custom.html +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/main/top/custom.html b/_includes/main/top/custom.html deleted file mode 100644 index 0bf5951b9d0..00000000000 --- a/_includes/main/top/custom.html +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/markdown-enhancements.html b/_includes/markdown-enhancements.html deleted file mode 100644 index fe701b42afc..00000000000 --- a/_includes/markdown-enhancements.html +++ /dev/null @@ -1,17 +0,0 @@ -{%- include snippets/assign.html target=site.data.variables.default.chart - source0=site.chart source1=page.chart -%} -{%- if __return == true -%} - {%- include markdown-enhancements/chart.html -%} -{%- endif -%} - -{%- include snippets/assign.html target=site.data.variables.default.mathjax - source0=site.mathjax source1=page.mathjax -%} -{%- if __return == true -%} - {%- include markdown-enhancements/mathjax.html -%} -{%- endif -%} - -{%- include snippets/assign.html target=site.data.variables.default.mermaid - source0=site.mermaid source1=page.mermaid -%} -{%- if __return == true -%} - {%- include markdown-enhancements/mermaid.html -%} -{%- endif -%} diff --git a/_includes/markdown-enhancements/chart.html b/_includes/markdown-enhancements/chart.html deleted file mode 100644 index f1c476d7220..00000000000 --- a/_includes/markdown-enhancements/chart.html +++ /dev/null @@ -1,15 +0,0 @@ -{%- include snippets/get-sources.html -%} -{%- assign _sources = __return -%} - diff --git a/_includes/markdown-enhancements/mathjax.html b/_includes/markdown-enhancements/mathjax.html deleted file mode 100644 index 9500faa53b2..00000000000 --- a/_includes/markdown-enhancements/mathjax.html +++ /dev/null @@ -1,17 +0,0 @@ -{%- include snippets/get-sources.html -%} -{%- assign _sources = __return -%} - -{%- include snippets/assign.html target=site.data.variables.default.mathjax_autoNumber - source0=site.mathjax_autoNumber source1=page.mathjax_autoNumber -%} -{%- assign _mathjax_autoNumber = __return -%} - - - diff --git a/_includes/markdown-enhancements/mermaid.html b/_includes/markdown-enhancements/mermaid.html deleted file mode 100644 index 64e4dac6e4e..00000000000 --- a/_includes/markdown-enhancements/mermaid.html +++ /dev/null @@ -1,10 +0,0 @@ -{%- include snippets/get-sources.html -%} -{%- assign _sources = __return -%} - diff --git a/_includes/pageview-providers/custom/home.html b/_includes/pageview-providers/custom/home.html deleted file mode 100644 index 7fabc80ba5c..00000000000 --- a/_includes/pageview-providers/custom/home.html +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/pageview-providers/custom/post.html b/_includes/pageview-providers/custom/post.html deleted file mode 100644 index c9d0f0437e6..00000000000 --- a/_includes/pageview-providers/custom/post.html +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/_includes/pageview-providers/leancloud/home.html b/_includes/pageview-providers/leancloud/home.html deleted file mode 100644 index 5dc99b7c210..00000000000 --- a/_includes/pageview-providers/leancloud/home.html +++ /dev/null @@ -1,35 +0,0 @@ -{%- include snippets/get-sources.html -%} -{%- assign _sources = __return -%} - -{%- assign _LEANCLOUD_APP_ID = site.pageview.leancloud.app_id -%} -{%- assign _LEANCLOUD_APP_KEY = site.pageview.leancloud.app_key -%} -{%- assign _LEANCLOUD_APP_CLASS = site.pageview.leancloud.app_class -%} - -{%- if _LEANCLOUD_APP_ID and - _LEANCLOUD_APP_KEY and - _LEANCLOUD_APP_CLASS -%} - - - - -{%- endif -%} - - - diff --git a/_includes/pageview-providers/leancloud/leancloud.js b/_includes/pageview-providers/leancloud/leancloud.js deleted file mode 100644 index 32e3ba82554..00000000000 --- a/_includes/pageview-providers/leancloud/leancloud.js +++ /dev/null @@ -1,72 +0,0 @@ -(function() { - function errorHandler(error, callback) { - if (error) { - callback && callback(error); - throw error; - } - } - - function pageview(_AV, options) { - var AV = _AV; - var appId, appKey, appClass; - appId = options.appId; - appKey = options.appKey; - appClass = options.appClass; - AV.init({ - serverURLs: 'https://avoscloud.com', - appId: appId, - appKey: appKey - }); - return { - get: get, - increase: increase - }; - - function searchKey(key) { - var query = new AV.Query(appClass); - query.equalTo('key', key); - return query.first(); - } - - function insert(key, title) { - var Blog = AV.Object.extend(appClass); - var blog = new Blog(); - blog.set('title', title); - blog.set('key', key); - blog.set('views', 0); - return blog.save(); - } - - function increment(result) { - result.increment('views', 1); - return result.save(null, { - fetchWhenSave: true - }); - } - - function get(key, callback) { - searchKey(key).then(function(result) { - if (result) { - callback && callback(result.attributes.views); - } - }, errorHandler); - } - - function increase(key, title, callback) { - searchKey(key).then(function(result) { - if (result) { - increment(result).then(function(result) { - callback && callback(result.attributes.views); - }); - } else { - insert(key, title).then(function(result) { - increment(result).then(function(result) { - callback && callback(result.attributes.views); - }); - }, errorHandler); - } - }, errorHandler); - } - } - window.pageview = pageview; -})(); diff --git a/_includes/pageview-providers/leancloud/post.html b/_includes/pageview-providers/leancloud/post.html deleted file mode 100644 index ebd7510a066..00000000000 --- a/_includes/pageview-providers/leancloud/post.html +++ /dev/null @@ -1,31 +0,0 @@ -{%- include snippets/get-sources.html -%} -{%- assign _sources = __return -%} - -{%- assign _LEANCLOUD_APP_ID = site.pageview.leancloud.app_id -%} -{%- assign _LEANCLOUD_APP_KEY = site.pageview.leancloud.app_key -%} -{%- assign _LEANCLOUD_APP_CLASS = site.pageview.leancloud.app_class -%} - -{%- if page.key and - _LEANCLOUD_APP_ID and - _LEANCLOUD_APP_KEY and - _LEANCLOUD_APP_CLASS -%} - - - - -{%- endif -%} \ No newline at end of file diff --git a/_includes/pageview.html b/_includes/pageview.html deleted file mode 100644 index bb31b158f99..00000000000 --- a/_includes/pageview.html +++ /dev/null @@ -1,29 +0,0 @@ -{%- include snippets/assign.html target=site.data.variables.default.pageview source0=page.pageview -%} -{%- assign _pageview = __return -%} - - -{%- if page.layout == "home" -%} - - {%- if jekyll.environment != "development" -%} - {%- if site.pageview.provider == 'leancloud' -%} - {%- include pageview-providers/leancloud/home.html -%} - {%- elsif site.pageview.provider == 'custom' -%} - {%- include pageview-providers/custom/home.html -%} - {%- endif -%} - {%- endif -%} - - -{%- elsif page.layout == "article" -%} - {%- if _pageview -%} - - {%- if jekyll.environment != "development" and - jekyll.environment != "beta" -%} - {%- if site.pageview.provider == 'leancloud' -%} - {%- include pageview-providers/leancloud/post.html -%} - {%- elsif site.pageview.provider == 'custom' -%} - {%- include pageview-providers/custom/post.html -%} - {%- endif -%} - {%- endif -%} - - {%- endif -%} -{%- endif -%} diff --git a/_includes/paginator.html b/_includes/paginator.html deleted file mode 100644 index 595648170ca..00000000000 --- a/_includes/paginator.html +++ /dev/null @@ -1,98 +0,0 @@ -{%- if paginator.total_pages > 1 -%} - -{%- endif -%} diff --git a/_includes/scripts/archieve.js b/_includes/scripts/archieve.js deleted file mode 100644 index 96549b5b573..00000000000 --- a/_includes/scripts/archieve.js +++ /dev/null @@ -1,135 +0,0 @@ -(function() { - var SOURCES = window.TEXT_VARIABLES.sources; - function queryString() { - // This function is anonymous, is executed immediately and - // the return value is assigned to QueryString! - var i = 0, queryObj = {}, pair; - var queryStr = window.location.search.substring(1); - var queryArr = queryStr.split('&'); - for (i = 0; i < queryArr.length; i++) { - pair = queryArr[i].split('='); - // If first entry with this name - if (typeof queryObj[pair[0]] === 'undefined') { - queryObj[pair[0]] = pair[1]; - // If second entry with this name - } else if (typeof queryObj[pair[0]] === 'string') { - queryObj[pair[0]] = [queryObj[pair[0]], pair[1]]; - // If third or later entry with this name - } else { - queryObj[pair[0]].push(pair[1]); - } - } - return queryObj; - } - - var setUrlQuery = (function() { - var baseUrl = window.location.href.split('?')[0]; - return function(query) { - if (typeof query === 'string') { - window.history.replaceState(null, '', baseUrl + query); - } else { - window.history.replaceState(null, '', baseUrl); - } - }; - })(); - - window.Lazyload.js(SOURCES.jquery, function() { - var $tags = $('.js-tags'); - var $articleTags = $tags.find('button'); - var $tagShowAll = $tags.find('.tag-button--all'); - var $result = $('.js-result'); - var $sections = $result.find('section'); - var sectionArticles = []; - var $lastFocusButton = null; - var sectionTopArticleIndex = []; - var hasInit = false; - - $sections.each(function() { - sectionArticles.push($(this).find('.item')); - }); - - function init() { - var i, index = 0; - for (i = 0; i < $sections.length; i++) { - sectionTopArticleIndex.push(index); - index += $sections.eq(i).find('.item').length; - } - sectionTopArticleIndex.push(index); - } - - function searchButtonsByTag(_tag/*raw tag*/) { - if (!_tag) { - return $tagShowAll; - } - var _buttons = $articleTags.filter('[data-encode="' + _tag + '"]'); - if (_buttons.length === 0) { - return $tagShowAll; - } - return _buttons; - } - function buttonFocus(target) { - if (target) { - target.addClass('focus'); - $lastFocusButton && !$lastFocusButton.is(target) && $lastFocusButton.removeClass('focus'); - $lastFocusButton = target; - } - } - - function tagSelect (tag/*raw tag*/, target) { - var result = {}, $articles; - var i, j, k, _tag; - - for (i = 0; i < sectionArticles.length; i++) { - $articles = sectionArticles[i]; - for (j = 0; j < $articles.length; j++) { - if (tag === '' || tag === undefined) { - result[i] || (result[i] = {}); - result[i][j] = true; - } else { - var tags = $articles.eq(j).data('tags').split(','); - for (k = 0; k < tags.length; k++) { - if (tags[k] === tag) { - result[i] || (result[i] = {}); - result[i][j] = true; break; - } - } - } - } - } - - for (i = 0; i < sectionArticles.length; i++) { - result[i] && $sections.eq(i).removeClass('d-none'); - result[i] || $sections.eq(i).addClass('d-none'); - for (j = 0; j < sectionArticles[i].length; j++) { - if (result[i] && result[i][j]) { - sectionArticles[i].eq(j).removeClass('d-none'); - } else { - sectionArticles[i].eq(j).addClass('d-none'); - } - } - } - - hasInit || ($result.removeClass('d-none'), hasInit = true); - - - if (target) { - buttonFocus(target); - _tag = target.attr('data-encode'); - if (_tag === '' || typeof _tag !== 'string') { - setUrlQuery(); - } else { - setUrlQuery('?tag=' + _tag); - } - } else { - buttonFocus(searchButtonsByTag(tag)); - } - } - - var query = queryString(), _tag = query.tag; - init(); tagSelect(_tag); - $tags.on('click', 'button', function() { - tagSelect($(this).data('encode'), $(this)); - }); - - }); -})(); diff --git a/_includes/scripts/article.js b/_includes/scripts/article.js deleted file mode 100644 index 9b18ef5bb31..00000000000 --- a/_includes/scripts/article.js +++ /dev/null @@ -1,24 +0,0 @@ -(function() { - var SOURCES = window.TEXT_VARIABLES.sources; - window.Lazyload.js(SOURCES.jquery, function() { - $(function() { - var $this ,$scroll; - var $articleContent = $('.js-article-content'); - var hasSidebar = $('.js-page-root').hasClass('layout--page--sidebar'); - var scroll = hasSidebar ? '.js-page-main' : 'html, body'; - $scroll = $(scroll); - - $articleContent.find('.highlight').each(function() { - $this = $(this); - $this.attr('data-lang', $this.find('code').attr('data-lang')); - }); - $articleContent.find('h1[id], h2[id], h3[id], h4[id], h5[id], h6[id]').each(function() { - $this = $(this); - $this.append($('').html('')); - }); - $articleContent.on('click', '.anchor', function() { - $scroll.scrollToAnchor('#' + $(this).parent().attr('id'), 400); - }); - }); - }); -})(); diff --git a/_includes/scripts/aside/affix.js b/_includes/scripts/aside/affix.js deleted file mode 100644 index 1db3b8e7c4c..00000000000 --- a/_includes/scripts/aside/affix.js +++ /dev/null @@ -1,26 +0,0 @@ -(function() { - var SOURCES = window.TEXT_VARIABLES.sources; - window.Lazyload.js(SOURCES.jquery, function() { - var $window = $(window), $pageFooter = $('.js-page-footer'); - var $pageAside = $('.js-page-aside'); - var affix; - var tocDisabled = false; - var hasSidebar = $('.js-page-root').hasClass('layout--page--sidebar'); - - affix = $pageAside.affix({ - offsetBottom: $pageFooter.outerHeight(), - scrollTarget: hasSidebar ? '.js-page-main' : null, - scroller: hasSidebar ? '.js-page-main' : null, - scroll: hasSidebar ? $('.js-page-main').children() : null, - disabled: tocDisabled - }); - - $window.on('resize', window.throttle(function() { - affix && affix.setOptions({ - disabled: tocDisabled - }); - }, 100)); - - window.pageAsideAffix = affix; - }); -})(); diff --git a/_includes/scripts/aside/toc.js b/_includes/scripts/aside/toc.js deleted file mode 100644 index a19ea95b96c..00000000000 --- a/_includes/scripts/aside/toc.js +++ /dev/null @@ -1,35 +0,0 @@ -(function() { - var SOURCES = window.TEXT_VARIABLES.sources; - var TOC_SELECTOR = window.TEXT_VARIABLES.site.toc.selectors; - window.Lazyload.js(SOURCES.jquery, function() { - var $window = $(window); - var $articleContent = $('.js-article-content'); - var $tocRoot = $('.js-toc-root'), $col2 = $('.js-col-aside'); - var toc; - var tocDisabled = false; - var hasSidebar = $('.js-page-root').hasClass('layout--page--sidebar'); - var hasToc = $articleContent.find(TOC_SELECTOR).length > 0; - - function disabled() { - return $col2.css('display') === 'none' || !hasToc; - } - - tocDisabled = disabled(); - - toc = $tocRoot.toc({ - selectors: TOC_SELECTOR, - container: $articleContent, - scrollTarget: hasSidebar ? '.js-page-main' : null, - scroller: hasSidebar ? '.js-page-main' : null, - disabled: tocDisabled - }); - - $window.on('resize', window.throttle(function() { - tocDisabled = disabled(); - toc && toc.setOptions({ - disabled: tocDisabled - }); - }, 100)); - - }); -})(); diff --git a/_includes/scripts/common.js b/_includes/scripts/common.js deleted file mode 100644 index 09400a2ae01..00000000000 --- a/_includes/scripts/common.js +++ /dev/null @@ -1,7 +0,0 @@ -(function () { - var $root = document.getElementsByClassName('root')[0]; - if (window.hasEvent('touchstart')) { - $root.dataset.isTouch = true; - document.addEventListener('touchstart', function(){}, false); - } -})(); diff --git a/_includes/scripts/components/lightbox.js b/_includes/scripts/components/lightbox.js deleted file mode 100644 index 51689c2e5b3..00000000000 --- a/_includes/scripts/components/lightbox.js +++ /dev/null @@ -1,49 +0,0 @@ -{%- include scripts/utils/imagesLoad.js -%} -(function () { - var SOURCES = window.TEXT_VARIABLES.sources; - window.Lazyload.js(SOURCES.jquery, function() { - var $pageGalleryModal = $('.js-page-gallery-modal'); - var $images = $('.page__content').find('img:not(.lightbox-ignore)'); - window.imagesLoad($images).then(function() { - /* global Gallery */ - var pageGalleryModal = $pageGalleryModal.modal({ onChange: handleModalChange }); - var gallery = null; - var modalVisible = false; - var i, items = [], image, item; - if($images && $images.length > 0) { - for (i = 0; i < $images.length; i++) { - image = $images.eq(i); - if (image.get(0).naturalWidth > 800) { - items.push({ src: image.attr('src'), w: image.get(0).naturalWidth, h: image.get(0).naturalHeight, $el: image}); - } - } - } - - if(items.length > 0) { - gallery = new Gallery('.gallery', items); - gallery.setOptions({ disabled: !modalVisible }); - gallery.init(); - for (i = 0; i < items.length; i++) { - item = items[i]; - item.$el && (item.$el.addClass('popup-image'), item.$el.on('click', (function() { - var index = i; - return function() { - pageGalleryModal.show(); - gallery.setOptions({ initialSlide: index }); - gallery.refresh(true, { animation: false }); - }; - })())); - } - } - - function handleModalChange(visible) { - modalVisible = visible; - gallery && gallery.setOptions({ disabled: !modalVisible }); - } - - $pageGalleryModal.on('click', function() { - pageGalleryModal.hide(); - }); - }); - }); -})(); diff --git a/_includes/scripts/components/search.js b/_includes/scripts/components/search.js deleted file mode 100644 index e1c8c27884f..00000000000 --- a/_includes/scripts/components/search.js +++ /dev/null @@ -1,86 +0,0 @@ - -(function () { - var SOURCES = window.TEXT_VARIABLES.sources; - window.Lazyload.js(SOURCES.jquery, function() { - // search panel - var search = (window.search || (window.search = {})); - var useDefaultSearchBox = window.useDefaultSearchBox === undefined ? - true : window.useDefaultSearchBox ; - - var $searchModal = $('.js-page-search-modal'); - var $searchToggle = $('.js-search-toggle'); - var searchModal = $searchModal.modal({ onChange: handleModalChange, hideWhenWindowScroll: true }); - var modalVisible = false; - search.searchModal = searchModal; - - var $searchBox = null; - var $searchInput = null; - var $searchClear = null; - - function getModalVisible() { - return modalVisible; - } - search.getModalVisible = getModalVisible; - - function handleModalChange(visible) { - modalVisible = visible; - if (visible) { - search.onShow && search.onShow(); - useDefaultSearchBox && $searchInput[0] && $searchInput[0].focus(); - } else { - search.onShow && search.onHide(); - useDefaultSearchBox && $searchInput[0] && $searchInput[0].blur(); - setTimeout(function() { - useDefaultSearchBox && ($searchInput.val(''), $searchBox.removeClass('not-empty')); - search.clear && search.clear(); - window.pageAsideAffix && window.pageAsideAffix.refresh(); - }, 400); - } - } - - $searchToggle.on('click', function() { - modalVisible ? searchModal.hide() : searchModal.show(); - }); - // Char Code: 83 S, 191 / - $(window).on('keyup', function(e) { - if (!modalVisible && !window.isFormElement(e.target || e.srcElement) && (e.which === 83 || e.which === 191)) { - modalVisible || searchModal.show(); - } - }); - - if (useDefaultSearchBox) { - $searchBox = $('.js-search-box'); - $searchInput = $searchBox.children('input'); - $searchClear = $searchBox.children('.js-icon-clear'); - search.getSearchInput = function() { - return $searchInput.get(0); - }; - search.getVal = function() { - return $searchInput.val(); - }; - search.setVal = function(val) { - $searchInput.val(val); - }; - - $searchInput.on('focus', function() { - $(this).addClass('focus'); - }); - $searchInput.on('blur', function() { - $(this).removeClass('focus'); - }); - $searchInput.on('input', window.throttle(function() { - var val = $(this).val(); - if (val === '' || typeof val !== 'string') { - search.clear && search.clear(); - } else { - $searchBox.addClass('not-empty'); - search.onInputNotEmpty && search.onInputNotEmpty(val); - } - }, 400)); - $searchClear.on('click', function() { - $searchInput.val(''); $searchBox.removeClass('not-empty'); - search.clear && search.clear(); - }); - } - }); -})(); diff --git a/_includes/scripts/components/sidebar.js b/_includes/scripts/components/sidebar.js deleted file mode 100644 index 92c55915087..00000000000 --- a/_includes/scripts/components/sidebar.js +++ /dev/null @@ -1,30 +0,0 @@ -(function() { - var SOURCES = window.TEXT_VARIABLES.sources; - - window.Lazyload.js(SOURCES.jquery, function() { - var $pageMask = $('.js-page-mask'); - var $pageRoot = $('.js-page-root'); - var $sidebarShow = $('.js-sidebar-show'); - var $sidebarHide = $('.js-sidebar-hide'); - - function freeze(e) { - if (e.target === $pageMask[0]) { - e.preventDefault(); - } - } - function stopBodyScrolling(bool) { - if (bool === true) { - window.addEventListener('touchmove', freeze, { passive: false }); - } else { - window.removeEventListener('touchmove', freeze, { passive: false }); - } - } - - $sidebarShow.on('click', function() { - stopBodyScrolling(true); $pageRoot.addClass('show-sidebar'); - }); - $sidebarHide.on('click', function() { - stopBodyScrolling(false); $pageRoot.removeClass('show-sidebar'); - }); - }); -})(); diff --git a/_includes/scripts/home.js b/_includes/scripts/home.js deleted file mode 100644 index 91d05b98986..00000000000 --- a/_includes/scripts/home.js +++ /dev/null @@ -1,3 +0,0 @@ -/*(function () { - -})();*/ diff --git a/_includes/scripts/lib/affix.js b/_includes/scripts/lib/affix.js deleted file mode 100644 index 779442fca8a..00000000000 --- a/_includes/scripts/lib/affix.js +++ /dev/null @@ -1,111 +0,0 @@ -(function() { - var SOURCES = window.TEXT_VARIABLES.sources; - window.Lazyload.js(SOURCES.jquery, function() { - function affix(options) { - var $root = this, $window = $(window), $scrollTarget, $scroll, - offsetBottom = 0, scrollTarget = window, scroll = window.document, disabled = false, isOverallScroller = true, - rootTop, rootLeft, rootHeight, scrollBottom, rootBottomTop, - hasInit = false, curState; - - function setOptions(options) { - var _options = options || {}; - _options.offsetBottom && (offsetBottom = _options.offsetBottom); - _options.scrollTarget && (scrollTarget = _options.scrollTarget); - _options.scroll && (scroll = _options.scroll); - _options.disabled !== undefined && (disabled = _options.disabled); - $scrollTarget = $(scrollTarget); - isOverallScroller = window.isOverallScroller($scrollTarget[0]); - $scroll = $(scroll); - } - function preCalc() { - top(); - rootHeight = $root.outerHeight(); - rootTop = $root.offset().top + (isOverallScroller ? 0 : $scrollTarget.scrollTop()); - rootLeft = $root.offset().left; - } - function calc(needPreCalc) { - needPreCalc && preCalc(); - scrollBottom = $scroll.outerHeight() - offsetBottom - rootHeight; - rootBottomTop = scrollBottom - rootTop; - } - function top() { - if (curState !== 'top') { - $root.removeClass('fixed').css({ - left: 0, - top: 0 - }); - curState = 'top'; - } - } - function fixed() { - if (curState !== 'fixed') { - $root.addClass('fixed').css({ - left: rootLeft + 'px', - top: 0 - }); - curState = 'fixed'; - } - } - function bottom() { - if (curState !== 'bottom') { - $root.removeClass('fixed').css({ - left: 0, - top: rootBottomTop + 'px' - }); - curState = 'bottom'; - } - } - function setState() { - var scrollTop = $scrollTarget.scrollTop(); - if (scrollTop >= rootTop && scrollTop <= scrollBottom) { - fixed(); - } else if (scrollTop < rootTop) { - top(); - } else { - bottom(); - } - } - function init() { - if(!hasInit) { - var interval, timeout; - calc(true); setState(); - // run calc every 100 millisecond - interval = setInterval(function() { - calc(); - }, 100); - timeout = setTimeout(function() { - clearInterval(interval); - }, 45000); - window.pageLoad.then(function() { - setTimeout(function() { - clearInterval(interval); - clearTimeout(timeout); - }, 3000); - }); - $scrollTarget.on('scroll', function() { - disabled || setState(); - }); - $window.on('resize', function() { - disabled || (calc(true), setState()); - }); - hasInit = true; - } - } - - setOptions(options); - if (!disabled) { - init(); - } - $window.on('resize', window.throttle(function() { - init(); - }, 200)); - return { - setOptions: setOptions, - refresh: function() { - calc(true, { animation: false }); setState(); - } - }; - } - $.fn.affix = affix; - }); -})(); diff --git a/_includes/scripts/lib/gallery.js b/_includes/scripts/lib/gallery.js deleted file mode 100644 index 1793f040d18..00000000000 --- a/_includes/scripts/lib/gallery.js +++ /dev/null @@ -1,192 +0,0 @@ -(function() { - {%- include scripts/lib/swiper.js -%} - var SOURCES = window.TEXT_VARIABLES.sources; - window.Lazyload.js(SOURCES.jquery, function() { - var template = - ''; - function setState($item, zoom, translate) { - $item.css('transform', 'scale(' + zoom + ') translate(' + translate.x + 'px,' + translate.y + 'px)'); - } - function Gallery(root, items) { - this.$root = $(root); - this.$swiper = null; - this.$swiperWrapper = null; - this.$activeItem = null; - this.$items = []; - this.contentWidth = 0; - this.contentHeight = 0; - this.swiper = null; - this.items = items; - this.disabled = false; - this.curIndex = 0; - this.touchCenter = null; - this.lastTouchCenter = null; - this.zoomRect = null; - this.lastZoomRect = null; - this.lastTranslate = null; - this.translate = null; - this.lastZoom = 1; - this.preZoom = 1; - this.zoom = 1; - } - Gallery.prototype.init = function() { - var i, item, items = this.items, size, self = this, touchstartFingerCount = 0; - this.$root.append(template); - this.$swiper = this.$root.find('.gallery__swiper'); - this.$swiperWrapper = this.$root.find('.swiper__wrapper'); - this.contentWidth = this.$swiperWrapper && this.$swiperWrapper.width(); - this.contentHeight = this.$swiperWrapper && this.$swiperWrapper.height(); - for (i = 0; i < items.length; i++) { - item = items[i]; - size = this._calculateImageSize(item.w, item.h); - this.$items.push($( - '
' + - '' + - '
' - )); - } - this.$swiperWrapper && this.$swiperWrapper.append(this.$items); - this.swiper = this.$swiper && this.$swiper.swiper({ - onChangeEnd: function() { - self._handleChangeEnd.apply(self, Array.prototype.slice.call(arguments)); - } - }); - $(window).on('resize', function() { - if (self.disabled) { return; } - self._resizeImageSize(); - }); - // Char Code: 37 ⬅, 39 ➡ - $(window).on('keyup', function(e) { - if (window.isFormElement(e.target || e.srcElement) || self.disabled) { return; } - if (e.which === 37) { - self.swiper && self.swiper.previous(); - } else if (e.which === 39) { - self.swiper && self.swiper.next(); - } - }); - function getRect(touch0, touch1) { - return { - o: { - x: (touch0.pageX + touch1.pageX) / 2, - y: (touch0.pageY + touch1.pageY) / 2 - }, - w: Math.abs(touch0.pageX - touch1.pageX), - h: Math.abs(touch0.pageY - touch1.pageY) - }; - } - function getTouches(e) { - return e.touches || e; - } - function getTouchesCount(e) { - if (e.touches) { - return e.touches.length; - } else { - return 1; - } - } - this.$swiperWrapper.on('touchstart', function(e) { - var touch0, touch1, rect; - touchstartFingerCount = getTouchesCount(e); - if (touchstartFingerCount > 1) { - touch0 = e.touches[0]; - touch1 = e.touches[1]; - rect = getRect(touch0, touch1); - self.lastZoomRect = { w: rect.w, h: rect.h }; - self.lastTouchCenter = rect.o; - } else { - var touch = getTouches(e)[0]; - self.lastTouchCenter = { x: touch.pageX, y: touch.pageY }; - } - }); - this.$swiperWrapper.on('touchmove', function(e) { - if (touchstartFingerCount === getTouchesCount(e)) { - if (touchstartFingerCount > 1) { - var touch0 = e.touches[0]; - var touch1 = e.touches[1]; - var rect = getRect(touch0, touch1); - self.zoomRect = { w: rect.w, h: rect.h }; - self.touchCenter = rect.o; - self._zoom(); self._translate(); - setState(self.$activeItem, self.zoom, self.translate); - } else { - var touch = getTouches(e)[0]; - self.touchCenter = { x: touch.pageX, y: touch.pageY }; - self._translate(); - setState(self.$activeItem, self.zoom, self.translate); - } - } - }); - this.$swiperWrapper.on('touchend', function(e) { - self.lastZoom = self.zoom; - self.lastTranslate = self.translate; - touchstartFingerCount = 0; - }); - this.$root.on('touchmove', function(e) { - if (self.disabled) { return; } - e.preventDefault(); - }); - }; - - Gallery.prototype._translate = function() { - this.translate = this.touchCenter && this.lastTouchCenter && this.lastTranslate ? { - x: (this.touchCenter.x - this.lastTouchCenter.x) / this.zoom + this.lastTranslate.x, - y: (this.touchCenter.y - this.lastTouchCenter.y) / this.zoom + this.lastTranslate.y - } : { x: 0, y: 0 }; - } - Gallery.prototype._zoom = function() { - this.zoom = (this.zoomRect.w + this.zoomRect.h) / (this.lastZoomRect.w + this.lastZoomRect.h) * this.lastZoom; - this.zoom > 1 ? this.$activeItem.addClass('zoom') : this.$activeItem.removeClass('zoom'); - this.preZoom = this.zoom; - } - - Gallery.prototype._calculateImageSize = function(w, h) { - var scale = 1; - if (this.contentWidth > 0 && this.contentHeight > 0 && w > 0 && h > 0) { - scale = Math.min( - Math.min(w, this.contentWidth) / w, - Math.min(h, this.contentHeight) / h); - } - return { w: Math.floor(w * scale), h: Math.floor(h * scale) }; - }; - - Gallery.prototype._resizeImageSize = function() { - var i, $item, $items = this.$items, item, size; - this.contentWidth = this.$swiperWrapper && this.$swiperWrapper.width(); - this.contentHeight = this.$swiperWrapper && this.$swiperWrapper.height(); - if ($items.length < 1) { return; } - for (i = 0; i < $items.length; i++) { - item = this.items[i], $item = $items[i]; - size = this._calculateImageSize(item.w, item.h); - item.width = size.w; item.height = size.h; - $item && $item.find('img').css({ width: size.w, height: size.h }); - } - }; - Gallery.prototype._handleChangeEnd = function(index, $dom, preIndex, $preDom) { - this.curIndex = index; - this.lastZoomRect = null; this.lastZoomRect = null; - this.lastTranslate = this.translate = { x: 0, y:0 }; - this.lastZoom = this.preZoom = this.zoom = 1; - this.$activeItem = $dom.find('.gallery-item__content'); - setState($preDom.find('.gallery-item__content'), this.zoom, this.translate); - }; - - Gallery.prototype.refresh = function() { - this.swiper && this.swiper.refresh(); - this._resizeImageSize(); - }; - Gallery.prototype.setOptions = function(options) { - this.disabled = options.disabled; - this.swiper && this.swiper.setOptions(options); - }; - window.Gallery = Gallery; - }); -})(); \ No newline at end of file diff --git a/_includes/scripts/lib/lazyload.js b/_includes/scripts/lib/lazyload.js deleted file mode 100644 index 9911535fa9d..00000000000 --- a/_includes/scripts/lib/lazyload.js +++ /dev/null @@ -1,143 +0,0 @@ -(function() { - var Set = (function() { - var add = function(item) { - var i, data = this._data; - for (i = 0; i < data.length; i++) { - if (data[i] === item) { - return; - } - } - this.size ++; - data.push(item); - return data; - }; - - var Set = function(data) { - this.size = 0; - this._data = []; - var i; - if (data.length > 0) { - for (i = 0; i < data.length; i++) { - add.call(this, data[i]); - } - } - }; - Set.prototype.add = add; - Set.prototype.get = function(index) { return this._data[index]; }; - Set.prototype.has = function(item) { - var i, data = this._data; - for (i = 0; i < data.length; i++) { - if (this.get(i) === item) { - return true; - } - } - return false; - }; - Set.prototype.is = function(map) { - if (map._data.length !== this._data.length) { return false; } - var i, j, flag, tData = this._data, mData = map._data; - for (i = 0; i < tData.length; i++) { - for (flag = false, j = 0; j < mData.length; j++) { - if (tData[i] === mData[j]) { - flag = true; - break; - } - } - if (!flag) { return false; } - } - return true; - }; - Set.prototype.values = function() { - return this._data; - }; - return Set; - })(); - - window.Lazyload = (function(doc) { - var queue = {js: [], css: []}, sources = {js: {}, css: {}}, context = this; - var createNode = function(name, attrs) { - var node = doc.createElement(name), attr; - for (attr in attrs) { - if (attrs.hasOwnProperty(attr)) { - node.setAttribute(attr, attrs[attr]); - } - } - return node; - }; - var end = function(type, url) { - var s, q, qi, cbs, i, j, cur, val, flag; - if (type === 'js' || type ==='css') { - s = sources[type], q = queue[type]; - s[url] = true; - for (i = 0; i < q.length; i++) { - cur = q[i]; - if (cur.urls.has(url)) { - qi = cur, val = qi.urls.values(); - qi && (cbs = qi.callbacks); - for (flag = true, j = 0; j < val.length; j++) { - cur = val[j]; - if (!s[cur]) { - flag = false; - } - } - if (flag && cbs && cbs.length > 0) { - for (j = 0; j < cbs.length; j++) { - cbs[j].call(context); - } - qi.load = true; - } - } - } - } - }; - var load = function(type, urls, callback) { - var s, q, qi, node, i, cur, - _urls = typeof urls === 'string' ? new Set([urls]) : new Set(urls), val, url; - if (type === 'js' || type ==='css') { - s = sources[type], q = queue[type]; - for (i = 0; i < q.length; i++) { - cur = q[i]; - if (_urls.is(cur.urls)) { - qi = cur; - break; - } - } - val = _urls.values(); - if (qi) { - callback && (qi.load || qi.callbacks.push(callback)); - callback && (qi.load && callback()); - } else { - q.push({ - urls: _urls, - callbacks: callback ? [callback] : [], - load: false - }); - for (i = 0; i < val.length; i++) { - node = null, url = val[i]; - if (s[url] === undefined) { - (type === 'js' ) && (node = createNode('script', { src: url })); - (type === 'css') && (node = createNode('link', { rel: 'stylesheet', href: url })); - if (node) { - node.onload = (function(type, url) { - return function() { - end(type, url); - }; - })(type, url); - (doc.head || doc.body).appendChild(node); - s[url] = false; - } - } - } - } - } - }; - return { - js: function(url, callback) { - load('js', url, callback); - }, - css: function(url, callback) { - load('css', url, callback); - } - }; - })(this.document); -})(); diff --git a/_includes/scripts/lib/modal.js b/_includes/scripts/lib/modal.js deleted file mode 100644 index cb5d188898f..00000000000 --- a/_includes/scripts/lib/modal.js +++ /dev/null @@ -1,64 +0,0 @@ -(function() { - var SOURCES = window.TEXT_VARIABLES.sources; - window.Lazyload.js(SOURCES.jquery, function() { - var $body = $('body'), $window = $(window); - var $pageRoot = $('.js-page-root'), $pageMain = $('.js-page-main'); - var activeCount = 0; - function modal(options) { - var $root = this, visible, onChange, hideWhenWindowScroll = false; - var scrollTop; - function setOptions(options) { - var _options = options || {}; - visible = _options.initialVisible === undefined ? false : show; - onChange = _options.onChange; - hideWhenWindowScroll = _options.hideWhenWindowScroll; - } - function init() { - setState(visible); - } - function setState(isShow) { - if (isShow === visible) { - return; - } - visible = isShow; - if (visible) { - activeCount++; - scrollTop = $(window).scrollTop() || $pageMain.scrollTop(); - $root.addClass('modal--show'); - $pageMain.scrollTop(scrollTop); - activeCount === 1 && ($pageRoot.addClass('show-modal'), $body.addClass('of-hidden')); - hideWhenWindowScroll && window.hasEvent('touchstart') && $window.on('scroll', hide); - $window.on('keyup', handleKeyup); - } else { - activeCount > 0 && activeCount--; - $root.removeClass('modal--show'); - $window.scrollTop(scrollTop); - activeCount === 0 && ($pageRoot.removeClass('show-modal'), $body.removeClass('of-hidden')); - hideWhenWindowScroll && window.hasEvent('touchstart') && $window.off('scroll', hide); - $window.off('keyup', handleKeyup); - } - onChange && onChange(visible); - } - function show() { - setState(true); - } - function hide() { - setState(false); - } - function handleKeyup(e) { - // Char Code: 27 ESC - if (e.which === 27) { - hide(); - } - } - setOptions(options); - init(); - return { - show: show, - hide: hide, - $el: $root - }; - } - $.fn.modal = modal; - }); -})(); diff --git a/_includes/scripts/lib/scroll-to.js b/_includes/scripts/lib/scroll-to.js deleted file mode 100644 index e5a0ea24e9f..00000000000 --- a/_includes/scripts/lib/scroll-to.js +++ /dev/null @@ -1,13 +0,0 @@ -(function() { - var SOURCES = window.TEXT_VARIABLES.sources; - window.Lazyload.js(SOURCES.jquery, function() { - function scrollToAnchor(anchor, duration, callback) { - var $root = this; - $root.animate({ scrollTop: $(anchor).position().top }, duration, function() { - window.history.replaceState(null, '', window.location.href.split('#')[0] + anchor); - callback && callback(); - }); - } - $.fn.scrollToAnchor = scrollToAnchor; - }); -})(); diff --git a/_includes/scripts/lib/swiper.js b/_includes/scripts/lib/swiper.js deleted file mode 100644 index 3d06419ccb7..00000000000 --- a/_includes/scripts/lib/swiper.js +++ /dev/null @@ -1,203 +0,0 @@ -(function() { - var SOURCES = window.TEXT_VARIABLES.sources; - window.Lazyload.js(SOURCES.jquery, function() { - function swiper(options) { - var $window = $(window), $root = this, $swiperWrapper, $swiperSlides, $swiperButtonPrev, $swiperButtonNext, - initialSlide, animation, onChange, onChangeEnd, - rootWidth, count, preIndex, curIndex, translateX, CRITICAL_ANGLE = Math.PI / 3; - - function setOptions(options) { - var _options = options || {}; - initialSlide = _options.initialSlide || 0; - animation = _options.animation === undefined && true; - onChange = onChange || _options.onChange; - onChangeEnd = onChangeEnd || _options.onChangeEnd; - } - - function init() { - $swiperWrapper = $root.find('.swiper__wrapper'); - $swiperSlides = $root.find('.swiper__slide'); - $swiperButtonPrev = $root.find('.swiper__button--prev'); - $swiperButtonNext = $root.find('.swiper__button--next'); - animation && $swiperWrapper.addClass('swiper__wrapper--animation'); - calc(true); - } - - function preCalc() { - rootWidth = $root.width(); - count = $swiperWrapper.children('.swiper__slide').length; - if (count < 2) { - $swiperButtonPrev.addClass('d-none'); - $swiperButtonNext.addClass('d-none'); - } - curIndex = initialSlide || 0; - translateX = getTranslateXFromCurIndex(); - } - - var calc = (function() { - var preAnimation, $swiperSlide, $preSwiperSlide; - return function (needPreCalc, params) { - needPreCalc && preCalc(); - var _animation = (params && params.animation !== undefined) ? params.animation : animation; - if (preAnimation === undefined || preAnimation !== _animation) { - preAnimation = _animation ? $swiperWrapper.addClass('swiper__wrapper--animation') : - $swiperWrapper.removeClass('swiper__wrapper--animation'); - } - if (preIndex !== curIndex) { - ($preSwiperSlide = $swiperSlides.eq(preIndex)).removeClass('active'); - ($swiperSlide = $swiperSlides.eq(curIndex)).addClass('active'); - onChange && onChange(curIndex, $swiperSlides.eq(curIndex), $swiperSlide, $preSwiperSlide); - if (onChangeEnd) { - if (_animation) { - setTimeout(function() { - onChangeEnd(curIndex, $swiperSlides.eq(curIndex), $swiperSlide, $preSwiperSlide); - }, 400); - } else { - onChangeEnd(curIndex, $swiperSlides.eq(curIndex), $swiperSlide, $preSwiperSlide); - } - } - preIndex = curIndex; - } - $swiperWrapper.css('transform', 'translate(' + translateX + 'px, 0)'); - if (count > 1) { - if (curIndex <= 0) { - $swiperButtonPrev.addClass('disabled'); - } else { - $swiperButtonPrev.removeClass('disabled'); - } - if (curIndex >= count - 1) { - $swiperButtonNext.addClass('disabled'); - } else { - $swiperButtonNext.removeClass('disabled'); - } - } - }; - })(); - - function getTranslateXFromCurIndex() { - return curIndex <= 0 ? 0 : - rootWidth * curIndex; - } - - function moveToIndex(index ,params) { - preIndex = curIndex; - curIndex = index; - translateX = getTranslateXFromCurIndex(); - calc(false, params); - } - - function move(type) { - var nextIndex = curIndex, unstableTranslateX; - if (type === 'prev') { - nextIndex > 0 && nextIndex--; - } else if (type === 'next') { - nextIndex < count - 1 && nextIndex++; - } - if (type === 'cur') { - moveToIndex(curIndex, { animation: true }); - return; - } - unstableTranslateX = translateX % rootWidth !== 0; - if (nextIndex !== curIndex || unstableTranslateX) { - unstableTranslateX ? moveToIndex(nextIndex, { animation: true }) : moveToIndex(nextIndex); - } - } - - setOptions(options); - init(); - preIndex = curIndex; - - $swiperButtonPrev.on('click', function(e) { - e.stopPropagation(); - move('prev'); - }); - $swiperButtonNext.on('click', function(e) { - e.stopPropagation(); - move('next'); - }); - $window.on('resize', function() { - calc(true, { animation: false }); - }); - - (function() { - var pageX, pageY, velocityX, preTranslateX = translateX, timeStamp, touching; - function handleTouchstart(e) { - var point = e.touches ? e.touches[0] : e; - pageX = point.pageX; - pageY = point.pageY; - velocityX = 0; - preTranslateX = translateX; - } - function handleTouchmove(e) { - if (e.touches && e.touches.length > 1) { - return; - } - var point = e.touches ? e.touches[0] : e; - var deltaX = point.pageX - pageX; - var deltaY = point.pageY - pageY; - velocityX = deltaX / (e.timeStamp - timeStamp); - timeStamp = e.timeStamp; - if (e.cancelable && Math.abs(Math.atan(deltaY / deltaX)) < CRITICAL_ANGLE) { - touching = true; - translateX += deltaX; - calc(false, { animation: false }); - } - pageX = point.pageX; - pageY = point.pageY; - } - function handleTouchend() { - touching = false; - var deltaX = translateX - preTranslateX; - var distance = deltaX + velocityX * rootWidth; - if (Math.abs(distance) > rootWidth / 2) { - distance > 0 ? move('prev') : move('next'); - } else { - move('cur'); - } - } - $swiperWrapper.on('touchstart', handleTouchstart); - $swiperWrapper.on('touchmove', handleTouchmove); - $swiperWrapper.on('touchend', handleTouchend); - $swiperWrapper.on('touchcancel', handleTouchend); - - (function() { - var pressing = false, moved = false; - $swiperWrapper.on('mousedown', function(e) { - pressing = true; handleTouchstart(e); - }); - $swiperWrapper.on('mousemove', function(e) { - pressing && (e.preventDefault(), moved = true, handleTouchmove(e)); - }); - $swiperWrapper.on('mouseup', function(e) { - pressing && (pressing = false, handleTouchend(e)); - }); - $swiperWrapper.on('mouseleave', function(e) { - pressing && (pressing = false, handleTouchend(e)); - }); - $swiperWrapper.on('click', function(e) { - moved && (e.stopPropagation(), moved = false); - }); - })(); - - $root.on('touchmove', function(e) { - if (e.cancelable & touching) { - e.preventDefault(); - } - }); - })(); - - return { - setOptions: setOptions, - previous: function(){ - move('prev'); - }, - next: function(){ - move('next'); - }, - refresh: function() { - calc(true, { animation: false }); - } - }; - } - $.fn.swiper = swiper; - }); -})(); diff --git a/_includes/scripts/lib/throttle.js b/_includes/scripts/lib/throttle.js deleted file mode 100644 index 2add23c8b9d..00000000000 --- a/_includes/scripts/lib/throttle.js +++ /dev/null @@ -1,28 +0,0 @@ -(function() { - window.throttle = function(func, wait) { - var args, result, thisArg, timeoutId, lastCalled = 0; - - function trailingCall() { - lastCalled = new Date; - timeoutId = null; - result = func.apply(thisArg, args); - } - return function() { - var now = new Date, - remaining = wait - (now - lastCalled); - - args = arguments; - thisArg = this; - - if (remaining <= 0) { - clearTimeout(timeoutId); - timeoutId = null; - lastCalled = now; - result = func.apply(thisArg, args); - } else if (!timeoutId) { - timeoutId = setTimeout(trailingCall, remaining); - } - return result; - }; - }; -})(); diff --git a/_includes/scripts/lib/toc.js b/_includes/scripts/lib/toc.js deleted file mode 100644 index fb43857715b..00000000000 --- a/_includes/scripts/lib/toc.js +++ /dev/null @@ -1,107 +0,0 @@ -(function() { - var SOURCES = window.TEXT_VARIABLES.sources; - window.Lazyload.js(SOURCES.jquery, function() { - function toc(options) { - var $root = this, $window = $(window), $scrollTarget, $scroller, $tocUl = $('
    '), $tocLi, $headings, $activeLast, $activeCur, - selectors = 'h1,h2,h3', container = 'body', scrollTarget = window, scroller = 'html, body', disabled = false, - headingsPos, scrolling = false, hasRendered = false, hasInit = false; - - function setOptions(options) { - var _options = options || {}; - _options.selectors && (selectors = _options.selectors); - _options.container && (container = _options.container); - _options.scrollTarget && (scrollTarget = _options.scrollTarget); - _options.scroller && (scroller = _options.scroller); - _options.disabled !== undefined && (disabled = _options.disabled); - $headings = $(container).find(selectors).filter('[id]'); - $scrollTarget = $(scrollTarget); - $scroller = $(scroller); - } - function calc() { - headingsPos = []; - $headings.each(function() { - headingsPos.push(Math.floor($(this).position().top)); - }); - } - function setState(element, disabled) { - var scrollTop = $scrollTarget.scrollTop(), i; - if (disabled || !headingsPos || headingsPos.length < 1) { return; } - if (element) { - $activeCur = element; - } else { - for (i = 0; i < headingsPos.length; i++) { - if (scrollTop >= headingsPos[i]) { - $activeCur = $tocLi.eq(i); - } else { - $activeCur || ($activeCur = $tocLi.eq(i)); - break; - } - } - } - $activeLast && $activeLast.removeClass('active'); - ($activeLast = $activeCur).addClass('active'); - } - function render() { - if(!hasRendered) { - $root.append($tocUl); - $headings.each(function() { - var $this = $(this); - $tocUl.append($('
  • ').addClass('toc-' + $this.prop('tagName').toLowerCase()) - .append($('').text($this.text()).attr('href', '#' + $this.prop('id')))); - }); - $tocLi = $tocUl.children('li'); - $tocUl.on('click', 'a', function(e) { - e.preventDefault(); - var $this = $(this); - scrolling = true; - setState($this.parent()); - $scroller.scrollToAnchor($this.attr('href'), 400, function() { - scrolling = false; - }); - }); - } - hasRendered = true; - } - function init() { - var interval, timeout; - if(!hasInit) { - render(); calc(); setState(null, scrolling); - // run calc every 100 millisecond - interval = setInterval(function() { - calc(); - }, 100); - timeout = setTimeout(function() { - clearInterval(interval); - }, 45000); - window.pageLoad.then(function() { - setTimeout(function() { - clearInterval(interval); - clearTimeout(timeout); - }, 3000); - }); - $scrollTarget.on('scroll', function() { - disabled || setState(null, scrolling); - }); - $window.on('resize', window.throttle(function() { - if (!disabled) { - render(); calc(); setState(null, scrolling); - } - }, 100)); - } - hasInit = true; - } - - setOptions(options); - if (!disabled) { - init(); - } - $window.on('resize', window.throttle(function() { - init(); - }, 200)); - return { - setOptions: setOptions - }; - } - $.fn.toc = toc; - }); -})(); diff --git a/_includes/scripts/page.js b/_includes/scripts/page.js deleted file mode 100644 index 91d05b98986..00000000000 --- a/_includes/scripts/page.js +++ /dev/null @@ -1,3 +0,0 @@ -/*(function () { - -})();*/ diff --git a/_includes/scripts/utils/imagesLoad.js b/_includes/scripts/utils/imagesLoad.js deleted file mode 100644 index 63a6bdfcc05..00000000000 --- a/_includes/scripts/utils/imagesLoad.js +++ /dev/null @@ -1,28 +0,0 @@ -(function() { - window.imagesLoad = function(images) { - images = images || document.getElementsByTagName('img'); - var imagesCount = images.length, loadedCount = 0, image; - var i, j, loaded = false, cbs = []; - imagesCount < 1 && (loaded = true); - for (i = 0; i < imagesCount; i++) { - image = images[i]; - image.complete ? handleImageLoad() : image.addEventListener('load', handleImageLoad); - } - function handleImageLoad() { - loadedCount++; - if (loadedCount === imagesCount) { - loaded = true; - if (cbs.length > 0) { - for (j = 0; j < cbs.length; j++) { - cbs[j](); - } - } - } - } - return { - then: function(cb) { - cb && (loaded ? cb() : (cbs.push(cb))); - } - }; - }; -})(); diff --git a/_includes/scripts/utils/utils.js b/_includes/scripts/utils/utils.js deleted file mode 100644 index e7bce45c1ba..00000000000 --- a/_includes/scripts/utils/utils.js +++ /dev/null @@ -1,39 +0,0 @@ -(function() { - window.isArray = function(val) { - return Object.prototype.toString.call(val) === '[object Array]'; - }; - window.isString = function(val) { - return typeof val === 'string'; - }; - - window.hasEvent = function(event) { - return 'on'.concat(event) in window.document; - }; - - window.isOverallScroller = function(node) { - return node === document.documentElement || node === document.body || node === window; - }; - - window.isFormElement = function(node) { - var tagName = node.tagName; - return tagName === 'INPUT' || tagName === 'SELECT' || tagName === 'TEXTAREA'; - }; - - window.pageLoad = (function () { - var loaded = false, cbs = []; - window.addEventListener('load', function () { - var i; - loaded = true; - if (cbs.length > 0) { - for (i = 0; i < cbs.length; i++) { - cbs[i](); - } - } - }); - return { - then: function(cb) { - cb && (loaded ? cb() : (cbs.push(cb))); - } - }; - })(); -})(); diff --git a/_includes/scripts/variables.html b/_includes/scripts/variables.html deleted file mode 100644 index 5bd1770354e..00000000000 --- a/_includes/scripts/variables.html +++ /dev/null @@ -1,35 +0,0 @@ -{%- include snippets/get-sources.html -%} -{%- assign _sources = __return -%} - -{%- include snippets/get-nav-url.html path="/assets/search.js" -%} -{%- assign _paths_search_js = __return -%} - - diff --git a/_includes/search-providers/custom/search.html b/_includes/search-providers/custom/search.html deleted file mode 100644 index 1d7eba34603..00000000000 --- a/_includes/search-providers/custom/search.html +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/search-providers/default/search-data.js b/_includes/search-providers/default/search-data.js deleted file mode 100644 index f20e0c55cd6..00000000000 --- a/_includes/search-providers/default/search-data.js +++ /dev/null @@ -1,14 +0,0 @@ -window.TEXT_SEARCH_DATA={ - {%- for _collection in site.collections -%} - {%- unless forloop.first -%},{%- endunless -%} - '{{ _collection.label }}':[ - {%- for _article in _collection.docs -%} - {%- unless forloop.first -%},{%- endunless -%} - {'title':{{ _article.title | jsonify }}, - {%- include snippets/prepend-baseurl.html path=_article.url -%} - {%- assign _url = __return -%} - 'url':{{ _url | jsonify }}} - {%- endfor -%} - ] - {%- endfor -%} -}; diff --git a/_includes/search-providers/default/search.html b/_includes/search-providers/default/search.html deleted file mode 100644 index a21512cf3f1..00000000000 --- a/_includes/search-providers/default/search.html +++ /dev/null @@ -1,18 +0,0 @@ - - diff --git a/_includes/search-providers/default/search.js b/_includes/search-providers/default/search.js deleted file mode 100644 index bf69c28b48f..00000000000 --- a/_includes/search-providers/default/search.js +++ /dev/null @@ -1,112 +0,0 @@ -var SOURCES = window.TEXT_VARIABLES.sources; -var PAHTS = window.TEXT_VARIABLES.paths; -window.Lazyload.js([SOURCES.jquery, PAHTS.search_js], function() { - var search = (window.search || (window.search = {})); - var searchData = window.TEXT_SEARCH_DATA || {}; - - function memorize(f) { - var cache = {}; - return function () { - var key = Array.prototype.join.call(arguments, ','); - if (key in cache) return cache[key]; - else return cache[key] = f.apply(this, arguments); - }; - } - - /// search - function searchByQuery(query) { - var i, j, key, keys, cur, _title, result = {}; - keys = Object.keys(searchData); - for (i = 0; i < keys.length; i++) { - key = keys[i]; - for (j = 0; j < searchData[key].length; j++) { - cur = searchData[key][j], _title = cur.title; - if ((result[key] === undefined || result[key] && result[key].length < 4 ) - && _title.toLowerCase().indexOf(query.toLowerCase()) >= 0) { - if (result[key] === undefined) { - result[key] = []; - } - result[key].push(cur); - } - } - } - return result; - } - - var renderHeader = memorize(function(header) { - return $('

    ' + header + '

    '); - }); - - var renderItem = function(index, title, url) { - return $('
  • ' + title + '
  • '); - }; - - function render(data) { - if (!data) { return null; } - var $root = $('
      '), i, j, key, keys, cur, itemIndex = 0; - keys = Object.keys(data); - for (i = 0; i < keys.length; i++) { - key = keys[i]; - $root.append(renderHeader(key)); - for (j = 0; j < data[key].length; j++) { - cur = data[key][j]; - $root.append(renderItem(itemIndex++, cur.title, cur.url)); - } - } - return $root; - } - - // search box - var $result = $('.js-search-result'), $resultItems; - var lastActiveIndex, activeIndex; - - function clear() { - $result.html(null); - $resultItems = $('.search-result__item'); activeIndex = 0; - } - function onInputNotEmpty(val) { - $result.html(render(searchByQuery(val))); - $resultItems = $('.search-result__item'); activeIndex = 0; - $resultItems.eq(0).addClass('active'); - } - - search.clear = clear; - search.onInputNotEmpty = onInputNotEmpty; - - function updateResultItems() { - lastActiveIndex >= 0 && $resultItems.eq(lastActiveIndex).removeClass('active'); - activeIndex >= 0 && $resultItems.eq(activeIndex).addClass('active'); - } - - function moveActiveIndex(direction) { - var itemsCount = $resultItems ? $resultItems.length : 0; - if (itemsCount > 1) { - lastActiveIndex = activeIndex; - if (direction === 'up') { - activeIndex = (activeIndex - 1 + itemsCount) % itemsCount; - } else if (direction === 'down') { - activeIndex = (activeIndex + 1 + itemsCount) % itemsCount; - } - updateResultItems(); - } - } - - // Char Code: 13 Enter, 37 ⬅, 38 ⬆, 39 ➡, 40 ⬇ - $(window).on('keyup', function(e) { - var modalVisible = search.getModalVisible && search.getModalVisible(); - if (modalVisible) { - if (e.which === 38) { - modalVisible && moveActiveIndex('up'); - } else if (e.which === 40) { - modalVisible && moveActiveIndex('down'); - } else if (e.which === 13) { - modalVisible && $resultItems && activeIndex >= 0 && $resultItems.eq(activeIndex).children('a')[0].click(); - } - } - }); - - $result.on('mouseover', '.search-result__item > a', function() { - var itemIndex = $(this).parent().data('index'); - itemIndex >= 0 && (lastActiveIndex = activeIndex, activeIndex = itemIndex, updateResultItems()); - }); -}); diff --git a/_includes/search-providers/google-custom-search-engine/search.html b/_includes/search-providers/google-custom-search-engine/search.html deleted file mode 100644 index cf132ab7c57..00000000000 --- a/_includes/search-providers/google-custom-search-engine/search.html +++ /dev/null @@ -1,21 +0,0 @@ -{%- if site.search.google.custom_search_engine_id -%} - - - -{%- endif -%} diff --git a/_includes/search-providers/google-custom-search-engine/search.js b/_includes/search-providers/google-custom-search-engine/search.js deleted file mode 100644 index 09e52733bb9..00000000000 --- a/_includes/search-providers/google-custom-search-engine/search.js +++ /dev/null @@ -1,33 +0,0 @@ -var SOURCES = window.TEXT_VARIABLES.sources; -window.Lazyload.js(SOURCES.jquery, function() { - /* global google */ - var search = (window.search || (window.search = {})); - var searchBox, searchInput, clearIcon, searchModal; - - search.clear = function() { - searchBox && searchBox.clearAllResults(); - }; - search.onShow = function() { - searchInput && searchInput.focus(); - }; - search.onHide = function() { - searchInput && searchInput.blur(); - }; - - window.__gcse = { - callback: function() { - searchBox = google.search.cse.element.getElement('search-box'); - searchInput = document.getElementById('gsc-i-id1'); - clearIcon = document.getElementById('gs_cb50'); - searchModal = search.searchModal; - searchModal && searchModal.$el && searchModal.$el.on('click', function(e) { - (e.target === this || e.target === clearIcon || e.target.className === 'gs-title') && searchModal.hide(); - }); - } - }; - var cx = '{{ site.search.google.custom_search_engine_id }}'; // Insert your own Custom Search Engine ID here - var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true; - gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + - '//cse.google.com/cse.js?cx=' + cx; - var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s); -}); diff --git a/_includes/search.html b/_includes/search.html deleted file mode 100644 index 680dd35a076..00000000000 --- a/_includes/search.html +++ /dev/null @@ -1,20 +0,0 @@ -{%- include snippets/get-locale-string.html key='CANCEL' -%} -{%- assign _locale_cancel = __return -%} -{%- include snippets/get-locale-string.html key='SEARCH' -%} -{%- assign _locale_search = __return -%} - -{%- if site.search.provider == 'google' -%} - -{%- endif -%} - -{%- if site.search.provider -%} - -{%- endif -%} - -{%- if site.search.provider == 'default' -%} - {%- include search-providers/default/search.html -%} -{%- elsif site.search.provider == 'google' -%} - {%- include search-providers/google-custom-search-engine/search.html -%} -{%- elsif site.search.provider == 'custom' -%} - {%- include search-providers/custom/search.html -%} -{%- endif -%} diff --git a/_includes/sharing-providers/addthis.html b/_includes/sharing-providers/addthis.html deleted file mode 100644 index f2364d313e4..00000000000 --- a/_includes/sharing-providers/addthis.html +++ /dev/null @@ -1,9 +0,0 @@ - -{%- assign _SHARING_ADDTHIS_ID = site.sharing.addthis.id -%} - -{%- if _SHARING_ADDTHIS_ID -%} - -
      -{%- endif -%} - diff --git a/_includes/sharing-providers/addtoany.html b/_includes/sharing-providers/addtoany.html deleted file mode 100644 index a433a1bfea3..00000000000 --- a/_includes/sharing-providers/addtoany.html +++ /dev/null @@ -1,10 +0,0 @@ - -
      - - - - - -
      - - diff --git a/_includes/sharing-providers/custom.html b/_includes/sharing-providers/custom.html deleted file mode 100644 index d2b17d2ef08..00000000000 --- a/_includes/sharing-providers/custom.html +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/sharing.html b/_includes/sharing.html deleted file mode 100644 index f5853460921..00000000000 --- a/_includes/sharing.html +++ /dev/null @@ -1,7 +0,0 @@ -{%- if site.sharing.provider == 'addtoany' -%} - {%- include sharing-providers/addtoany.html -%} -{%- elsif site.sharing.provider == 'addthis' -%} - {%- include sharing-providers/addthis.html -%} - {%- elsif site.sharing.provider == 'custom' -%} - {%- include sharing-providers/custom.html -%} -{%- endif -%} diff --git a/_includes/sidebar/toc.html b/_includes/sidebar/toc.html deleted file mode 100644 index 4e3469e16ca..00000000000 --- a/_includes/sidebar/toc.html +++ /dev/null @@ -1,25 +0,0 @@ -{%- if page.sidebar.nav -%} - -{%- endif -%} \ No newline at end of file diff --git a/_includes/snippets/assign.html b/_includes/snippets/assign.html deleted file mode 100644 index c2691f5cfff..00000000000 --- a/_includes/snippets/assign.html +++ /dev/null @@ -1,9 +0,0 @@ -{%- if include.source1 == nil -%} - {%- if include.source0 == nil -%} - {%- assign __return = include.target -%} - {%- else -%} - {%- assign __return = include.source0 -%} - {%- endif -%} -{%- else -%} - {%- assign __return = include.source1 -%} -{%- endif -%} diff --git a/_includes/snippets/get-article-title.html b/_includes/snippets/get-article-title.html deleted file mode 100644 index 395b7936179..00000000000 --- a/_includes/snippets/get-article-title.html +++ /dev/null @@ -1,11 +0,0 @@ -{%- assign _title = include.article.title | default: layout.title -%} -{%- assign _titles = include.article.titles | default: layout.titles -%} - -{%- if _title -%} - {%- assign __return = _title -%} -{%- elsif _titles -%} - {%- include snippets/get-string-from-locale-config.html locale=_titles -%} - {%- assign __return = __return -%} -{%- else -%} - {%- assign __return = nil -%} -{%- endif -%} diff --git a/_includes/snippets/get-lang.html b/_includes/snippets/get-lang.html deleted file mode 100644 index 028c52a5725..00000000000 --- a/_includes/snippets/get-lang.html +++ /dev/null @@ -1,6 +0,0 @@ -{%- assign __return = site.data.variables.default.lang -%} -{%- if page.lang -%} - {%- assign __return = page.lang -%} -{%- elsif site.lang -%} - {%- assign __return = site.lang -%} -{%- endif -%} diff --git a/_includes/snippets/get-locale-string.html b/_includes/snippets/get-locale-string.html deleted file mode 100644 index a7069ae1759..00000000000 --- a/_includes/snippets/get-locale-string.html +++ /dev/null @@ -1,12 +0,0 @@ -{%- include snippets/get-lang.html -%} -{%- assign _lang = __return -%} -{%- assign _local_lang = site.data.locale[_lang] -%} -{%- assign _local_lang_en = site.data.locale.en -%} -{%- if _local_lang == nil -%} - {%- assign _local_lang = _local_lang_en -%} -{%- endif -%} -{%- if _local_lang[include.key] -%} - {%- assign __return = _local_lang[include.key] -%} -{%- else -%} - {%- assign __return = _local_lang_en[include.key] -%} -{%- endif -%} diff --git a/_includes/snippets/get-nav-url.html b/_includes/snippets/get-nav-url.html deleted file mode 100644 index 3b1b1229f92..00000000000 --- a/_includes/snippets/get-nav-url.html +++ /dev/null @@ -1,8 +0,0 @@ -{%- assign _pre7 = include.path | slice: 0, 7 -%} -{%- assign _pre8 = include.path | slice: 0, 8 -%} -{%- if _pre7 == 'http://' or _pre8 == 'https://' -%} - {%- assign __return = include.path -%} -{%- else -%} - {%- include snippets/prepend-baseurl.html path=include.path -%} - {%- assign __return = __return -%} -{%- endif -%} diff --git a/_includes/snippets/get-sources.html b/_includes/snippets/get-sources.html deleted file mode 100644 index 0de1cb533e8..00000000000 --- a/_includes/snippets/get-sources.html +++ /dev/null @@ -1,2 +0,0 @@ -{%- assign _sources = site.sources | default: site.data.variables.default.sources -%} -{%- assign __return = site.data.variables.sources[_sources] -%} diff --git a/_includes/snippets/get-string-from-locale-config.html b/_includes/snippets/get-string-from-locale-config.html deleted file mode 100644 index 03325fab2ef..00000000000 --- a/_includes/snippets/get-string-from-locale-config.html +++ /dev/null @@ -1,7 +0,0 @@ -{%- include snippets/get-lang.html -%} -{%- assign _lang = __return -%} -{%- if include.locale[_lang] -%} - {%- assign __return = include.locale[_lang] -%} -{%- else -%} - {%- assign __return = include.locale.en -%} -{%- endif -%} diff --git a/_includes/snippets/is_collection.html b/_includes/snippets/is_collection.html deleted file mode 100644 index 559a624c8d2..00000000000 --- a/_includes/snippets/is_collection.html +++ /dev/null @@ -1,6 +0,0 @@ -{%- assign _page_path_first_char = include.page.path | slice: 0, 1 -%} -{%- if _page_path_first_char == '_' -%} - {%- assign __return = true -%} -{%- else -%} - {%- assign __return = false -%} -{%- endif -%} diff --git a/_includes/snippets/page-url.html b/_includes/snippets/page-url.html deleted file mode 100644 index 3e9815d6c05..00000000000 --- a/_includes/snippets/page-url.html +++ /dev/null @@ -1,2 +0,0 @@ -{%- include snippets/prepend-baseurl.html path=page.url -%} -{{ __return | prepend: site.url }} \ No newline at end of file diff --git a/_includes/snippets/prepend-baseurl.html b/_includes/snippets/prepend-baseurl.html deleted file mode 100644 index d5d24ef19a5..00000000000 --- a/_includes/snippets/prepend-baseurl.html +++ /dev/null @@ -1,4 +0,0 @@ -{%- assign _include_path_replace_index = include.path | replace: 'index.html', '' -%} -{%- include snippets/prepend-path.html - path=_include_path_replace_index - prepend_path=site.baseurl -%} \ No newline at end of file diff --git a/_includes/snippets/prepend-path.html b/_includes/snippets/prepend-path.html deleted file mode 100644 index 5f6e904ee47..00000000000 --- a/_includes/snippets/prepend-path.html +++ /dev/null @@ -1 +0,0 @@ -{%- assign __return = include.path | prepend: '/' | prepend: include.prepend_path | replace:'///','/' | replace:'//','/' -%} diff --git a/_includes/svg/icon/social/behance.svg b/_includes/svg/icon/social/behance.svg deleted file mode 100644 index bba499cbcc1..00000000000 --- a/_includes/svg/icon/social/behance.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/svg/icon/social/douban.svg b/_includes/svg/icon/social/douban.svg deleted file mode 100644 index 42a07d5bcb0..00000000000 --- a/_includes/svg/icon/social/douban.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/_includes/svg/icon/social/facebook.svg b/_includes/svg/icon/social/facebook.svg deleted file mode 100644 index ba901bdd053..00000000000 --- a/_includes/svg/icon/social/facebook.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/svg/icon/social/flicker.svg b/_includes/svg/icon/social/flicker.svg deleted file mode 100644 index eaacc73424f..00000000000 --- a/_includes/svg/icon/social/flicker.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/_includes/svg/icon/social/github.svg b/_includes/svg/icon/social/github.svg deleted file mode 100644 index c5439a92d7e..00000000000 --- a/_includes/svg/icon/social/github.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/svg/icon/social/googleplus.svg b/_includes/svg/icon/social/googleplus.svg deleted file mode 100644 index 69ab1e5aa9c..00000000000 --- a/_includes/svg/icon/social/googleplus.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/svg/icon/social/linkedin.svg b/_includes/svg/icon/social/linkedin.svg deleted file mode 100644 index 3c26dbc3440..00000000000 --- a/_includes/svg/icon/social/linkedin.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/svg/icon/social/mail.svg b/_includes/svg/icon/social/mail.svg deleted file mode 100644 index a0d07519486..00000000000 --- a/_includes/svg/icon/social/mail.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/_includes/svg/icon/social/medium.svg b/_includes/svg/icon/social/medium.svg deleted file mode 100644 index 2dfdd92b432..00000000000 --- a/_includes/svg/icon/social/medium.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/svg/icon/social/npm.svg b/_includes/svg/icon/social/npm.svg deleted file mode 100644 index c382c30fd86..00000000000 --- a/_includes/svg/icon/social/npm.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/_includes/svg/icon/social/pinterest.svg b/_includes/svg/icon/social/pinterest.svg deleted file mode 100644 index 68f400bfcee..00000000000 --- a/_includes/svg/icon/social/pinterest.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/_includes/svg/icon/social/qq.svg b/_includes/svg/icon/social/qq.svg deleted file mode 100644 index a305a5b07e6..00000000000 --- a/_includes/svg/icon/social/qq.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/svg/icon/social/telegram.svg b/_includes/svg/icon/social/telegram.svg deleted file mode 100644 index 1fc8d788bd8..00000000000 --- a/_includes/svg/icon/social/telegram.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/_includes/svg/icon/social/twitter.svg b/_includes/svg/icon/social/twitter.svg deleted file mode 100644 index b04f68d4a62..00000000000 --- a/_includes/svg/icon/social/twitter.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/svg/icon/social/weibo.svg b/_includes/svg/icon/social/weibo.svg deleted file mode 100644 index 2ccd8b11cea..00000000000 --- a/_includes/svg/icon/social/weibo.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/_includes/svg/icon/social/weixin.svg b/_includes/svg/icon/social/weixin.svg deleted file mode 100644 index c2ed41bbc68..00000000000 --- a/_includes/svg/icon/social/weixin.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/svg/icon/social/zhihu.svg b/_includes/svg/icon/social/zhihu.svg deleted file mode 100644 index 210fb2e339e..00000000000 --- a/_includes/svg/icon/social/zhihu.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/_includes/svg/logo.svg b/_includes/svg/logo.svg deleted file mode 100644 index c80d553c494..00000000000 --- a/_includes/svg/logo.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - - - diff --git a/_includes/tags.html b/_includes/tags.html deleted file mode 100644 index 424804cfefc..00000000000 --- a/_includes/tags.html +++ /dev/null @@ -1,52 +0,0 @@ -{%- assign _tag_max_size = 1 -%} -{%- assign _tag_min_size = 1 -%} -{%- assign _tag_cur_size = 1 -%} -{%- assign _tags = site.tags | sort -%} -{%- for _tag in _tags -%} - {%- assign _tag_cur_size = _tag[1].size -%} - {%- if _tag_cur_size > _tag_max_size -%} - {%- assign _tag_max_size = _tag_cur_size -%} - {%- endif -%} - {%- if _tag_cur_size < _tag_min_size -%} - {%- assign _tag_min_size = _tag_cur_size -%} - {%- endif -%} -{%- endfor -%} -{%- assign _tag_gap_size = _tag_max_size | minus: _tag_min_size | plus: 1 | divided_by: 4 -%} -{%- if _tag_gap_size < 1 -%} - {%- assign _tag_gap_size = 1 -%} -{%- endif -%} -
      - -
      diff --git a/_layouts/404.html b/_layouts/404.html deleted file mode 100644 index 4dd94a68352..00000000000 --- a/_layouts/404.html +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: page -title: 404 -show_title: false ---- -
      -
      -

      404

      -

      Page not found :(

      -
      -
      - -{{ content }} diff --git a/_layouts/archive.html b/_layouts/archive.html deleted file mode 100644 index 82a04a37aa6..00000000000 --- a/_layouts/archive.html +++ /dev/null @@ -1,40 +0,0 @@ ---- -layout: page -titles: - # @start locale config - en : &EN Archive - en-GB : *EN - en-US : *EN - en-CA : *EN - en-AU : *EN - zh-Hans : &ZH_HANS 归档 - zh : *ZH_HANS - zh-CN : *ZH_HANS - zh-SG : *ZH_HANS - zh-Hant : &ZH_HANT 歸檔 - zh-TW : *ZH_HANT - zh-HK : *ZH_HANT - ko : &KO 아카이브 - ko-KR : *KO - fr : &FR Archives - fr-BE : *FR - fr-CA : *FR - fr-CH : *FR - fr-FR : *FR - fr-LU : *FR - tr : &TR Arşivdekiler - # @end locale config ---- - -
      - {%- include tags.html -%} -
      - {%- include article-list.html articles=site.posts type='brief' show_info=true reverse=true group_by='year' -%} -
      -
      - - - -{{ content }} diff --git a/_layouts/article.html b/_layouts/article.html deleted file mode 100644 index 80f3b3ca704..00000000000 --- a/_layouts/article.html +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: page -type: article ---- - -{%- include snippets/assign.html - target = site.data.variables.default.page.sharing - source0=layout.sharing source1=page.sharing -%} -{%- assign _sharing = __return -%} - -
      - {%- include article/top/custom.html -%} - -
      {{ content }}
      - - {%- if _sharing -%} - - {%- endif -%} - -
      - {%- include article-footer.html -%} - {%- include article-section-navigator.html -%} -
      - -
      - - diff --git a/_layouts/articles.html b/_layouts/articles.html deleted file mode 100644 index 00738a10446..00000000000 --- a/_layouts/articles.html +++ /dev/null @@ -1,89 +0,0 @@ ---- -layout: page ---- - -{%- assign _page_articles_data_source = page.articles.data_source | default: layout.articles.data_source -%} - -{%- if _page_articles_data_source -%} -{%- assign _keys = _page_articles_data_source | split: '.' -%} -{%- endif -%} - -{%- assign _articles = nil -%} -{%- for _key in _keys -%} - {%- if forloop.first -%} - {%- case _key -%} - {%- when 'site' -%} - {%- assign _articles = site -%} - {%- when 'page' -%} - {%- assign _articles = page -%} - {%- when 'layout' -%} - {%- assign _articles = layout -%} - {%- when 'paginator' -%} - {%- assign _articles = paginator -%} - {%- else -%} - {%- assign _articles = site[_key] -%} - {%- else -%} - {%- endcase -%} - {%- else -%} - {%- assign _articles = _articles[_key] -%} - {%- endif -%} -{%- endfor -%} - -{%- assign _type = page.articles.type | default: layout.articles.type -%} - -{%- if _articles -%} - -
      - - {%- if _type == 'grid' -%} - {%- if page.articles.size == 'sm' -%} - {%- include article-list.html articles=_articles type='grid' size='sm' -%} - {%- else -%} - {%- include article-list.html articles=_articles type='grid' -%} - {%- endif -%} - - {%- elsif _type == 'brief' -%} - {%- include snippets/assign.html - target=site.data.variables.default.page.articles.show_info - source0=layout.articles.show_info source1=page.articles.show_info -%} - {%- assign _show_info = __return -%} - - {%- include article-list.html articles=_articles type='brief' show_info=_show_info -%} - - {%- else -%} - {%- include snippets/assign.html - target=site.data.variables.default.page.articles.show_cover - source0=layout.articles.show_cover source1=page.articles.show_cover -%} - {%- assign _show_cover = __return -%} - - {%- include snippets/assign.html - target=site.data.variables.default.page.articles.show_excerpt - source0=layout.articles.show_excerpt source1=page.articles.show_excerpt -%} - {%- assign _show_excerpt = __return -%} - - {%- include snippets/assign.html - target=site.data.variables.default.page.articles.show_readmore - source0=layout.articles.show_readmore source1=page.articles.show_readmore -%} - {%- assign _show_readmore = __return -%} - - {%- include snippets/assign.html - target=site.data.variables.default.page.articles.show_info - source0=layout.articles.show_info source1=page.articles.show_info -%} - {%- assign _show_info = __return -%} - - {%- assign _article_type = page.articles.article_type | default: layout.articles.article_type -%} - {%- assign _cover_size = page.articles.cover_size | default: layout.articles.cover_size -%} - {%- assign _excerpt_type = page.articles.excerpt_type | default: layout.articles.excerpt_type -%} - - {%- include article-list.html articles=_articles type='item' - article_type=_article_type - show_cover=_show_cover cover_size=_cover_size - show_excerpt=_show_excerpt excerpt_type=_excerpt_type - show_readmore=_show_readmore show_info=_show_info -%} - - {%- endif -%} - -
      -{%- endif -%} - -{{ content }} diff --git a/_layouts/base.html b/_layouts/base.html deleted file mode 100644 index 8a025727427..00000000000 --- a/_layouts/base.html +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: none ---- - -{%- include snippets/get-lang.html -%} - - - {%- include analytics.html -%} - {%- include head.html -%} - - {%- include scripts/variables.html -%} - - -
      - {{ content }} -
      - - - diff --git a/_layouts/home.html b/_layouts/home.html deleted file mode 100644 index 553cc5afd4b..00000000000 --- a/_layouts/home.html +++ /dev/null @@ -1,43 +0,0 @@ ---- -layout: articles -titles: - # @start locale config - en : &EN Home - en-GB : *EN - en-US : *EN - en-CA : *EN - en-AU : *EN - zh-Hans : &ZH_HANS 主页 - zh : *ZH_HANS - zh-CN : *ZH_HANS - zh-SG : *ZH_HANS - zh-Hant : &ZH_HANT 主頁 - zh-TW : *ZH_HANT - zh-HK : *ZH_HANT - ko : &KO 홈 - ko-KR : *KO - fr : &FR Accueil - fr-BE : *FR - fr-CA : *FR - fr-CH : *FR - fr-FR : *FR - fr-LU : *FR - tr : &TR Ana Sayfa - # @end locale config -show_title: false -articles: - data_source: paginator.posts - article_type: BlogPosting - show_cover: false - show_excerpt: true - show_readmore: true - show_info: true ---- -
      - {%- include paginator.html -%} -
      - - -{{ content }} diff --git a/_layouts/landing.html b/_layouts/landing.html deleted file mode 100644 index 306067b2b14..00000000000 --- a/_layouts/landing.html +++ /dev/null @@ -1,178 +0,0 @@ ---- -layout: page -header: false -full_width: true -article_header: - type: overlay - align: center - height: 80vh ---- -
      -
      - {%- for _section in page.data.sections -%} - {%- include snippets/get-nav-url.html path=_section.background_image.src -%} - {%- assign _url = __return -%} - {%- if _section.theme == 'light' -%} -
      - {%- else -%} - style="background-image: url({{ _url }});"> - {%- endif -%} - -
      -
      - -

      {{ _section.title }}

      - {%- if _section.excerpt-%} -

      {{ _section.excerpt }}

      - {%- endif -%} - - {%- if _section.actions -%} - - {%- endif -%} - -
      - - {%- if _section.children -%} - {%- assign _size = _section.children | size -%} -
      -
      - - {%- for child in _section.children -%} - - {%- if _size >= 2 -%} - {%- assign _cell_md_col = 6 -%} - {%- else -%} - {%- assign _cell_md_col = 12 | divided_by: _size -%} - {%- endif -%} - - {%- if _size >= 4 -%} - {%- assign _cell_lg_col = 3 -%} - {%- else -%} - {%- assign _cell_lg_col = 12 | divided_by: _size -%} - {%- endif -%} - -
      - -
      -

      {{ child.title }}

      - - {%- if child.excerpt-%} -

      {{ child.excerpt }}

      - {%- endif -%} - - {%- if child.actions -%} - - {%- endif -%} -
      - - {%- if child.image and child.image.src -%} - - {%- if child.image.url -%} - {%- include snippets/get-nav-url.html path=child.image.url -%} - {%- assign _item_image_url = __return -%} - {%- else -%} - {%- assign _item_image_url = nil -%} - {%- endif -%} - - {%- include snippets/get-nav-url.html path=child.image.src -%} - {%- assign _item_image_src = __return -%} - - {%- if child.image.is_row -%} -
      - {%- endif -%} -
      - {%- if _item_image_url -%} - - {%- endif -%} - - {%- if _item_image_url -%} - - {%- endif -%} -
      - {%- if child.image.is_row -%} -
      - {%- endif -%} - {%- endif -%} - - {%- if child.content-%} -

      {{ child.content }}

      - {%- endif -%} - -
      - {%- endfor-%} - -
      -
      - {%- endif -%} - - {%- if _section.image.full_width == true -%} -
      {% comment %} end hero__content {% endcomment %} - {%- endif -%} - - {%- if _section.image and _section.image.src -%} - - {%- if _section.image.url -%} - {%- include snippets/get-nav-url.html path=_section.image.url -%} - {%- assign _section_image_url = __return -%} - {%- else -%} - {%- assign _section_image_url = nil -%} - {%- endif -%} - - {%- include snippets/get-nav-url.html path=_section.image.src -%} - {%- assign _section_image_src = __return -%} - - {%- if _section.image.is_row -%} -
      - {%- endif -%} - - {%- if _section.image.is_row -%} -
      - {%- endif -%} - {%- endif -%} - - {%- if _section.image.full_width != true -%} -
      {% comment %} end hero__content {% endcomment %} - {%- endif -%} - - {%- if _section.content-%} -

      {{ _section.content }}

      - {%- endif -%} - - {%- endfor -%} -
      -
      - -{{ content }} diff --git a/_layouts/none.html b/_layouts/none.html deleted file mode 100644 index cddd07099f2..00000000000 --- a/_layouts/none.html +++ /dev/null @@ -1 +0,0 @@ -{{ content }} diff --git a/_layouts/page.html b/_layouts/page.html deleted file mode 100644 index 185798a4f7f..00000000000 --- a/_layouts/page.html +++ /dev/null @@ -1,270 +0,0 @@ ---- -layout: base ---- -{%- assign _page_mode = page.mode | default: layout.mode | default: site.data.variables.default.page.mode -%} -{%- assign _page_type = page.type | default: layout.type | default: site.data.variables.default.page.type -%} -{%- assign _article_header_type = page.article_header.type | default: layout.article_header.type -%} - -{%- include snippets/assign.html - target=layout.header source0=page.header -%} -{%- assign _header = __return -%} - -{%- include snippets/assign.html - target=layout.footer source0=page.footer -%} -{%- assign _footer = __return -%} - -{%- include snippets/assign.html - target=layout.lightbox source0=page.lightbox -%} -{%- assign _lightbox = __return -%} - -{%- include snippets/assign.html - target = site.data.variables.default.page.full_width - source0=layout.full_width source1=page.full_width -%} -{%- assign _full_width = __return -%} - -{%- include snippets/assign.html - target = site.data.variables.default.page.comment - source0=layout.comment source1=page.comment -%} -{%- assign _comment = __return -%} - - -{%- assign _article_header_excerpt_truncate = include.excerpt_truncate | default: 200 -%} - -{%- if page.sidebar -%} -
      -
      -
      -
      - -
      - -
      - -
      - {%- include sidebar/toc.html -%} -
      - -{%- else -%} -
      -{%- endif -%} - - {%- assign _page_main_class = 'page__main js-page-main' -%} - {%- if _page_mode == 'immersive' -%} - {%- assign _page_main_class = _page_main_class | append: ' page__main--immersive' -%} - {%- endif -%} - {%- unless page.sidebar -%} - {%- assign _page_main_class = _page_main_class | append: ' page__viewport' -%} - {%- endunless -%} - {%- if _footer == false -%} - {%- assign _page_main_class = _page_main_class | append: ' hide-footer' -%} - {%- endif -%} - {%- if page.aside -%} - {%- assign _page_main_class = _page_main_class | append: ' has-aside' -%} - {%- elsif _full_width -%} - {%- assign _page_main_class = _page_main_class | append: ' full-width' -%} - {%- endif -%} -
      - -
      - {%- if _header != false -%} - - {%- endif -%} - - -
      - {%- if _article_header_type == 'overlay' or _article_header_type == 'cover' -%} - - {%- if _article_header_type == 'overlay' -%} - - {%- assign _article_header_height = page.article_header.height | default: layout.article_header.height -%} - {%- assign _article_header_align = page.article_header.align | default: layout.article_header.align | default: site.data.variables.default.page.article_header.align -%} - {%- assign _article_header_theme = page.article_header.theme | default: layout.article_header.theme | default: site.data.variables.default.page.article_header.theme -%} - - {%- if page.article_header.background_image.src -%} - {%- assign _header_background_image_src = page.article_header.background_image.src -%} - {%- elsif page.article_header.background_image != false and page.cover -%} - {%- assign _header_background_image_src = page.cover -%} - {%- endif -%} - - {%- if page.article_header.background_image.gradient -%} - {%- assign _header_background_image = page.article_header.background_image.gradient -%} - {%- if _header_background_image_src -%} - {%- assign _header_background_image = _header_background_image | append: ',' -%} - {%- endif -%} - {%- endif -%} - - {%- if _header_background_image_src -%} - {%- include snippets/get-nav-url.html path=_header_background_image_src -%} - {%- assign _header_background_image_src = __return -%} - {%- assign _header_background_image = _header_background_image - | append: 'url(' | append: _header_background_image_src | append: ')'-%} - {%- endif -%} - - {%- assign _header_style = 'background-image:' | append: _header_background_image | append: ';' -%} - - {%- if page.article_header.background_color -%} - {%- assign _header_style = _header_style | append: 'background-color:' | append: page.article_header.background_color | append: ';' -%} - {%- endif -%} - - {%- if _article_header_height -%} - {%- assign _header_style = _header_style | append: 'min-height:' | append: _article_header_height | append: ';' -%} - {%- endif -%} - -
      - - {%- if _article_header_theme == 'light' -%} - {%- if _article_header_align == 'center' -%} -
      - {%- else -%} -
      - {%- endif -%} - {%- elsif _article_header_theme == 'dark' -%} - {%- if _article_header_align == 'center' -%} -
      - {%- else -%} -
      - {%- endif -%} - {%- else -%} - {%- if _article_header_align == 'center' -%} -
      - {%- else -%} -
      - {%- endif -%} - {%- endif -%} -
      - {%- if _full_width == false -%} -
      - {%- endif -%} - {%- include article-info.html article=page semantic=false -%} - {%- include article-header.html article=page semantic=false -%} - {%- if page.excerpt -%} -

      {{ page.excerpt | strip_html | strip_newlines | strip | truncate: _article_header_excerpt_truncate }}

      - {%- endif -%} - {%- if page.article_header.actions -%} - - {%- endif -%} - {%- if _full_width == false -%} -
      - {%- endif -%} -
      -
      -
      - {%- elsif _article_header_type == 'cover' -%} - {%- if page.article_header.image.src -%} - {%- include snippets/get-nav-url.html path=page.article_header.image.src -%} - {%- assign _header_image_src = __return -%} - - {%- endif -%} - {%- endif -%} - - {%- endif -%} - - - {%- if _full_width == false -%} -
      - {%- endif -%} -
      - -
      - {%- if page.aside -%} - - {%- endif -%} -
      - -
      - {%- include main/top/custom.html -%} - {%- if _page_type == 'article' -%} -
      - {%- elsif _page_type == 'webpage' -%} -
      - {%- else -%} -
      - {%- endif -%} - - {%- if _article_header_type == 'overlay' or page.article_header == false -%} - {%- include article-header.html article=page html=false -%} - {%- include article-info.html article=page html=false -%} - {%- else -%} - {%- include article-header.html article=page -%} - {%- include article-info.html article=page -%} - {%- endif -%} - -
      {{ content }}
      - {%- if _comment != false -%} -
      {%- include comments.html -%}
      - {%- endif -%} -
      - {%- include main/bottom/custom.html -%} -
      -
      - - {%- if _full_width == false -%} -
      - {%- endif -%} -
      - - {%- if _footer != false -%} - - {%- endif -%} -
      -
      {%- comment -%} end page__main {%- endcomment -%} -{%- if page.sidebar -%} -
      {%- comment -%} end grid {%- endcomment -%} -
      {%- comment -%} end page__viewport {%- endcomment -%} -{%- endif -%} - - -{%- if _lightbox == true -%} - -{%- endif -%} -{%- if _header != false -%} - -{%- endif -%} -
      - - - - -{%- if page.sidebar -%} - -{%- endif -%} - -{%- if page.aside -%} - -{%- endif -%} - -{%- include markdown-enhancements.html -%} -{%- include pageview.html -%} diff --git a/_posts/2023-12-31-welcome.md b/_posts/2023-12-31-welcome.md deleted file mode 100644 index 5f460338a57..00000000000 --- a/_posts/2023-12-31-welcome.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -title: 开通博客 -tags: blog life ---- - -会不定期发发布一些文章,会包括技术、心情、生活等等不同方向。 -


      -想法、创意、人生。 diff --git a/_sass/additional/_alert.scss b/_sass/additional/_alert.scss deleted file mode 100644 index fa5651fbb1b..00000000000 --- a/_sass/additional/_alert.scss +++ /dev/null @@ -1,29 +0,0 @@ -.article__content { - p.success { - padding: map-get($spacers, 2) map-get($spacers, 3); - background-color: rgba($green, .1); - border: 1px solid $green; - border-radius: map-get($base, border-radius); - } - - p.info { - padding: map-get($spacers, 2) map-get($spacers, 3); - background-color: rgba($blue, .1); - border: 1px solid $blue; - border-radius: map-get($base, border-radius); - } - - p.warning { - padding: map-get($spacers, 2) map-get($spacers, 3); - background-color: rgba($yellow, .1); - border: 1px solid $yellow; - border-radius: map-get($base, border-radius); - } - - p.error { - padding: map-get($spacers, 2) map-get($spacers, 3); - background-color: rgba($red, .1); - border: 1px solid $red; - border-radius: map-get($base, border-radius); - } -} diff --git a/_sass/additional/_photo-frame.scss b/_sass/additional/_photo-frame.scss deleted file mode 100644 index 55a30c7ae2f..00000000000 --- a/_sass/additional/_photo-frame.scss +++ /dev/null @@ -1,17 +0,0 @@ -.article__content { - img.shadow, .shadow > img { - @include box-shadow(); - } - - img.border, .border > img { - border: 1px solid $border-color-l; - } - - img.rounded, .rounded > img { - border-radius: map-get($base, border-radius); - } - - img.circle, .circle > img { - border-radius: 50%; - } -} diff --git a/_sass/additional/_tag.scss b/_sass/additional/_tag.scss deleted file mode 100644 index 6a418edcfd8..00000000000 --- a/_sass/additional/_tag.scss +++ /dev/null @@ -1,21 +0,0 @@ -.article__content { - code.success { - color: $text-color-function; - background-color: $green; - } - - code.info { - color: $text-color-function; - background-color: $blue; - } - - code.warning { - color: $text-color-function; - background-color: $yellow; - } - - code.error { - color: $text-color-function; - background-color: $red; - } -} diff --git a/_sass/animate/_fade-in-down.scss b/_sass/animate/_fade-in-down.scss deleted file mode 100644 index a32a4e7e501..00000000000 --- a/_sass/animate/_fade-in-down.scss +++ /dev/null @@ -1,10 +0,0 @@ -@include keyframes(fade-in-down) { - from { - opacity: 0; - @include transform(translateY(-2rem)); - } - to { - opacity: 1; - @include transform(translateY(0)); - } -} diff --git a/_sass/animate/_fade-in-up.scss b/_sass/animate/_fade-in-up.scss deleted file mode 100644 index 920a0bbbc92..00000000000 --- a/_sass/animate/_fade-in-up.scss +++ /dev/null @@ -1,10 +0,0 @@ -@include keyframes(fade-in-up) { - from { - opacity: 0; - @include transform(translateY(2rem)); - } - to { - opacity: 1; - @include transform(translateY(0)); - } -} diff --git a/_sass/animate/_fade-in.scss b/_sass/animate/_fade-in.scss deleted file mode 100644 index 03fdea8a8cc..00000000000 --- a/_sass/animate/_fade-in.scss +++ /dev/null @@ -1,8 +0,0 @@ -@include keyframes(fade-in) { - from { - opacity: 0; - } - to { - opacity: 1; - } -} diff --git a/_sass/common/_classes.scss b/_sass/common/_classes.scss deleted file mode 100644 index b5615d85413..00000000000 --- a/_sass/common/_classes.scss +++ /dev/null @@ -1,24 +0,0 @@ -/* stylelint-disable at-rule-name-space-after, at-rule-semicolon-space-before */ -@charset "utf-8"; -@import - "common/classes/animation", - "common/classes/transform", - "common/classes/transition", - "common/classes/user-select", - - "common/classes/clearfix", - "common/classes/media", - "common/classes/clickable", - "common/classes/display", - "common/classes/flex", - "common/classes/horizontal-rules", - "common/classes/pseudo", - "common/classes/link", - "common/classes/text", - "common/classes/overflow", - "common/classes/shadow", - "common/classes/spacing", - "common/classes/split-line", - "common/classes/grid" -; -/* stylelint-enable */ diff --git a/_sass/common/_function.scss b/_sass/common/_function.scss deleted file mode 100644 index 1de24929a95..00000000000 --- a/_sass/common/_function.scss +++ /dev/null @@ -1,15 +0,0 @@ -@function get-color-theme($color) { - @if lightness($color) < 15% { - @return "dark"; - } @else { - @return "light"; - } -} - -@function breakpoint-infix($name, $breakpoints: default) { - @if $breakpoints == default { - $breakpoints: $responsive; - } - $min: map-get($breakpoints, $name); - @return if($min != 0, "#{$name}-", ""); -} diff --git a/_sass/common/_print.scss b/_sass/common/_print.scss deleted file mode 100644 index d798d87ace5..00000000000 --- a/_sass/common/_print.scss +++ /dev/null @@ -1,20 +0,0 @@ -@media print { - a { - @include plain() { - text-decoration: underline; - } - @include hover() { - text-decoration: underline; - } - @include active() { - text-decoration: underline; - } - } - - img, - tr, - pre, - blockquote { - page-break-inside: avoid; - } -} diff --git a/_sass/common/_reset.scss b/_sass/common/_reset.scss deleted file mode 100644 index 2062d372c40..00000000000 --- a/_sass/common/_reset.scss +++ /dev/null @@ -1,174 +0,0 @@ -@mixin block-elements { - h1, - h2, - h3, - h4, - h5, - h6, - p, - hr, - blockquote, - figure, - pre, - .highlighter-rouge, - ul, - ol, - dl, - table, - .footnotes { - @content; - } -} -@mixin heading-elements { - h1, h2, h3, h4, h5, h6 { - @content; - } -} - -*, -::before, -::after { - box-sizing: border-box; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -/** - * 1. Prevent adjustments of font size after orientation changes in iOS. - **/ - -html { - font-size: map-get($base, font-size-root); - -webkit-text-size-adjust: 100%; /* 1 */ - @media print { - font-size: map-get($base, font-size-root-sm); - } -} - -body { - padding: 0; - margin: 0; - font: map-get($base, font-weight) #{map-get($base, font-size)}/#{map-get($base, line-height)} map-get($base, font-family); - ::-moz-selection { - background: $select-color; - } - ::-webkit-selection { - background: $select-color; - } - ::selection { - background: $select-color; - } -} - -@include block-elements() { - padding: 0; - margin: map-get($spacers, 2) 0; -} - -input, textarea, select, button { - font: map-get($base, font-weight) #{map-get($base, font-size)}/#{map-get($base, line-height)} map-get($base, font-family); - color: $text-color; -} - -h1, -h2, -h3, -h4, -h5, -h6, -strong { - font-weight: map-get($base, font-weight-bold); -} - -h1 { - font-size: map-get($base, font-size-h1); - color: $text-color-d; - @include media-breakpoint-down(md) { - font-size: map-get($base, font-size-h1-sm); - } -} - -h2 { - font-size: map-get($base, font-size-h2); - color: $text-color-d; - @include media-breakpoint-down(md) { - font-size: map-get($base, font-size-h2-sm); - } -} - -h3 { - font-size: map-get($base, font-size-h3); - color: $text-color-d; - @include media-breakpoint-down(md) { - font-size: map-get($base, font-size-h3-sm); - } -} - -h4 { - font-size: map-get($base, font-size-h4); - color: $text-color; - @include media-breakpoint-down(md) { - font-size: map-get($base, font-size-h4-sm); - } -} - -h5 { - font-size: map-get($base, font-size-h5); - color: $text-color; - @include media-breakpoint-down(md) { - font-size: map-get($base, font-size-h5-sm); - } -} - -h6 { - font-size: map-get($base, font-size-h6); - color: $text-color-l; - @include media-breakpoint-down(md) { - font-size: map-get($base, font-size-h6-sm); - } -} - -a { - font-weight: map-get($base, font-weight-bold); - @include link-colors($main-color-1); -} - -pre, code { - font-family: map-get($base, font-family-code); -} - -code { - font-size: map-get($base, font-size-xs); - line-height: map-get($base, line-height-sm); -} - -figure > img { - display: block; -} - -figcaption { - font-size: map-get($base, font-size-sm); -} - -button { - padding: 0; - margin: 0; - font-size: map-get($spacers, 3); - cursor: pointer; - background-color: transparent; - border-width: 0; - outline: none; -} - -input { - &::-ms-clear { - display: none; - } - &:focus { - outline: none; - } -} - -// mermaid -.mermaidTooltip { - display: none; -} diff --git a/_sass/common/_variables.scss b/_sass/common/_variables.scss deleted file mode 100644 index faf4e983595..00000000000 --- a/_sass/common/_variables.scss +++ /dev/null @@ -1,150 +0,0 @@ -$base: ( - font-family: (-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif), - font-family-code: (Menlo, Monaco, Consolas, Andale Mono, lucida console, Courier New, monospace), - - font-size-root: 16px, - font-size-root-sm: 14px, - - font-size-xl: 1.5rem, - font-size-lg: 1.25rem, - font-size: 1rem, - font-size-sm: .85rem, - font-size-xs: .7rem, - - font-size-h1-xl: 3.5rem, - font-size-h2-xl: 2.5rem, - font-size-h3-xl: 2rem, - font-size-h4-xl: 1.75rem, - font-size-h5-xl: 1.5rem, - font-size-h6-xl: 1.5rem, - - font-size-h1-lg: 3rem, - font-size-h2-lg: 2rem, - font-size-h3-lg: 1.75rem, - font-size-h4-lg: 1.5rem, - font-size-h5-lg: 1.25rem, - font-size-h6-lg: 1.25rem, - - font-size-h1: 2.5rem, - font-size-h2: 1.9rem, - font-size-h3: 1.5rem, - font-size-h4: 1.2rem, - font-size-h5: 1rem, - font-size-h6: 1rem, - - font-size-h1-sm: 2rem, - font-size-h2-sm: 1.5rem, - font-size-h3-sm: 1.35rem, - font-size-h4-sm: 1.15rem, - font-size-h5-sm: 1rem, - font-size-h6-sm: 1rem, - - font-size-h1-xs: 1.05rem, - font-size-h2-xs: 1rem, - font-size-h3-xs: .95rem, - font-size-h4-xs: .9rem, - font-size-h5-xs: .85rem, - font-size-h6-xs: .85rem, - - font-weight: 400, - font-weight-bold: 700, - - line-height-xl: 2, - line-height-lg: 1.8, - line-height: 1.6, - line-height-sm: 1.4, - line-height-xs: 1.2, - - spacer: 1rem, - - border-radius-lg: .8rem, - border-radius: .4rem, - border-radius-sm: .2rem -); - -$spacers: ( - 0: 0, - 1: map-get($base, spacer) * .25, - 2: map-get($base, spacer) * .5, - 3: map-get($base, spacer), - 4: map-get($base, spacer) * 1.5, - 5: map-get($base, spacer) * 3 -); - -$z-indexes: ( - actions: 996, - mask: 997, - sidebar: 998, - modal: 999 -); - -$layout: ( - header-height: 5rem, - header-height-sm: 3rem, - content-max-width: 950px, - sidebar-width: 250px, - sidebar-header-height: 3rem, - aside-width: 220px -); - -// sm md lg -// | ------ | ------ | ------ | -// 0 500 1024 - - -$responsive: ( - sm: 0, - md: 500px, - lg: 1024px -); - -$animation: ( - duration: .4s, - duration-sm: .2s, - timing-function: ease-in-out -); - -$clickable: ( - transition: all .2s ease-in-out -); - -$button-height-xl: 2.8rem; -$button-height-lg: 2.3rem; -$button-height: 1.9rem; -$button-height-sm: 1.5rem; -$button-height-xs: 1.2rem; - -$button: ( - padding-y-xl: ($button-height-xl - map-get($base, font-size-xl)) / 2, - padding-x-xl: $button-height-xl / 3, - padding-y-lg: ($button-height-lg - map-get($base, font-size-lg)) / 2, - padding-x-lg: $button-height-lg / 3, - padding-y: ($button-height - map-get($base, font-size)) / 2, - padding-x: $button-height / 3, - padding-y-sm: ($button-height-sm - map-get($base, font-size-sm)) / 2, - padding-x-sm: $button-height-sm / 3, - padding-y-xs: ($button-height-xs - map-get($base, font-size-xs)) / 2, - padding-x-xs: $button-height-xs / 3, - - pill-radius: 6rem, - - circle-diameter-xl: $button-height-xl, - circle-diameter-lg: $button-height-lg, - circle-diameter: $button-height, - circle-diameter-sm: $button-height-sm, - circle-diameter-xs: $button-height-xs, - - font-weight: map-get($base, font-weight-bold) -); - -$image: ( - width-xl: 20em, - width-lg: 16rem, - width: 12rem, - width-sm: 8rem, - width-xs: 4rem -); - -$menu: ( - horizontal-spacer: 1, - horizontal-item-vertical-spacer: 1 -); diff --git a/_sass/common/classes/_animation.scss b/_sass/common/classes/_animation.scss deleted file mode 100644 index 2dbc47d6c78..00000000000 --- a/_sass/common/classes/_animation.scss +++ /dev/null @@ -1,13 +0,0 @@ -@mixin animation($value) { - -webkit-animation: $value; - animation: $value; -} - -@mixin keyframes($name) { - @-webkit-keyframes #{$name} { - @content; - } - @keyframes #{$name} { - @content; - } -} diff --git a/_sass/common/classes/_clearfix.scss b/_sass/common/classes/_clearfix.scss deleted file mode 100644 index caf31241fe3..00000000000 --- a/_sass/common/classes/_clearfix.scss +++ /dev/null @@ -1,19 +0,0 @@ -@mixin clearfix() { - &::after { - display: table; - clear: both; - content: ""; - } -} - -.clearfix { - @include clearfix(); -} - -.left { - float: left; -} - -.right { - float: right; -} diff --git a/_sass/common/classes/_clickable.scss b/_sass/common/classes/_clickable.scss deleted file mode 100644 index af32effd602..00000000000 --- a/_sass/common/classes/_clickable.scss +++ /dev/null @@ -1,159 +0,0 @@ -@mixin clickable($clr, $bg-clr, $hover-clr: default, $hover-bg-clr: default, $active-clr: default, $active-bg-clr: default, $focus-clr: default, $focus-bg-clr: default, $theme: default, $ignore-path: default) { - - @if $theme == default { - @if $bg-clr == null and $hover-bg-clr == null { - @if $hover-clr == default { - $theme: get-color-theme($clr); - } @else { - $theme: get-color-theme($hover-clr); - } - } @else { - @if $hover-bg-clr == default { - $theme: get-color-theme($bg-clr); - } @else { - $theme: get-color-theme($hover-bg-clr); - } - } - } - - @if $ignore-path == default { - $ignore-path: false; - } @else { - $ignore-path: true; - } - - @include transition(map-get($clickable, transition)); - @if $ignore-path == false { - svg { - path { - @include transition(map-get($clickable, transition)); - } - } - } - - // hover - @if $hover-clr == default { - @if $hover-bg-clr == null { - @if $theme == "light" { - $hover-clr: darken($clr, 14%); - } - @if $theme == "dark" { - $hover-clr: lighten($clr, 18%); - } - } @else if $hover-bg-clr == default { - $hover-clr: $clr; - } - } - - @if $hover-bg-clr == default { - @if $theme == "light" { - $hover-bg-clr: darken($bg-clr, 14%); - } - @if $theme == "dark" { - $hover-bg-clr: lighten($bg-clr, 18%); - } - } - - // active - @if $active-clr == default { - @if $active-bg-clr == null { - @if $theme == "light" { - $active-clr: darken($hover-clr, 15%); - } - @if $theme == "dark" { - $active-clr: lighten($hover-clr, 16%); - } - } @else if $active-bg-clr == default { - $active-clr: $hover-clr; - } - } - - @if $active-bg-clr == default { - @if $theme == "light" { - $active-bg-clr: darken($hover-bg-clr, 15%); - } - @if $theme == "dark" { - $active-bg-clr: lighten($hover-bg-clr, 16%); - } - } - - // focus - @if $focus-clr == default { - @if $focus-bg-clr == null { - $focus-clr: $hover-clr; - } @else if $hover-bg-clr == default { - $focus-clr: $hover-clr; - } - } - - @if $focus-bg-clr == default { - $focus-bg-clr: $hover-bg-clr; - } - - @include plain() { - color: $clr; - @if $bg-clr { - background-color: $bg-clr; - } - @if $ignore-path == false { - svg path { - fill: $clr; - } - } - } - @include hover() { - color: $hover-clr; - @if $hover-bg-clr { - background-color: $hover-bg-clr; - } - @if $ignore-path == false { - svg path { - fill: $hover-clr; - } - } - } - @include active() { - color: $active-clr; - @if $active-bg-clr { - background-color: $active-bg-clr; - } - @if $ignore-path == false { - svg path { - fill: $active-clr; - } - } - } - @include focus() { - color: $focus-clr; - @if $focus-bg-clr{ - background-color: $focus-bg-clr; - box-shadow: 0 0 0 2px rgba($focus-bg-clr, .4); - } - @if $ignore-path == false { - svg path { - fill: $focus-clr; - } - } - } - @include disabled() { - @if $theme == "light" { - color: rgba($clr, .2) !important; - } - @if $theme == "dark" { - color: rgba($clr, .4) !important; - } - @if $bg-clr { - background-color: $bg-clr !important; - } - @if $ignore-path == false { - svg path { - @if $theme == "light" { - fill: rgba($clr, .2) !important; - } - @if $theme == "dark" { - fill: rgba($clr, .4) !important; - } - } - } - } -} diff --git a/_sass/common/classes/_display.scss b/_sass/common/classes/_display.scss deleted file mode 100644 index 411611e525a..00000000000 --- a/_sass/common/classes/_display.scss +++ /dev/null @@ -1,13 +0,0 @@ -@each $breakpoint in map-keys($responsive) { - @include media-breakpoint-up($breakpoint) { - .d-#{breakpoint-infix($breakpoint)}none { - display: none !important; - } - } -} - -.d-print-none { - @media print { - display: none !important; - } -} diff --git a/_sass/common/classes/_flex.scss b/_sass/common/classes/_flex.scss deleted file mode 100644 index 59e1570c7e8..00000000000 --- a/_sass/common/classes/_flex.scss +++ /dev/null @@ -1,394 +0,0 @@ -// Flexbox Mixins -// http://philipwalton.github.io/solved-by-flexbox/ -// https://github.com/philipwalton/solved-by-flexbox -// -// Copyright (c) 2013 Brian Franco -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// The above copyright notice and this permission notice shall be included -// in all copies or substantial portions of the Software. -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -// This is a set of mixins for those who want to mess around with flexbox -// using the native support of current browsers. For full support table -// check: http://caniuse.com/flexbox -// -// Basically this will use: -// -// * Fallback, old syntax (IE10, mobile webkit browsers - no wrapping) -// * Final standards syntax (FF, Safari, Chrome, IE11, Opera) -// -// This was inspired by: -// -// * http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/ -// -// With help from: -// -// * http://w3.org/tr/css3-flexbox/ -// * http://the-echoplex.net/flexyboxes/ -// * http://msdn.microsoft.com/en-us/library/ie/hh772069(v=vs.85).aspx -// * http://css-tricks.com/using-flexbox/ -// * http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/ -// * https://developer.mozilla.org/en-us/docs/web/guide/css/flexible_boxes - -//---------------------------------------------------------------------- - -// Flexbox Containers -// -// The 'flex' value causes an element to generate a block-level flex -// container box. -// -// The 'inline-flex' value causes an element to generate a inline-level -// flex container box. -// -// display: flex | inline-flex -// -// http://w3.org/tr/css3-flexbox/#flex-containers -// -// (Placeholder selectors for each type, for those who rather @extend) - -@mixin flexbox { - display: -webkit-box; - display: -webkit-flex; - display: -moz-flex; - display: -ms-flexbox; - display: flex; -} - -%flexbox { @include flexbox; } - -//---------------------------------- - -@mixin inline-flex { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -moz-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; -} - -%inline-flex { @include inline-flex; } - -//---------------------------------------------------------------------- - -// Flexbox Direction -// -// The 'flex-direction' property specifies how flex items are placed in -// the flex container, by setting the direction of the flex container's -// main axis. This determines the direction that flex items are laid out in. -// -// Values: row | row-reverse | column | column-reverse -// Default: row -// -// http://w3.org/tr/css3-flexbox/#flex-direction-property - -@mixin flex-direction($value: row) { - @if $value == row-reverse { - -webkit-box-direction: reverse; - -webkit-box-orient: horizontal; - } @else if $value == column { - -webkit-box-direction: normal; - -webkit-box-orient: vertical; - } @else if $value == column-reverse { - -webkit-box-direction: reverse; - -webkit-box-orient: vertical; - } @else { - -webkit-box-direction: normal; - -webkit-box-orient: horizontal; - } - -webkit-flex-direction: $value; - -moz-flex-direction: $value; - -ms-flex-direction: $value; - flex-direction: $value; -} -// Shorter version: -@mixin flex-dir($args...) { @include flex-direction($args...); } - -//---------------------------------------------------------------------- - -// Flexbox Wrap -// -// The 'flex-wrap' property controls whether the flex container is single-line -// or multi-line, and the direction of the cross-axis, which determines -// the direction new lines are stacked in. -// -// Values: nowrap | wrap | wrap-reverse -// Default: nowrap -// -// http://w3.org/tr/css3-flexbox/#flex-wrap-property - -@mixin flex-wrap($value: nowrap) { - // No Webkit Box fallback. - -webkit-flex-wrap: $value; - -moz-flex-wrap: $value; - @if $value == nowrap { - -ms-flex-wrap: none; - } @else { - -ms-flex-wrap: $value; - } - flex-wrap: $value; -} - -//---------------------------------------------------------------------- - -// Flexbox Flow (shorthand) -// -// The 'flex-flow' property is a shorthand for setting the 'flex-direction' -// and 'flex-wrap' properties, which together define the flex container's -// main and cross axes. -// -// Values: | -// Default: row nowrap -// -// http://w3.org/tr/css3-flexbox/#flex-flow-property - -@mixin flex-flow($values: (row nowrap)) { - // No Webkit Box fallback. - -webkit-flex-flow: $values; - -moz-flex-flow: $values; - -ms-flex-flow: $values; - flex-flow: $values; -} - -//---------------------------------------------------------------------- - -// Flexbox Order -// -// The 'order' property controls the order in which flex items appear within -// their flex container, by assigning them to ordinal groups. -// -// Default: 0 -// -// http://w3.org/tr/css3-flexbox/#order-property - -@mixin order($int: 0) { - -ms-flex-order: $int; - -webkit-order: $int; - -moz-order: $int; - order: $int; - -webkit-box-ordinal-group: $int + 1; -} - -//---------------------------------------------------------------------- - -// Flexbox Grow -// -// The 'flex-grow' property sets the flex grow factor. Negative numbers -// are invalid. -// -// Default: 0 -// -// http://w3.org/tr/css3-flexbox/#flex-grow-property - -@mixin flex-grow($int: 0) { - -webkit-box-flex: $int; - -webkit-flex-grow: $int; - -moz-flex-grow: $int; - -ms-flex-positive: $int; - flex-grow: $int; -} - -//---------------------------------------------------------------------- - -// Flexbox Shrink -// -// The 'flex-shrink' property sets the flex shrink factor. Negative numbers -// are invalid. -// -// Default: 1 -// -// http://w3.org/tr/css3-flexbox/#flex-shrink-property - -@mixin flex-shrink($int: 1) { - -webkit-flex-shrink: $int; - -moz-flex-shrink: $int; - -ms-flex-negative: $int; - flex-shrink: $int; -} - -//---------------------------------------------------------------------- - -// Flexbox Basis -// -// The 'flex-basis' property sets the flex basis. Negative lengths are invalid. -// -// Values: Like "width" -// Default: auto -// -// http://www.w3.org/TR/css3-flexbox/#flex-basis-property - -@mixin flex-basis($value: auto) { - -webkit-flex-basis: $value; - -moz-flex-basis: $value; - -ms-flex-preferred-size: $value; - flex-basis: $value; -} - -//---------------------------------------------------------------------- - -// Flexbox "Flex" (shorthand) -// -// The 'flex' property specifies the components of a flexible length: the -// flex grow factor and flex shrink factor, and the flex basis. When an -// element is a flex item, 'flex' is consulted instead of the main size -// property to determine the main size of the element. If an element is -// not a flex item, 'flex' has no effect. -// -// Values: none | || -// Default: See individual properties (1 1 0). -// -// http://w3.org/tr/css3-flexbox/#flex-property - -@mixin flex($fg: 1, $fs: null, $fb: null) { - - // Set a variable to be used by box-flex properties - $fg-boxflex: $fg; - - // Box-Flex only supports a flex-grow value so let's grab the - // first item in the list and just return that. - @if type-of($fg) == "list" { - $fg-boxflex: nth($fg, 1); - } - - -webkit-box-flex: $fg-boxflex; - -webkit-flex: $fg $fs $fb; - -moz-box-flex: $fg-boxflex; - -moz-flex: $fg $fs $fb; - -ms-flex: $fg $fs $fb; - flex: $fg $fs $fb; -} - -//---------------------------------------------------------------------- - -// Flexbox Justify Content -// -// The 'justify-content' property aligns flex items along the main axis -// of the current line of the flex container. This is done after any flexible -// lengths and any auto margins have been resolved. Typically it helps distribute -// extra free space leftover when either all the flex items on a line are -// inflexible, or are flexible but have reached their maximum size. It also -// exerts some control over the alignment of items when they overflow the line. -// -// Note: 'space-*' values not supported in older syntaxes. -// -// Values: flex-start | flex-end | center | space-between | space-around -// Default: flex-start -// -// http://w3.org/tr/css3-flexbox/#justify-content-property - -@mixin justify-content($value: flex-start) { - @if $value == flex-start { - -webkit-box-pack: start; - -ms-flex-pack: start; - } @else if $value == flex-end { - -webkit-box-pack: end; - -ms-flex-pack: end; - } @else if $value == space-between { - -webkit-box-pack: justify; - -ms-flex-pack: justify; - } @else if $value == space-around { - -ms-flex-pack: distribute; - } @else { - -webkit-box-pack: $value; - -ms-flex-pack: $value; - } - -webkit-justify-content: $value; - -moz-justify-content: $value; - justify-content: $value; -} -// Shorter version: -@mixin flex-just($args...) { @include justify-content($args...); } - -//---------------------------------------------------------------------- - -// Flexbox Align Items -// -// Flex items can be aligned in the cross axis of the current line of the -// flex container, similar to 'justify-content' but in the perpendicular -// direction. 'align-items' sets the default alignment for all of the flex -// container's items, including anonymous flex items. 'align-self' allows -// this default alignment to be overridden for individual flex items. (For -// anonymous flex items, 'align-self' always matches the value of 'align-items' -// on their associated flex container.) -// -// Values: flex-start | flex-end | center | baseline | stretch -// Default: stretch -// -// http://w3.org/tr/css3-flexbox/#align-items-property - -@mixin align-items($value: stretch) { - @if $value == flex-start { - -webkit-box-align: start; - -ms-flex-align: start; - } @else if $value == flex-end { - -webkit-box-align: end; - -ms-flex-align: end; - } @else { - -webkit-box-align: $value; - -ms-flex-align: $value; - } - -webkit-align-items: $value; - -moz-align-items: $value; - align-items: $value; -} - -//---------------------------------- - -// Flexbox Align Self -// -// Values: auto | flex-start | flex-end | center | baseline | stretch -// Default: auto - -@mixin align-self($value: auto) { - // No Webkit Box Fallback. - -webkit-align-self: $value; - -moz-align-self: $value; - @if $value == flex-start { - -ms-flex-item-align: start; - } @else if $value == flex-end { - -ms-flex-item-align: end; - } @else { - -ms-flex-item-align: $value; - } - align-self: $value; -} - -//---------------------------------------------------------------------- - -// Flexbox Align Content -// -// The 'align-content' property aligns a flex container's lines within the -// flex container when there is extra space in the cross-axis, similar to -// how 'justify-content' aligns individual items within the main-axis. Note, -// this property has no effect when the flexbox has only a single line. -// -// Values: flex-start | flex-end | center | space-between | space-around | stretch -// Default: stretch -// -// http://w3.org/tr/css3-flexbox/#align-content-property - -@mixin align-content($value: stretch) { - // No Webkit Box Fallback. - -webkit-align-content: $value; - -moz-align-content: $value; - @if $value == flex-start { - -ms-flex-line-pack: start; - } @else if $value == flex-end { - -ms-flex-line-pack: end; - } @else { - -ms-flex-line-pack: $value; - } - align-content: $value; -} diff --git a/_sass/common/classes/_grid.scss b/_sass/common/classes/_grid.scss deleted file mode 100644 index 655c254b956..00000000000 --- a/_sass/common/classes/_grid.scss +++ /dev/null @@ -1,80 +0,0 @@ -$grid-columns: 12; - -.grid-container { - @include overflow(hidden); -} -.cell { - min-width: 0; -} - -@mixin make-cell($columns) { - @if $columns == "auto" { - @include flex(1 1 0); - width: auto; - } @else if $columns == "shrink" { - @include flex(0 0 auto); - width: auto; - } @else if $columns == "stretch" { - @include flex(1); - } @else { - @include flex(none); - width: percentage($columns / $grid-columns); - } -} - -@mixin make-grid-cell($columns, $breakpoint) { - @include media-breakpoint-up($breakpoint) { - .cell--#{breakpoint-infix($breakpoint)}#{$columns} { - @include make-cell($columns); - } - } -} - -.grid { - @include flexbox(); - @include flex-wrap(wrap); - & > { - @each $breakpoint in map-keys($responsive) { - @for $i from 1 through $grid-columns { - @include make-grid-cell($i, $breakpoint); - } - @include make-grid-cell("auto", $breakpoint); - @include make-grid-cell("shrink", $breakpoint); - @include make-grid-cell("stretch", $breakpoint); - } - } -} - -.grid--reverse { - flex-direction: row-reverse; -} - -@mixin make-grid() { - $types: ("p"); - $directions: ("x", "y", ""); - $spacers: (0, 1, 2, 3, 4, 5); - - @each $type in $types { - @each $direction in $directions { - @each $spacer in $spacers { - @if $direction == "" { - .grid--#{$type}-#{$spacer} { - @include make-spacing("m", "", $spacer, true); - .cell { - @include make-spacing($type, "", $spacer); - } - } - } @else { - .grid--#{$type}#{$direction}-#{$spacer} { - @include make-spacing("m", $direction, $spacer, true); - .cell { - @include make-spacing($type, $direction, $spacer); - } - } - } - } - } - } -} - -@include make-grid(); diff --git a/_sass/common/classes/_horizontal-rules.scss b/_sass/common/classes/_horizontal-rules.scss deleted file mode 100644 index 74882cfb7c0..00000000000 --- a/_sass/common/classes/_horizontal-rules.scss +++ /dev/null @@ -1,14 +0,0 @@ -@mixin horizontal-rules() { - &::before { - display: block; - font-size: map-get($base, font-size-h2); - color: $text-color-l; - text-align: center; - letter-spacing: map-get($spacers, 4); - content: "..."; - } -} - -.horizontal-rules { - @include horizontal-rules(); -} diff --git a/_sass/common/classes/_link.scss b/_sass/common/classes/_link.scss deleted file mode 100644 index 5e0cb48c4ea..00000000000 --- a/_sass/common/classes/_link.scss +++ /dev/null @@ -1,12 +0,0 @@ -@mixin link-colors($clr, $hover-clr: default, $active-clr: default, $focus-clr: null, $theme: default, $ignore-path: false) { - @include plain() { - text-decoration: none; - } - @include hover() { - text-decoration: underline; - } - @include active() { - text-decoration: none; - } - @include clickable($clr, null, $hover-clr, null, $active-clr, null, $focus-clr, null, $theme, $ignore-path); -} diff --git a/_sass/common/classes/_media.scss b/_sass/common/classes/_media.scss deleted file mode 100644 index e17544e0cff..00000000000 --- a/_sass/common/classes/_media.scss +++ /dev/null @@ -1,17 +0,0 @@ -@mixin media-breakpoint-down($name, $breakpoints: default) { - @if $breakpoints == default { - $breakpoints: $responsive; - } - @media (max-width: map-get($breakpoints, $name) - 1) { - @content; - } -} - -@mixin media-breakpoint-up($name, $breakpoints: default) { - @if $breakpoints == default { - $breakpoints: $responsive; - } - @media (min-width: map-get($breakpoints, $name)) { - @content; - } -} diff --git a/_sass/common/classes/_overflow.scss b/_sass/common/classes/_overflow.scss deleted file mode 100644 index 6529bf0dc35..00000000000 --- a/_sass/common/classes/_overflow.scss +++ /dev/null @@ -1,26 +0,0 @@ -@mixin overflow($overflow: auto, $direction: default) { - @if $direction == default { - overflow: $overflow; - } @else if $direction == "x" { - @if $overflow == auto { - overflow: hidden; - } - overflow-x: $overflow; - } @else if $direction == "y" { - @if $overflow == auto { - overflow: hidden; - } - overflow-y: $overflow; - } - @if $overflow == auto { - -webkit-overflow-scrolling: touch; - } -} - -.of-auto { - @include overflow(auto); -} - -.of-hidden { - @include overflow(hidden); -} diff --git a/_sass/common/classes/_pseudo.scss b/_sass/common/classes/_pseudo.scss deleted file mode 100644 index 53310a9c9ab..00000000000 --- a/_sass/common/classes/_pseudo.scss +++ /dev/null @@ -1,33 +0,0 @@ -@mixin plain() { - &, - &:link, - &:visited { - @content; - } -} - -@mixin hover() { - .root[data-is-touch="false"] &:hover { - @content; - } -} - -@mixin active() { - .root[data-is-touch] &.active, - .root[data-is-touch] &:active { - @content; - } -} - -@mixin focus() { - .root[data-is-touch] &.focus { - @content; - } -} - -@mixin disabled() { - &.disabled, - &:disabled { - @content; - } -} diff --git a/_sass/common/classes/_shadow.scss b/_sass/common/classes/_shadow.scss deleted file mode 100644 index e28b9ca80ff..00000000000 --- a/_sass/common/classes/_shadow.scss +++ /dev/null @@ -1,22 +0,0 @@ -@mixin box-shadow($level: default, $color: default) { - @if $color == default { - $color: #000; - } - @if $level == 0 { - box-shadow: none; - } - @if $level == 1 or $level == default { - box-shadow: 0 4px 8px rgba($color, .23), 0 1px 3px rgba($color, .08), 0 6px 12px rgba($color, .02); - } - @if $level == 2 { - box-shadow: 0 8px 16px rgba($color, .23), 0 2px 6px rgba($color, .08), 0 12px 24px rgba($color, .02); - } -} - -.box-shadow-1 { - @include box-shadow(); -} - -.box-shadow-2 { - @include box-shadow(2); -} diff --git a/_sass/common/classes/_spacing.scss b/_sass/common/classes/_spacing.scss deleted file mode 100644 index c07fdceb2c2..00000000000 --- a/_sass/common/classes/_spacing.scss +++ /dev/null @@ -1,81 +0,0 @@ -@mixin make-spacing($property, $side, $spacer, $negative: false) { - - $css_property: null; - $css_sides: null; - - @if ($property == "m") { - $css_property: "margin"; - } @else if ($property == "p") { - $css_property: "padding"; - } - - @if ($side == "t") { - $css_sides: ("top"); - } - @else if ($side == "b") { - $css_sides: ("bottom"); - } - @else if ($side == "l") { - $css_sides: ("left"); - } - @else if ($side == "r") { - $css_sides: ("right"); - } - @else if ($side == "x") { - $css_sides: ("left", "right"); - } - @else if ($side == "y") { - $css_sides: ("top", "bottom"); - } - @else if ($side == "") { - $css_sides: (""); - } - - @each $side in $css_sides { - @if ($spacer == "auto") { - @if ($side == "") { - #{$css_property}: auto; - } @else { - #{$css_property}-#{$side}: auto; - } - } @else { - @if ($side == "") { - @if ($negative == true) { - #{$css_property}: - map-get($spacers, $spacer); - } @else { - #{$css_property}: map-get($spacers, $spacer); - } - } @else { - @if ($negative == true) { - #{$css_property}-#{$side}: - map-get($spacers, $spacer); - } @else { - #{$css_property}-#{$side}: map-get($spacers, $spacer); - } - } - } - } -} - -@mixin make-spacings() { - $propertys: ("m", "p"); - $sides: ("t", "b", "l", "r", "x", "y", ""); - $spacers: (0, 1, 2, 3, 4, 5); - - @each $property in $propertys { - @each $side in $sides { - @each $spacer in $spacers { - .#{$property}#{$side}-#{$spacer} { - @include make-spacing($property, $side, $spacer); - } - } - } - } - - @each $side in $sides { - .m#{$side}-auto { - @include make-spacing("m", $side, "auto"); - } - } -} - -@include make-spacings(); diff --git a/_sass/common/classes/_split-line.scss b/_sass/common/classes/_split-line.scss deleted file mode 100644 index 4434c6f37c8..00000000000 --- a/_sass/common/classes/_split-line.scss +++ /dev/null @@ -1,24 +0,0 @@ -@mixin split-line($direction: default, $width: default, $color: default) { - @if $direction == default { - $direction: top; - } - @if $color == default { - $color: $border-color-l; - } - @if $width == default { - $width: 1px; - } - border: 0 solid $color; - @if $direction == top { - border-top-width: $width; - } - @if $direction == right { - border-right-width: $width; - } - @if $direction == bottom { - border-bottom-width: $width; - } - @if $direction == left { - border-left-width: $width; - } -} diff --git a/_sass/common/classes/_text.scss b/_sass/common/classes/_text.scss deleted file mode 100644 index ac36726e8f3..00000000000 --- a/_sass/common/classes/_text.scss +++ /dev/null @@ -1,37 +0,0 @@ -@mixin text-light { - color: $text-color-theme-light; - h1, h2, h3 { - color: $text-color-theme-light-d; - } - h4, h5 { - color: $text-color-theme-light; - } - h6 { - color: $text-color-theme-light-l; - } - a:not(.button) { - @include link-colors($text-color-theme-light, $main-color-1); - } -} -@mixin text-dark { - color: $text-color-theme-dark; - h1, h2, h3 { - color: $text-color-theme-dark-d; - } - h4, h5 { - color: $text-color-theme-dark; - } - h6 { - color: $text-color-theme-dark-l; - } - a:not(.button) { - @include link-colors($text-color-theme-dark, $main-color-1); - } -} - -.text--light { - @include text-light(); -} -.text--dark { - @include text-dark(); -} diff --git a/_sass/common/classes/_transform.scss b/_sass/common/classes/_transform.scss deleted file mode 100644 index a552879cc0a..00000000000 --- a/_sass/common/classes/_transform.scss +++ /dev/null @@ -1,4 +0,0 @@ -@mixin transform($value) { - -webkit-transform: $value; - transform: $value; -} diff --git a/_sass/common/classes/_transition.scss b/_sass/common/classes/_transition.scss deleted file mode 100644 index abbe08b942d..00000000000 --- a/_sass/common/classes/_transition.scss +++ /dev/null @@ -1,4 +0,0 @@ -@mixin transition($value) { - -webkit-transition: $value; - transition: $value; -} diff --git a/_sass/common/classes/_user-select.scss b/_sass/common/classes/_user-select.scss deleted file mode 100644 index 104cbb503e6..00000000000 --- a/_sass/common/classes/_user-select.scss +++ /dev/null @@ -1,6 +0,0 @@ -@mixin user-select($value) { - -webkit-user-select: $value; - -moz-user-select: $value; - -ms-user-select: $value; - user-select: $value; -} diff --git a/_sass/common/components/_button.scss b/_sass/common/components/_button.scss deleted file mode 100644 index 08ce7a92685..00000000000 --- a/_sass/common/components/_button.scss +++ /dev/null @@ -1,163 +0,0 @@ -@mixin button() { - display: inline-block; - font-weight: map-get($button, font-weight); - line-height: 1 !important; - text-decoration: none !important; - cursor: pointer; - outline: none; - @include user-select(none); - svg { - width: 1rem; - height: 1rem; - } - @include disabled() { - cursor: not-allowed; - } -} - -.button { - @include button(); -} - -.button--primary { - @include clickable($text-color-1, $main-color-1); -} - -.button--secondary { - @include clickable($text-color-3, $main-color-3); -} - -.button--success { - @include clickable($text-color-function, $green); -} - -.button--info { - @include clickable($text-color-function, $blue); -} - -.button--warning { - @include clickable($text-color-function, $yellow); -} - -.button--error { - @include clickable($text-color-function, $red); -} - -.button--theme-light { - @include clickable($text-color-theme-dark, $main-color-theme-light); -} - -.button--theme-dark { - @include clickable($text-color-theme-light, $main-color-theme-dark); -} - -.button--outline-primary { - color: $main-color-1; - border: 1px solid $main-color-1; - @include clickable($main-color-1, transparent, $text-color-1, $main-color-1); -} - -.button--outline-secondary { - color: $main-color-3; - border: 1px solid $main-color-3; - @include clickable($main-color-3, transparent, $text-color-3, $main-color-3); -} - -.button--outline-success { - color: $green; - border: 1px solid $green; - @include clickable($green, transparent, $text-color-function, $green); -} - -.button--outline-info { - color: $blue; - border: 1px solid $blue; - @include clickable($blue, transparent, $text-color-function, $blue); -} - -.button--outline-warning { - color: $yellow; - border: 1px solid $yellow; - @include clickable($yellow, transparent, $text-color-function, $yellow); -} - -.button--outline-error { - color: $red; - border: 1px solid $red; - @include clickable($red, transparent, $text-color-function, $red); -} - -.button--outline-theme-light { - color: $main-color-theme-light; - border: 1px solid $main-color-theme-light; - @include clickable($main-color-theme-light, transparent, $text-color-theme-dark, $main-color-theme-light); -} - -.button--outline-theme-dark { - color: $main-color-theme-dark; - border: 1px solid $main-color-theme-dark; - @include clickable($main-color-theme-dark, transparent, $text-color-theme-light, $main-color-theme-dark); -} - -.button--pill { - border-radius: map-get($button, pill-radius); - @extend .button--md; -} - -.button--rounded { - border-radius: map-get($base, border-radius); - @extend .button--md; -} - -.button--circle { - @include inline-flex(); - @include justify-content(center); - @include align-items(center); - border-radius: 50%; - @extend .button--md; -} - -.button--md { - padding: map-get($button, padding-y) map-get($button, padding-x); - font-size: map-get($base, font-size); - &.button--circle { - width: map-get($button, circle-diameter); - height: map-get($button, circle-diameter); - } -} - -.button--xs { - padding: map-get($button, padding-y-xs) map-get($button, padding-x-xs); - font-size: map-get($base, font-size-xs); - &.button--circle { - width: map-get($button, circle-diameter-xs); - height: map-get($button, circle-diameter-xs); - } -} - -.button--sm { - padding: map-get($button, padding-y-sm) map-get($button, padding-x-sm); - font-size: map-get($base, font-size-sm); - &.button--circle { - width: map-get($button, circle-diameter-sm); - height: map-get($button, circle-diameter-sm); - } -} - -.button--lg { - padding: map-get($button, padding-y-lg) map-get($button, padding-x-lg); - font-size: map-get($base, font-size-lg); - &.button--circle { - width: map-get($button, circle-diameter-lg); - height: map-get($button, circle-diameter-lg); - } -} - -.button--xl { - padding: map-get($button, padding-y-xl) map-get($button, padding-x-xl); - font-size: map-get($base, font-size-xl); - &.button--circle { - width: map-get($button, circle-diameter-xl); - height: map-get($button, circle-diameter-xl); - } -} diff --git a/_sass/common/components/_card.scss b/_sass/common/components/_card.scss deleted file mode 100644 index 2431461ef42..00000000000 --- a/_sass/common/components/_card.scss +++ /dev/null @@ -1,103 +0,0 @@ - -.card { - max-width: 18rem; - border-radius: map-get($base, border-radius); - @include box-shadow(); - @include transition(box-shadow map-get($animation, duration) map-get($animation, timing-function)); - & > :first-child { - border-top-left-radius: map-get($base, border-radius); - border-top-right-radius: map-get($base, border-radius); - } - & > :last-child { - border-bottom-right-radius: map-get($base, border-radius); - border-bottom-left-radius: map-get($base, border-radius); - } -} - -.cell { - & > .card { - max-width: unset; - } -} - -.card__content { - padding: map-get($spacers, 2) map-get($spacers, 3); -} - -.card__header, .card__header > a { - @include link-colors($text-color-d, $main-color-1); -} - -.card__image { - position: relative; - width: 100%; - & > img { - display: block; - width: 100%; - height: auto; - border-radius: inherit; - } - & > .overlay { - position: absolute; - width: 100%; - max-height: 100%; - padding: map-get($spacers, 2); - a { - text-decoration: none !important; - } - } - & > .overlay, & > .overlay--top { - top: 0; - bottom: auto; - border-top-left-radius: inherit; - border-top-right-radius: inherit; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; - } - & > .overlay--bottom { - top: auto; - bottom: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; - } - & > .overlay--full { - top: 0; - bottom: 0; - } - & > .overlay, & > .overlay--dark { - @extend .text--dark; - background-color: rgba(#000, .4); - } - & > .overlay--light { - @extend .text--light; - background: rgba(#fff, .4); - } -} - -.card--clickable { - cursor: pointer; - @include hover() { - @include box-shadow(2); - .card__image { - & > img { - height: inherit; - } - } - } - @include transition(map-get($clickable, transition)); -} - -.card--flat { - @include box-shadow(0); - .card__image { - & > img { - border-radius: map-get($base, border-radius); - } - } - .card__content { - padding-top: 0; - padding-left: 0; - } -} diff --git a/_sass/common/components/_gallery.scss b/_sass/common/components/_gallery.scss deleted file mode 100644 index 689eeae33ee..00000000000 --- a/_sass/common/components/_gallery.scss +++ /dev/null @@ -1,21 +0,0 @@ -.gallery { - height: 100%; - @include flexbox(); - @include flex-direction(column); -} - -.gallery__swiper { - @include flex(1); -} - -.gallery-item { - @include flexbox(); - @include align-items(center); - @include justify-content(center); - height: 100%; - overflow: hidden; -} - -.gallery-item__main { - display: block; -} diff --git a/_sass/common/components/_hero.scss b/_sass/common/components/_hero.scss deleted file mode 100644 index 81a72ccd9c3..00000000000 --- a/_sass/common/components/_hero.scss +++ /dev/null @@ -1,70 +0,0 @@ -.hero { - background-position: 50% 50%; - @include flexbox(); - @include flex-direction(column); - @include justify-content(center); - h1 { font-size: map-get($base, font-size-h1-xl); } - h2 { font-size: map-get($base, font-size-h2-xl); } - h3 { font-size: map-get($base, font-size-h3-xl); } - h4 { font-size: map-get($base, font-size-h4-xl); } - h5 { font-size: map-get($base, font-size-h5-xl); } - h6 { font-size: map-get($base, font-size-h6-xl); } - p { font-size: map-get($base, font-size-xl); } - @include media-breakpoint-down(lg) { - h1 { font-size: map-get($base, font-size-h1-lg); } - h2 { font-size: map-get($base, font-size-h2-lg); } - h3 { font-size: map-get($base, font-size-h3-lg); } - h4 { font-size: map-get($base, font-size-h4-lg); } - h5 { font-size: map-get($base, font-size-h5-lg); } - h6 { font-size: map-get($base, font-size-h6-lg); } - p { font-size: map-get($base, font-size-lg); } - } - @include media-breakpoint-down(md) { - h1 { font-size: map-get($base, font-size-h1-sm); } - h2 { font-size: map-get($base, font-size-h2-sm); } - h3 { font-size: map-get($base, font-size-h3-sm); } - h4 { font-size: map-get($base, font-size-h4-sm); } - h5 { font-size: map-get($base, font-size-h5-sm); } - h6 { font-size: map-get($base, font-size-h6-sm); } - p { font-size: map-get($base, font-size); } - } - background-size: cover; - -} - -.hero--center { - text-align: center; - .menu { - @extend .menu--center; - } -} - -.hero--light { - @extend .text--light; -} - -.hero--dark { - @extend .text--dark; -} - -.hero__content { - margin: map-get($spacers, 5); - @include media-breakpoint-down(lg) { - margin: map-get($spacers, 5) map-get($spacers, 4); - } - @include media-breakpoint-down(md) { - margin: map-get($spacers, 4) map-get($spacers, 3); - } -} - -.heros { - & > .hero { - margin: map-get($spacers, 5); - @include media-breakpoint-down(lg) { - margin: map-get($spacers, 3); - } - @include media-breakpoint-down(md) { - margin: map-get($spacers, 2) 0; - } - } -} diff --git a/_sass/common/components/_image.scss b/_sass/common/components/_image.scss deleted file mode 100644 index 9d1a220cc69..00000000000 --- a/_sass/common/components/_image.scss +++ /dev/null @@ -1,19 +0,0 @@ -.image { - max-width: 100%; - @extend .image--md; -} -.image--md { - width: map-get($image, width); -} -.image--xl { - width: map-get($image, width-xl); -} -.image--lg { - width: map-get($image, width-lg); -} -.image--sm { - width: map-get($image, width-sm); -} -.image--xs { - width: map-get($image, width-xs); -} diff --git a/_sass/common/components/_item.scss b/_sass/common/components/_item.scss deleted file mode 100644 index a1a9fd0fb82..00000000000 --- a/_sass/common/components/_item.scss +++ /dev/null @@ -1,100 +0,0 @@ -.item { - @include flexbox(); - @include media-breakpoint-down(md) { - @include flex-direction(column); - } -} - -.item__image { - margin-right: map-get($spacers, 3); - & + .item__content { - & > :first-child { - margin-top: 0; - & > :first-child { - margin-top: 0; - } - } - } - @include media-breakpoint-down(md) { - margin-right: 0; - } -} - -.item__content { - @include flex(1); - min-width: 0; -} - -a > .item__header, a.item__header, .item__header > a { - @include link-colors($text-color-d, $main-color-1); -} - -.item__meta { - color: $text-color-l; -} - -.item__description { - &, .article__content { - font-size: map-get($base, font-size-sm); - line-height: map-get($base, line-height); - @include block-elements() { - margin-top: map-get($spacers, 2); - margin-bottom: map-get($spacers, 2); - } - @include heading-elements() { - margin-top: map-get($spacers, 3); - } - h1, h2, h3 { - color: $text-color; - } - h1, h2 { - padding: 0; - border: none; - } - h1 { - font-size: map-get($base, font-size-h1-xs); - } - h2 { - font-size: map-get($base, font-size-h2-xs); - } - h3 { - font-size: map-get($base, font-size-h3-xs); - } - h4 { - font-size: map-get($base, font-size-h4-xs); - } - h5 { - font-size: map-get($base, font-size-h5-xs); - } - h6 { - font-size: map-get($base, font-size-h6-xs); - } - img { - max-height: 32rem; - @include media-breakpoint-down(md) { - max-height: 14rem; - } - } - } -} - -.items { - & > .item { - &:not(:last-child) { - margin-bottom: map-get($spacers, 2); - } - } -} - -.items--divided { - & > .item { - &:not(:first-child) { - padding-top: map-get($spacers, 4); - } - &:not(:last-child) { - padding-bottom: map-get($spacers, 4); - @include split-line(bottom); - } - list-style-type: none; - } -} diff --git a/_sass/common/components/_menu.scss b/_sass/common/components/_menu.scss deleted file mode 100644 index 222676a518a..00000000000 --- a/_sass/common/components/_menu.scss +++ /dev/null @@ -1,67 +0,0 @@ -@mixin menu-direction($direction: default) { - @if $direction == default { - $direction: "horizontal"; - } - @if $direction == "vertical" { - @include flex-direction(column); - } @else { - @include flex-direction(row); - } -} - -@mixin menu($horizontal-spacer: default, $horizontal-item-vertical-spacer: default, $wrap: default) { - @if $horizontal-spacer == default { - $horizontal-spacer: map-get($menu, horizontal-spacer); - } - @if $horizontal-item-vertical-spacer == default { - $horizontal-item-vertical-spacer: map-get($menu, horizontal-item-vertical-spacer); - } - @if $wrap == default { - $wrap: wrap; - } - @include flexbox(); - @include flex-wrap($wrap); - margin-top: 0; - margin-bottom: 0; - & > li { - @if $horizontal-item-vertical-spacer { - margin-top: map-get($spacers, $horizontal-item-vertical-spacer); - margin-bottom: map-get($spacers, $horizontal-item-vertical-spacer); - } - margin-right: map-get($spacers, $horizontal-spacer); - list-style-type: none; - &:last-child { - margin-right: 0; - } - } -} - -.menu { - @include menu(); - @include menu-direction(); - @include align-items(center); -} - -.menu--vertical { - @include menu-direction("vertical"); - @include align-items(normal); - & > li { - margin-right: 0; - } -} - -.menu--inline { - @include inline-flex(); -} - -.menu--center { - @include justify-content(center); -} - -.menu--nowrap { - @include flex-wrap(nowrap); -} - -.menu--grow { - @include flex-grow(1); -} diff --git a/_sass/common/components/_modal.scss b/_sass/common/components/_modal.scss deleted file mode 100644 index cd716281fd9..00000000000 --- a/_sass/common/components/_modal.scss +++ /dev/null @@ -1,39 +0,0 @@ -@mixin modal($z-index: default, $color: default, $background-color: default) { - @if $z-index == default { - $z-index: map-get($z-indexes, modal); - } - @if $color == default { - $color: $text-color-theme-dark; - } - @if $background-color == default { - $background-color: $mask-color; - } - position: fixed; - top: 0; - left: 0; - z-index: $z-index; - width: 100%; - height: 100%; - color: $color; - touch-action: none; - background-color: $background-color; - opacity: 0; - @include transform(translate(100%, 0)); - @include transition(#{opacity map-get($animation, duration) map-get($animation, timing-function), - transform 0s map-get($animation, duration) map-get($animation, timing-function)}); -} -@mixin modal--show() { - opacity: 1; - @include transform(translate(0, 0)); - @include transition(#{opacity map-get($animation, duration) map-get($animation, timing-function)}); -} - -.modal { - @include modal(); -} -.modal--show { - @include modal--show(); -} -.modal--overflow { - @include overflow(auto); -} diff --git a/_sass/common/components/_swiper.scss b/_sass/common/components/_swiper.scss deleted file mode 100644 index 3493a621a79..00000000000 --- a/_sass/common/components/_swiper.scss +++ /dev/null @@ -1,48 +0,0 @@ -.swiper { - position: relative; - @include overflow(hidden); -} - -.swiper__wrapper, .swiper__slide { - width: 100%; - height: 100%; -} - -.swiper__wrapper { - @include flexbox(); -} - -.swiper__wrapper--animation { - @include transition(transform map-get($animation, duration) map-get($animation, timing-function)); -} - -.swiper__slide { - @include flex-shrink(0); - & > img { - max-width: 100%; - } -} - -.swiper__button { - position: absolute; - top: 50%; - @extend .button, .button--circle; - @include transform(translate(0, -50%)); - @include clickable($text-color-d, rgba($main-color-3, .4)); -} - -.swiper--light .swiper__button { - @include clickable($text-color-theme-light, rgba($main-color-theme-dark, .4)); -} - -.swiper--dark .swiper__button { - @include clickable($text-color-theme-dark, rgba($main-color-theme-light, .4)); -} - -.swiper__button--prev { - left: 10px; -} - -.swiper__button--next { - right: 10px; -} diff --git a/_sass/common/components/_toc.scss b/_sass/common/components/_toc.scss deleted file mode 100644 index 9fd142183a1..00000000000 --- a/_sass/common/components/_toc.scss +++ /dev/null @@ -1,124 +0,0 @@ -ul.toc { - display: block; - margin: 0; - color: $text-color; - list-style-type: none; - & > li { - margin: map-get($spacers, 1) / 2 0; - a { - display: inline-block; - margin: map-get($spacers, 1) / 4 0; - text-decoration: none !important; - } - } - .toc-h1, - .toc-h2, - .toc-h3, - .toc-h4, - .toc-h5, - .toc-h6 { - a { - @include link-colors($text-color, $main-color-1); - } - &.active { - a { - @include link-colors($main-color-1); - } - } - } - - .toc-h2, - .toc-h3, - .toc-h4, - .toc-h5, - .toc-h6 { - &, a { - font-size: map-get($base, font-size-xs); - font-weight: map-get($base, font-weight); - line-height: map-get($base, line-height-xs); - } - } - .toc-h1 { - @include split-line(bottom); - padding: map-get($spacers, 2) 0 map-get($spacers, 1) 0; - margin-bottom: map-get($spacers, 2); - color: $text-color-d; - &, a { - font-size: map-get($base, font-size-sm); - font-weight: map-get($base, font-weight-bold); - line-height: map-get($base, line-height-sm); - } - a { - @include link-colors($text-color-d, $main-color-1); - } - } - .toc-h2 { - &, a { - font-weight: map-get($base, font-weight-bold); - } - } - .toc-h3 { - margin-left: map-get($spacers, 3); - } - .toc-h4 { - margin-left: map-get($spacers, 3) * 2; - } - .toc-h5, - .toc-h6 { - margin-left: map-get($spacers, 3) * 3; - } - .toc-h6 { - color: $text-color-l; - a { - @include link-colors($text-color-l, $main-color-1); - } - } -} - -ul.toc--ellipsis { - & > li { - @include overflow(hidden); - text-overflow: ellipsis; - white-space: nowrap; - } -} - -ul.toc--navigator { - & > li { - a { - padding-left: map-get($spacers, 2); - margin: map-get($spacers, 1) 0; - } - &.active { - a { - margin-left: -4px; - @include split-line(left, 4px, $main-color-1); - } - } - } - .toc-h2, - .toc-h3, - .toc-h4 { - color: $text-color-l; - a { - @include link-colors($text-color-l); - } - } - .toc-h1 { - &, a { - font-size: map-get($base, font-size); - line-height: map-get($base, line-height); - } - color: $text-color; - a { - @include link-colors($text-color-d); - } - } - .toc-h2 { - &, a { - font-size: map-get($base, font-size-sm); - font-weight: map-get($base, font-weight-bold); - line-height: map-get($base, line-height-sm); - } - } -} diff --git a/_sass/components/_article-content.scss b/_sass/components/_article-content.scss deleted file mode 100644 index 6dbda0d3cf9..00000000000 --- a/_sass/components/_article-content.scss +++ /dev/null @@ -1,221 +0,0 @@ -.article__content { - line-height: map-get($base, line-height-lg); - word-wrap: break-word; - @media print { - line-height: map-get($base, line-height); - } - @include block-elements() { - margin: map-get($spacers, 3) 0; - @media print { - margin: map-get($spacers, 2) 0; - } - } - @include heading-elements() { - position: relative; - margin-top: map-get($spacers, 4); - @media print { - margin-top: map-get($spacers, 3); - } - & > .anchor { - @include link-colors($border-color, $main-color-1); - margin-left: map-get($spacers, 1); - text-decoration: none; - visibility: hidden; - opacity: 0; - & > i { - font-size: map-get($base, font-size-sm); - } - } - @include hover() { - & > .anchor { - cursor: pointer; - visibility: visible; - opacity: 1; - } - } - } - h1, - h2 { - @include split-line(bottom); - } - hr { - border: none; - @include horizontal-rules(); - } - blockquote { - padding-left: map-get($spacers, 3); - font-size: map-get($base, font-size-sm); - color: $text-color-l; - @include split-line(left, 4px, $border-color); - p { - margin: map-get($spacers, 2) 0; - } - & > :last-child { - margin-bottom: 0; - } - } - img:not(.emoji) { - max-width: 100%; - vertical-align: middle; - } - .emoji { - display: inline-block; - width: map-get($base, line-height-lg) * .7rem; - height: map-get($base, line-height-lg) * .7rem; - vertical-align: text-bottom; - } - .footnotes { - @include split-line(); - margin-top: map-get($spacers, 5); - @media print { - margin-top: map-get($spacers, 2) * 2; - } - } - code { - padding: map-get($spacers, 1) map-get($spacers, 2); - background-color: $text-background-color; - border-radius: map-get($base, border-radius); - span { - padding: 0; - margin: 0; - } - } - pre { - @include overflow(auto); - & > code { - padding: 0; - word-wrap: normal; - background-color: transparent; - &.language-mermaid, &.language-chart { - svg { - width: 100%; - } - display: none; - &[data-processed] { - display: block; - } - } - } - } - .highlighter-rouge > .highlight, figure.highlight { - & > pre { - padding: map-get($spacers, 3) 0 map-get($spacers, 3) map-get($spacers, 3); - margin: 0; - background-color: $text-background-color; - border-radius: map-get($base, border-radius); - & > code { - display: block; - } - } - } - figure.highlight { - &::before { - display: block; - padding: map-get($spacers, 2) map-get($spacers, 3) map-get($spacers, 2) 0; - font-weight: map-get($base, font-weight-bold); - color: $decorate-color; - text-align: right; - text-transform: uppercase; - content: attr(data-lang); - background-color: $text-background-color; - border-top-left-radius: map-get($base, border-radius); - border-top-right-radius: map-get($base, border-radius); - } - & > pre { - padding-top: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; - & > code { - & > .rouge-table { - width: auto; - margin: 0 0 #{- map-get($spacers, 3)} #{- map-get($spacers, 3)}; - tbody, tr, td { - padding-top: 0; - padding-bottom: 0; - border: none; - } - & > tbody { - @include flexbox; - & > tr { - width: 100%; - @include flexbox; - & > .code { - padding: 0 0 map-get($spacers, 3) map-get($spacers, 2); - @include overflow(auto); - } - } - } - tbody td { - &.gl { - padding-left: map-get($spacers, 3); - } - & > pre { - display: block; - margin: 0; - border-radius: 0; - @include overflow(auto); - &.lineno { - color: $text-color-l; - @include user-select(none); - } - } - } - } - } - } - } - ul, ol { - margin-left: map-get($spacers, 4); - ul, ol { - margin-top: 0; - margin-bottom: 0; - } - li { - p { - margin: map-get($spacers, 2); - @media print { - margin: map-get($spacers, 1); - } - } - } - } - dl { - dt, dd { - p { - margin: map-get($spacers, 2); - @media print { - margin: map-get($spacers, 1); - } - } - } - dt { - font-weight: map-get($base, font-weight-bold); - } - dd { - margin-left: 2rem; - } - } - ul.task-list { - margin-left: 0; - list-style-type: none; - ul, ol { - margin-left: map-get($spacers, 4); - } - } - table { - display: block; - width: 100%; - border-collapse: collapse; - @include overflow(auto); - thead, tfoot { - background-color: $text-background-color; - } - th, td { - padding: map-get($spacers, 2); - border: 1px solid $border-color-l; - } - th { - font-weight: map-get($base, font-weight-bold); - } - } -} diff --git a/_sass/components/_article-footer.scss b/_sass/components/_article-footer.scss deleted file mode 100644 index 575bc8d74b0..00000000000 --- a/_sass/components/_article-footer.scss +++ /dev/null @@ -1,17 +0,0 @@ -.article__footer { - margin: map-get($spacers, 4) 0; - font-size: map-get($base, font-size-sm); -} - -.article__license, .article__subscribe { - a { - @include link-colors($text-color, $main-color-1); - } -} - -.article__license { - color: $text-color-l; - img { - height: map-get($base, font-size) * 1.6; - } -} diff --git a/_sass/components/_article-header.scss b/_sass/components/_article-header.scss deleted file mode 100644 index 002cc8cfba7..00000000000 --- a/_sass/components/_article-header.scss +++ /dev/null @@ -1,50 +0,0 @@ -.article__header { - margin-top: map-get($spacers, 5); - margin-bottom: map-get($spacers, 4); - @include media-breakpoint-down(md) { - margin-top: map-get($spacers, 4); - } - header, h1 { - display: inline; - } - h1 { - word-wrap: break-word; - } - .split-space { - @include user-select(none); - } - .edit-on-github { - text-decoration: none !important; - } -} - -.article__header--overlay { - .overlay { - min-height: 36rem; - padding-top: map-get($spacers, 5) * 2; - padding-bottom: map-get($spacers, 5) * 2; - @include media-breakpoint-down(md) { - min-height: 29rem; - padding-top: map-get($spacers, 5); - padding-bottom: map-get($spacers, 5); - } - } - .overlay__excerpt { - font-size: map-get($base, font-size-h3-xl); - @include media-breakpoint-down(lg) { - font-size: map-get($base, font-size-h3-lg); - } - @include media-breakpoint-down(md) { - font-size: map-get($base, font-size-h3-sm); - } - font-weight: map-get($base, font-weight-bold); - } - - .article__header { - margin-top: 0; - } -} - -.article__header--cover { - width: 100%; -} diff --git a/_sass/components/_article-info.scss b/_sass/components/_article-info.scss deleted file mode 100644 index bebf9b5fd3a..00000000000 --- a/_sass/components/_article-info.scss +++ /dev/null @@ -1,25 +0,0 @@ -.article__info { - font-size: map-get($base, font-size-sm); - color: $text-color-l; - .left-col { - float: left; - @include media-breakpoint-down(md) { - float: none; - } - } - .right-col { - float: right; - margin-left: map-get($button, padding-x-sm); - @include media-breakpoint-down(md) { - float: none; - } - & > li { - &:not(:last-child) { - @include split-line(right, default, $text-color-l); - padding-right: map-get($spacers, 2); - margin-right: map-get($spacers, 2); - line-height: map-get($base, line-height-xs); - } - } - } -} diff --git a/_sass/components/_article-list.scss b/_sass/components/_article-list.scss deleted file mode 100644 index c59550d2e02..00000000000 --- a/_sass/components/_article-list.scss +++ /dev/null @@ -1,18 +0,0 @@ -.article-list { - .item__meta { - padding: 0 map-get($spacers, 3) 0 0; - font-family: map-get($base, font-family-code); - font-size: map-get($base, font-size-sm); - white-space: nowrap; - } - &.grid--sm { - .card__header { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - } -} -.article-list__group-header { - margin-top: map-get($spacers, 3); -} diff --git a/_sass/components/_author-links.scss b/_sass/components/_author-links.scss deleted file mode 100644 index efe09c2ec27..00000000000 --- a/_sass/components/_author-links.scss +++ /dev/null @@ -1,43 +0,0 @@ -.author-links { - & > ul { - margin: 0; - & > li > { - .mail-button { - @include clickable($text-color-1, $mail-color); - } - .facebook-button { - @include clickable($text-color-1, $facebook-color); - } - .twitter-button { - @include clickable($text-color-1, $twitter-color); - } - .weibo-button { - @include clickable($text-color-1, $weibo-color); - } - .googlepluse-button { - @include clickable($text-color-1, $google-plus-color); - } - .telegram-button { - @include clickable($text-color-1, $telegram-color); - } - .medium-button { - @include clickable($text-color-1, $medium-color); - } - .zhihu-button { - @include clickable($text-color-1, $zhihu-color); - } - .douban-button { - @include clickable($text-color-1, $douban-color); - } - .linkedin-button { - @include clickable($text-color-1, $linkedin-color); - } - .github-button { - @include clickable($text-color-1, $github-color); - } - .npm-button { - @include clickable($text-color-1, $npm-color); - } - } - } -} diff --git a/_sass/components/_author-profile.scss b/_sass/components/_author-profile.scss deleted file mode 100644 index b5067152e26..00000000000 --- a/_sass/components/_author-profile.scss +++ /dev/null @@ -1,26 +0,0 @@ -.author-profile { - max-width: 25rem; - padding: map-get($spacers, 2) map-get($spacers, 3); - margin: map-get($spacers, 4) 0; - font-size: map-get($base, font-size-sm); - background-color: $text-background-color; - @include media-breakpoint-down(md) { - text-align: center; - } -} -.author-profile__avatar { - width: 5rem; - height: 5rem; - margin-top: map-get($spacers, 2); - border-radius: 50%; -} -.author-profile__name { - font-size: map-get($base, font-size-lg); - font-weight: map-get($base, font-weight-bold); - a { - @include link-colors($text-color, $main-color-1); - } -} -.author-profile__links { - @include overflow(auto); -} diff --git a/_sass/components/_extensions.scss b/_sass/components/_extensions.scss deleted file mode 100644 index 7c83f75596b..00000000000 --- a/_sass/components/_extensions.scss +++ /dev/null @@ -1,35 +0,0 @@ -.extensions { - margin: map-get($spacers, 3) 0; - @extend .d-print-none; -} - -.extensions--video, .extensions--slide, .extensions--demo { - position: relative; - width: 100%; - padding: 0; - & > iframe { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - } -} - -.extensions--video { - padding-top: percentage(315 / 560); -} - -.extensions--slide { - padding-top: percentage(487 / 599); -} - -.extensions--demo { - min-height: 340px; - padding-top: percentage(315 / 560); -} - -.extensions--audio { - display: block; - max-width: 100% !important; -} diff --git a/_sass/components/_footer.scss b/_sass/components/_footer.scss deleted file mode 100644 index 63ed8feff35..00000000000 --- a/_sass/components/_footer.scss +++ /dev/null @@ -1,33 +0,0 @@ -/** - * Site Info - */ - -.footer { - @include flexbox(); - @include align-items(center); - color: $footer-text-color; - background: $footer-background; - a { - @include link-colors ($footer-text-color, $main-color-1); - } - .site-info { - font-size: map-get($base, font-size-xs); - text-align: center; - .menu { - line-height: map-get($base, line-height-xs); - & > * { - &:not(:last-child) { - @include split-line(right, default, $footer-text-color); - padding-right: map-get($spacers, 1); - margin-right: map-get($spacers, 1); - } - } - } - } -} -.footer__author-links { - @include overflow(auto); - .author-links { - text-align: center; - } -} diff --git a/_sass/components/_header.scss b/_sass/components/_header.scss deleted file mode 100644 index 44d108d69ac..00000000000 --- a/_sass/components/_header.scss +++ /dev/null @@ -1,123 +0,0 @@ -.header { - background: $header-background; - a { - font-weight: map-get($base, font-weight); - text-decoration: none !important; - @include link-colors($header-text-color, $main-color-1); - } - .main { - @include flexbox(); - @include media-breakpoint-down(md) { - @include flex-direction(column); - } - } -} - -.header--dark { - @extend .text--dark; - background: rgba(#000, .15); - .navigation__item--active { - &::after { - @include split-line(bottom, 4px, $text-color-theme-dark); - } - } -} - -.header--light { - @extend .text--light; - background: rgba(#fff, .15); - .navigation__item--active { - &::after { - @include split-line(bottom, 4px, $text-color-theme-light); - } - } -} - -.header__title { - @include menu(3, 0); - @include align-items(center); - @include flex-wrap(nowrap); - @include flex(1); - height: map-get($layout, header-height); - margin-right: map-get($spacers, 3); - white-space: nowrap; - @include media-breakpoint-down(md) { - height: auto; - margin-right: 0; - } - & > .header__brand { - @include flex(1); - @include media-breakpoint-down(md) { - height: map-get($layout, header-height-sm); - } - } - & > .search-button { - display: none; - margin-left: map-get($spacers, 2); - @include media-breakpoint-down(md) { - @include flexbox(); - } - } -} - -.header__brand { - @include flexbox(); - @include align-items(center); - & > svg { - width: map-get($base, font-size-h4) * 1.6; - height: map-get($base, font-size-h4) * 1.6; - margin-right: map-get($spacers, 3); - vertical-align: middle; - @include media-breakpoint-down(md) { - width: map-get($base, font-size-h4) * 1.2; - height: map-get($base, font-size-h4) * 1.2; - } - } - & > a { - display: inline-block; - font-size: map-get($base, font-size-h4); - @include media-breakpoint-down(md) { - font-size: map-get($base, font-size-h4-small); - } - } -} - -.navigation { - @include overflow(auto, "x"); - & > ul { - height: map-get($layout, header-height); - padding-bottom: 0; - margin: 0; - @include media-breakpoint-down(md) { - padding-bottom: 4px; - margin: -4px 0 0 0; - } - @include menu(3, 2, nowrap); - @include align-items(center); - @include media-breakpoint-down(md) { - height: auto; - } - .search-button { - @include media-breakpoint-down(md) { - display: none; - } - } - } -} - -.navigation__item { - &::after { - display: block; - margin-bottom: -4px; - content: ""; - @include split-line(bottom, 4px, transparent); - } -} -.navigation__item--active { - a { - @include link-colors($main-color-1, $main-color-1); - } - &::after { - @include split-line(bottom, 4px, $main-color-1); - } -} diff --git a/_sass/components/_lightbox.scss b/_sass/components/_lightbox.scss deleted file mode 100644 index 4dad32be020..00000000000 --- a/_sass/components/_lightbox.scss +++ /dev/null @@ -1,7 +0,0 @@ -.popup-image { - cursor: pointer; - @include hover() { - @include box-shadow(2); - } - @include transition(map-get($clickable, transition)); -} diff --git a/_sass/components/_main.scss b/_sass/components/_main.scss deleted file mode 100644 index 265c727a633..00000000000 --- a/_sass/components/_main.scss +++ /dev/null @@ -1,28 +0,0 @@ -.main { - width: 100%; - max-width: map-get($layout, content-max-width); - padding: 0 map-get($spacers, 5); - margin: 0 auto; - @include media-breakpoint-down(lg) { - padding: 0 map-get($spacers, 4); - } - @include media-breakpoint-down(md) { - padding: 0 map-get($spacers, 3); - } -} - -.has-aside { - .main { - max-width: map-get($layout, content-max-width) + map-get($layout, aside-width); - @include media-breakpoint-down(lg) { - max-width: map-get($layout, content-max-width); - } - } -} - -.full-width { - .main { - width: 100%; - max-width: 100%; - } -} diff --git a/_sass/components/_search.scss b/_sass/components/_search.scss deleted file mode 100644 index d28dabcbb9e..00000000000 --- a/_sass/components/_search.scss +++ /dev/null @@ -1,186 +0,0 @@ -.search { - @include overflow(auto); - -} -.search--google-custom-search-engine { - .main { - padding-top: map-get($spacers, 4); - padding-bottom: map-get($spacers, 4); - @include media-breakpoint-down(md) { - position: absolute; - padding: 0; - } - } -} - -.search__header { - margin-top: map-get($spacers, 4); - font-size: map-get($base, font-size-h1); - font-weight: map-get($base, font-weight-bold); - color: $text-color-d; - .search--light & { - color: $text-color-theme-light-d; - } - .search--dark & { - color: $text-color-theme-dark-d; - } - @include media-breakpoint-down(md) { - display: none; - } -} - -.search-bar { - @include flexbox(); - margin: map-get($spacers, 3) 0 map-get($spacers, 4) 0; -} - -.search-box { - position: relative; - width: 100%; - max-width: 22rem; - @include media-breakpoint-down(md) { - width: 100%; - max-width: none; - } - & > input { - display: inline-block; - width: 100%; - height: $button-height-lg; - padding: 0 2rem; - margin: 0; - line-height: 1 !important; - color: $text-color; - background-color: transparent; - border: 2px solid $border-color; - border-radius: map-get($button, pill-radius); - -webkit-appearance: none; /* fix iOS don't display box-shadow properly */ - @include transition(box-shadow map-get($animation, duration) map-get($animation, timing-function)); - @include focus { - box-shadow: 0 0 0 2px rgba($border-color, .4); - } - .search--light & { - color: $text-color-theme-light; - border-color: $text-color-theme-light; - @include focus { - box-shadow: 0 0 0 2px rgba($text-color-theme-light, .4); - } - } - .search--dark & { - color: $text-color-theme-dark; - border-color: $text-color-theme-dark; - @include focus { - box-shadow: 0 0 0 2px rgba($text-color-theme-dark, .4); - } - } - } - & > .search-box__icon-search { - color: $text-color-l; - .search--light & { - color: $text-color-theme-light-l; - } - .search--dark & { - color: $text-color-theme-dark-l; - } - } - & > .search-box__icon-clear { - & > a { - @include link-colors($text-color); - .search--light & { - @include link-colors($text-color-theme-light); - } - .search--dark & { - @include link-colors($text-color-theme-dark); - } - cursor: pointer; - } - } - & > .search-box__icon-search, & > .search-box__icon-clear { - position: absolute; - width: $button-height-lg; - height: $button-height-lg; - line-height: $button-height-lg; - text-align: center; - vertical-align: middle; - } - &.not-empty > .search-box__icon-clear { - display: block; - } - & > .search-box__icon-clear { - top: 0; - right: 0; - display: none; - } - & > .search-box__icon-search { - top: 0; - left: 0; - } -} - -.search__cancel { - margin-left: map-get($spacers, 2); - font-weight: map-get($base, font-weight-bold); - white-space: nowrap; -} - -.search-result { - margin: map-get($spacers, 4) 0; - font-size: map-get($base, font-size-sm); - line-height: map-get($base, line-height-sm); -} - -.search-result__header { - margin: map-get($spacers, 3) 0 map-get($spacers, 2) 0; - font-size: map-get($base, font-size-lg); - font-weight: map-get($base, font-weight-bold); - color: $text-color-l; - text-transform: uppercase; - .search--light & { - color: $text-color-theme-light-l; - } - .search--dark & { - color: $text-color-theme-dark-l; - } -} - -.search-result__item { - list-style-type: none; - a { - padding: map-get($spacers, 1) map-get($spacers, 3); - @include transition(none); - @include clickable($text-color, transparent, $text-color-3, $main-color-3); - .search--light & { - @include clickable($text-color-theme-light, transparent, $text-color-theme-dark, $main-color-theme-light); - } - .search--dark & { - @include clickable($text-color-theme-dark, transparent, $text-color-theme-light, $main-color-theme-dark); - } - } - &.active { - a { - @include plain() { - color: $text-color-3; - background-color: $main-color-3; - .search--light & { - color: $text-color-theme-dark; - background-color: $main-color-theme-light; - } - .search--dark & { - color: $text-color-theme-light; - background-color: $main-color-theme-dark; - } - } - @include active() { - @include transition(map-get($clickable, transition)); - } - } - } -} - -// google search -.gsc-control-cse { - *, - ::before, - ::after { - box-sizing: initial; - } -} diff --git a/_sass/components/_tags.scss b/_sass/components/_tags.scss deleted file mode 100644 index 946b1b6e194..00000000000 --- a/_sass/components/_tags.scss +++ /dev/null @@ -1,24 +0,0 @@ -.site-tags { - .tag-button { - @include clickable($text-color-3, $main-color-3, default, default, $text-color-2,$main-color-2, $text-color-2,$main-color-2); - & > .tag-button__count { - display: inline-block; - margin-left: map-get($spacers, 1); - font-size: map-get($base, font-size-xs); - line-height: 1; - vertical-align: top; - } - } - .tag-button-1 { - @include clickable($text-color-1, rgba($main-color-1, .4), default, default, $text-color-2,$main-color-2, $text-color-2,$main-color-2); - } - .tag-button-2 { - @include clickable($text-color-1, rgba($main-color-1, .55), default, default, $text-color-2,$main-color-2, $text-color-2,$main-color-2); - } - .tag-button-3 { - @include clickable($text-color-1, rgba($main-color-1, .7), default, default, $text-color-2,$main-color-2, $text-color-2,$main-color-2); - } - .tag-button-4 { - @include clickable($text-color-1, rgba($main-color-1, .9), default, default, $text-color-2,$main-color-2, $text-color-2,$main-color-2); - } -} diff --git a/_sass/custom.scss b/_sass/custom.scss deleted file mode 100644 index aa7b9445477..00000000000 --- a/_sass/custom.scss +++ /dev/null @@ -1,3 +0,0 @@ -/* start custom scss snippet */ - -/* end custom scss snippet */ diff --git a/_sass/layout/_404.scss b/_sass/layout/_404.scss deleted file mode 100644 index e206f763b14..00000000000 --- a/_sass/layout/_404.scss +++ /dev/null @@ -1,14 +0,0 @@ -.layout--404 { - .sign { - display: table; - margin: map-get($spacers, 4) auto; - margin-top: map-get($spacers, 5); - h1 { - font-size: map-get($base, font-size-xl) * 4; - line-height: 1; - } - p { - font-size: map-get($base, font-size-xl) * 1.2; - } - } -} diff --git a/_sass/layout/_archive.scss b/_sass/layout/_archive.scss deleted file mode 100644 index 7dc417f4236..00000000000 --- a/_sass/layout/_archive.scss +++ /dev/null @@ -1,5 +0,0 @@ -.layout--archive { - & > .layout--archive__result { - margin: map-get($spacers, 4) 0; - } -} diff --git a/_sass/layout/_article.scss b/_sass/layout/_article.scss deleted file mode 100644 index dd833847047..00000000000 --- a/_sass/layout/_article.scss +++ /dev/null @@ -1,29 +0,0 @@ -.article__sharing { - margin: map-get($spacers, 4) 0; -} -.article__section-navigator { - padding-top: map-get($spacers, 3); - margin: map-get($spacers, 4) 0 map-get($spacers, 3) 0; - word-wrap: break-word; - @include split-line(top, 4px); - & > .previous, & > .next { - width: 50%; - & > span { - font-weight: map-get($base, font-weight-bold); - color: $text-color-l; - } - & > a { - display: block; - @include link-colors($text-color, $main-color-1); - } - } - & > .previous { - float: left; - padding-right: map-get($spacers, 2); - } - & > .next { - float: right; - padding-left: map-get($spacers, 2); - text-align: right; - } -} diff --git a/_sass/layout/_articles.scss b/_sass/layout/_articles.scss deleted file mode 100644 index 85f258ccdab..00000000000 --- a/_sass/layout/_articles.scss +++ /dev/null @@ -1,17 +0,0 @@ -.layout--articles { - margin: map-get($spacers, 4) 0; - margin-top: map-get($spacers, 5); - @include media-breakpoint-down(md) { - margin-top: map-get($spacers, 4); - } - .card__header { - font-size: map-get($base, font-size); - } - .card__image { - & > .overlay { - &, .card__header { - font-size: map-get($base, font-size-sm); - } - } - } -} diff --git a/_sass/layout/_base.scss b/_sass/layout/_base.scss deleted file mode 100644 index 6200ec52e6f..00000000000 --- a/_sass/layout/_base.scss +++ /dev/null @@ -1,6 +0,0 @@ -.icon { - display: block; - > svg { - display: block; - } -} diff --git a/_sass/layout/_home.scss b/_sass/layout/_home.scss deleted file mode 100644 index 298e6b9da06..00000000000 --- a/_sass/layout/_home.scss +++ /dev/null @@ -1,15 +0,0 @@ -.layout--home { - .pagination { - margin: map-get($spacers, 4) 0; - } - .pagination__menu { - max-width: 100%; - @include overflow(auto); - } - .pagination__omit { - color: $text-color-l; - } - .items { - margin-top: map-get($spacers, 4) * 1.5; - } -} diff --git a/_sass/layout/_landing.scss b/_sass/layout/_landing.scss deleted file mode 100644 index 752d4e72b4d..00000000000 --- a/_sass/layout/_landing.scss +++ /dev/null @@ -1,23 +0,0 @@ -.layout--landing { - .heros { - max-width: map-get($layout, content-max-width) * 2; - margin-right: auto; - margin-left: auto; - } - .hero { - img { - display: block; - width: 100%; - margin: 0 auto; - } - } - .hero__content { - margin-bottom: 0; - } - .hero__cover { - max-width: map-get($layout, content-max-width); - } - .hero__cover--full-width { - max-width: none; - } -} diff --git a/_sass/layout/_page.scss b/_sass/layout/_page.scss deleted file mode 100644 index bb42331ce8e..00000000000 --- a/_sass/layout/_page.scss +++ /dev/null @@ -1,165 +0,0 @@ -body, -html, -.root, -.layout--page { - height: 100%; -} - -.layout--page { - &.layout--page--sidebar { - .page__viewport, - .page__grid { - height: 100%; - } - @include media-breakpoint-down(lg) { - .page__main { - @include overflow(unset); - } - } - } -} - -.page__main { - height: 100%; - color: $text-color; - .col-aside { - display: none; - & > aside { - position: absolute; - width: map-get($layout, aside-width); - @include overflow(hidden); - } - } -} - -.page__main-inner { - position: relative; - @include flexbox(); - @include flex-direction(column); - min-height: 100%; - background-color: $background-color; -} - -.page__content { - @include flex(1); - width: 100%; - margin: 0 auto; - @media print { - padding-bottom: 0; - } -} -.hide-footer { - .page__content { - padding-bottom: 0; - } -} - -.page__comments { - margin: map-get($spacers, 4) 0; -} - -.page__aside { - .toc-aside { - padding: map-get($spacers, 5) 0 map-get($spacers, 3) map-get($spacers, 5); - } -} - -.page__actions { - position: fixed; - bottom: map-get($spacers, 5); - left: map-get($spacers, 3); - z-index: map-get($z-indexes, actions); - display: none; -} - -.page__sidebar { - z-index: map-get($z-indexes, sidebar); - display: block; - width: 80%; - max-width: map-get($layout, sidebar-width); - height: 100%; - background-color: $background-color; - @include split-line(right); - @include transition(transform map-get($animation, duration)); - @include overflow(auto); - .sidebar-toc { - padding: map-get($spacers, 3) map-get($spacers, 3) map-get($spacers, 4) map-get($spacers, 4); - } -} -.sidebar-button { - @include clickable($text-color-d, rgba($main-color-3, .75)); -} - -.page__mask { - @include modal(map-get($z-indexes, mask)); - cursor: pointer; -} -.layout--page--sidebar { - .page__main { - @include overflow(auto); - @media print { - @include overflow(unset); - } - } -} - -.has-aside { - .col-aside { - position: relative; - display: block; - width: map-get($layout, aside-width); - & > aside { - &.fixed { - position: fixed; - -webkit-font-smoothing: subpixel-antialiased; - } - } - @include media-breakpoint-down(lg) { - display: none; - } - } -} - -@include media-breakpoint-down(lg) { - .page__sidebar { - position: fixed; - @include transform(translate(- map-get($layout, sidebar-width), 0)); - } - - .page__actions { - display: block; - } - - .show-sidebar { - .page__actions { - visibility: hidden; - } - .page__sidebar { - @include transform(translate(0)); - } - .page__mask { - @include modal--show(); - } - } -} - -.hero--light { - .article__info { - color: $text-color-theme-light; - } -} -.hero--dark { - .article__info { - color: $text-color-theme-dark; - } -} - -.page__main--immersive { - .page__header { - position: absolute; - width: 100%; - } - .hero__content { - padding-top: map-get($layout, header-height); - } -} diff --git a/_sass/skins/_chocolate.scss b/_sass/skins/_chocolate.scss deleted file mode 100644 index b2098d55723..00000000000 --- a/_sass/skins/_chocolate.scss +++ /dev/null @@ -1,74 +0,0 @@ -/// -// Skin: Chocolate -// Author: Tian Qi -// Email: kitian616@outlook.com -/// - -// main colors -$main-color-1: #563a20; -$text-color-1: rgba(#fff, .85); - -$main-color-2: #8a2827; -$text-color-2: rgba(#fff, .85); - -$main-color-3: #b49b92; -$text-color-3: rgba(#fff, .85); - -$main-color-theme-light: rgba(#000, .9); -$main-color-theme-dark: rgba(#fff, .9); - -// page background -$background-color: #d2c2bc; - -// text colors -$text-color-theme-light-d: rgba(#000, .95); -$text-color-theme-light: rgba(#000, .85); -$text-color-theme-light-l: rgba(#000, .5); - -$text-color-theme-dark-d: #fff; -$text-color-theme-dark: rgba(#fff, .95); -$text-color-theme-dark-l: rgba(#fff, .85); - -$text-color-d: $text-color-theme-light-d; -$text-color: $text-color-theme-light; -$text-color-l: $text-color-theme-light-l; - -$text-background-color: rgba(#000, .05); - -// header and footer colors -$header-text-color: $text-color-3; -$header-background: $main-color-3; - -$footer-text-color: $text-color-3; -$footer-background: $main-color-3; - -// border and shadow colors -$border-color: $main-color-3; -$border-color-l: mix(#000, $background-color, 10%); -$decorate-color: rgba(#000, .1); -$mask-color: rgba(#000, .9); -$select-color: rgba($main-color-3, .5); - -// function colors -$green: #5baa34; -$blue: #1c7cd4; -$yellow: #c9771f; -$red: #da3d45; -$text-color-function: rgba(#fff, .85); - -// logo colors -$mail-color: #0072c5; -$facebook-color: #4267b2; -$twitter-color: #1da1f2; -$weibo-color: #e6162d; -$google-plus-color:#ea4335; -$telegram-color: #32afed; -$medium-color: #000; -$zhihu-color: #0084ff; -$douban-color: #42bd56; -$linkedin-color: #1074af; -$github-color: #000; -$npm-color: #fff; - -// highlight colors -@import "skins/highlight/tomorrow-night-eighties"; diff --git a/_sass/skins/_dark.scss b/_sass/skins/_dark.scss deleted file mode 100644 index 7250a871554..00000000000 --- a/_sass/skins/_dark.scss +++ /dev/null @@ -1,74 +0,0 @@ -/// -// Skin: Dark -// Author: Tian Qi -// Email: kitian616@outlook.com -/// - -// main colors -$main-color-1: #ff9500; -$text-color-1: rgba(#fff, .8); - -$main-color-2: #ff006a; -$text-color-2: rgba(#fff, .8); - -$main-color-3: #202020; -$text-color-3: rgba(#fff, .8); - -$main-color-theme-light: rgba(#000, .8); -$main-color-theme-dark: rgba(#fff, .8); - -// page background -$background-color: #121212; - -// text colors -$text-color-theme-light-d: #000; -$text-color-theme-light: #222; -$text-color-theme-light-l: #888; - -$text-color-theme-dark-d: rgba(#fff, .8); -$text-color-theme-dark: rgba(#fff, .7); -$text-color-theme-dark-l: rgba(#fff, .5); - -$text-color-d: $text-color-theme-dark-d; -$text-color: $text-color-theme-dark; -$text-color-l: $text-color-theme-dark-l; - -$text-background-color: rgba(#fff, .05); - -// header and footer colors -$header-text-color: $text-color-3; -$header-background: $main-color-3; - -$footer-text-color: $text-color-3; -$footer-background: $main-color-3; - -// border and shadow colors -$border-color: mix(#fff, $background-color, 20%); -$border-color-l: mix(#fff, $background-color, 10%); -$decorate-color: rgba(#fff, .1); -$mask-color: rgba(#000, .9); -$select-color: rgba($main-color-1, .5); - -// function colors -$green: #5baa34; -$blue: #1c7cd4; -$yellow: #c9771f; -$red: #da3d45; -$text-color-function: rgba(#fff, .8); - -// logo colors -$mail-color: #0072c5; -$facebook-color: #4267b2; -$twitter-color: #1da1f2; -$weibo-color: #e6162d; -$google-plus-color:#ea4335; -$telegram-color: #32afed; -$medium-color: #000; -$zhihu-color: #0084ff; -$douban-color: #42bd56; -$linkedin-color: #1074af; -$github-color: #000; -$npm-color: #fff; - -// highlight colors -@import "skins/highlight/tomorrow-night"; diff --git a/_sass/skins/_default.scss b/_sass/skins/_default.scss deleted file mode 100644 index fc289351ac4..00000000000 --- a/_sass/skins/_default.scss +++ /dev/null @@ -1,74 +0,0 @@ -/// -// Skin: Default -// Author: Tian Qi -// Email: kitian616@outlook.com -/// - -// main colors -$main-color-1: #fc4d50; -$text-color-1: #fff; - -$main-color-2: #fca24d; -$text-color-2: #fff; - -$main-color-3: #f2f2f2; -$text-color-3: #333; - -$main-color-theme-light: rgba(#000, .9); -$main-color-theme-dark: rgba(#fff, .9); - -// page background -$background-color: #fff; - -// text colors -$text-color-theme-light-d: #000; -$text-color-theme-light: #222; -$text-color-theme-light-l: #888; - -$text-color-theme-dark-d: #fff; -$text-color-theme-dark: rgba(#fff, .95); -$text-color-theme-dark-l: rgba(#fff, .85); - -$text-color-d: $text-color-theme-light-d; -$text-color: $text-color-theme-light; -$text-color-l: $text-color-theme-light-l; - -$text-background-color: rgba(#000, .05); - -// header and footer colors -$header-text-color: $text-color-3; -$header-background: $main-color-3; - -$footer-text-color: $text-color-3; -$footer-background: $main-color-3; - -// border and shadow colors -$border-color: mix(#000, $background-color, 20%); -$border-color-l: mix(#000, $background-color, 10%); -$decorate-color: rgba(#000, .1); -$mask-color: rgba(#000, .9); -$select-color: rgba($main-color-1, .5); - -// function colors -$green: #52c41a; -$blue: #1890ff; -$yellow: #fa8c16; -$red: #f5222d; -$text-color-function: #fff; - -// logo colors -$mail-color: #0072c5; -$facebook-color: #4267b2; -$twitter-color: #1da1f2; -$weibo-color: #e6162d; -$google-plus-color:#ea4335; -$telegram-color: #32afed; -$medium-color: #000; -$zhihu-color: #0084ff; -$douban-color: #42bd56; -$linkedin-color: #1074af; -$github-color: #000; -$npm-color: #fff; - -// highlight colors -@import "skins/highlight/tomorrow"; diff --git a/_sass/skins/_forest.scss b/_sass/skins/_forest.scss deleted file mode 100644 index df2c63af9bc..00000000000 --- a/_sass/skins/_forest.scss +++ /dev/null @@ -1,74 +0,0 @@ -/// -// Skin: Forest -// Author: Tian Qi -// Email: kitian616@outlook.com -/// - -// main colors -$main-color-1: #bb6170; -$text-color-1: #fff; - -$main-color-2: #f3c584; -$text-color-2: #fff; - -$main-color-3: #7cc7bb; -$text-color-3: #fff; - -$main-color-theme-light: rgba(#000, .9); -$main-color-theme-dark: rgba(#fff, .9); - -// page background -$background-color: #f8fcfb; - -// text colors -$text-color-theme-light-d: #325f74; -$text-color-theme-light: #3e758f; -$text-color-theme-light-l: #619dbb; - -$text-color-theme-dark-d: #fff; -$text-color-theme-dark: rgba(#fff, .95); -$text-color-theme-dark-l: rgba(#fff, .85); - -$text-color-d: $text-color-theme-light-d; -$text-color: $text-color-theme-light; -$text-color-l: $text-color-theme-light-l; - -$text-background-color: rgba(#000, .05); - -// header and footer colors -$header-text-color: $text-color-3; -$header-background: $main-color-3; - -$footer-text-color: $text-color-3; -$footer-background: $main-color-3; - -// border and shadow colors -$border-color: #3e758f; -$border-color-l: mix(#000, $background-color, 10%); -$decorate-color: rgba(#bb6170, .15); -$mask-color: rgba(#000, .9); -$select-color: rgba($main-color-1, .5); - -// function colors -$green: #52c41a; -$blue: #1890ff; -$yellow: #fa8c16; -$red: #f5222d; -$text-color-function: #fff; - -// logo colors -$mail-color: #0072c5; -$facebook-color: #4267b2; -$twitter-color: #1da1f2; -$weibo-color: #e6162d; -$google-plus-color:#ea4335; -$telegram-color: #32afed; -$medium-color: #000; -$zhihu-color: #0084ff; -$douban-color: #42bd56; -$linkedin-color: #1074af; -$github-color: #000; -$npm-color: #fff; - -// highlight colors -@import "skins/highlight/tomorrow"; diff --git a/_sass/skins/_ocean.scss b/_sass/skins/_ocean.scss deleted file mode 100644 index c4da252c913..00000000000 --- a/_sass/skins/_ocean.scss +++ /dev/null @@ -1,74 +0,0 @@ -/// -// Skin: Ocean -// Author: Tian Qi -// Email: kitian616@outlook.com -/// - -// main colors -$main-color-1: #0366d6; -$text-color-1: #fff; - -$main-color-2: #a5917f; -$text-color-2: #fff; - -$main-color-3: #f1f8ff; -$text-color-3: #0366d6; - -$main-color-theme-light: rgba(#000, .9); -$main-color-theme-dark: rgba(#fff, .9); - -// page background -$background-color: #fff; - -// text colors -$text-color-theme-light-d: rgba(#000, .95); -$text-color-theme-light: rgba(#000, .85); -$text-color-theme-light-l: rgba(#000, .5); - -$text-color-theme-dark-d: #fff; -$text-color-theme-dark: rgba(#fff, .95); -$text-color-theme-dark-l: rgba(#fff, .85); - -$text-color-d: $text-color-theme-light-d; -$text-color: $text-color-theme-light; -$text-color-l: $text-color-theme-light-l; - -$text-background-color: rgba(#000, .05); - -// header and footer colors -$header-text-color: $text-color-3; -$header-background: $main-color-3; - -$footer-text-color: $text-color-3; -$footer-background: $main-color-3; - -// border and shadow colors -$border-color: mix(#000, $background-color, 20%); -$border-color-l: mix(#000, $background-color, 10%); -$decorate-color: rgba(#000, .1); -$mask-color: rgba(#000, .9); -$select-color: rgba($main-color-1, .5); - -// function colors -$green: #52c41a; -$blue: #1890ff; -$yellow: #fa8c16; -$red: #f5222d; -$text-color-function: #fff; - -// logo colors -$mail-color: #0072c5; -$facebook-color: #4267b2; -$twitter-color: #1da1f2; -$weibo-color: #e6162d; -$google-plus-color:#ea4335; -$telegram-color: #32afed; -$medium-color: #000; -$zhihu-color: #0084ff; -$douban-color: #42bd56; -$linkedin-color: #1074af; -$github-color: #000; -$npm-color: #fff; - -// highlight colors -@import "skins/highlight/tomorrow-night-blue"; diff --git a/_sass/skins/_orange.scss b/_sass/skins/_orange.scss deleted file mode 100644 index 4ffdbb14d4d..00000000000 --- a/_sass/skins/_orange.scss +++ /dev/null @@ -1,74 +0,0 @@ -/// -// Skin: Orange -// Author: Tian Qi -// Email: kitian616@outlook.com -/// - -// main colors -$main-color-1: #f92651; -$text-color-1: #fff; - -$main-color-2: #fdb824; -$text-color-2: #fff; - -$main-color-3: #ff8a64; -$text-color-3: #fff; - -$main-color-theme-light: rgba(#000, .9); -$main-color-theme-dark: rgba(#fff, .9); - -// page background -$background-color: #fffdfa; - -// text colors -$text-color-theme-light-d: rgba(#000, .95); -$text-color-theme-light: rgba(#000, .85); -$text-color-theme-light-l: rgba(#000, .5); - -$text-color-theme-dark-d: rgba(#fff, .95); -$text-color-theme-dark: rgba(#fff, .85); -$text-color-theme-dark-l: rgba(#fff, .65); - -$text-color-d: $text-color-theme-light-d; -$text-color: $text-color-theme-light; -$text-color-l: $text-color-theme-light-l; - -$text-background-color: rgba(#000, .05); - -// header and footer colors -$header-text-color: $text-color-3; -$header-background: linear-gradient(60deg, #ffa650 0%, #ff7b50 100%); - -$footer-text-color: $text-color-3; -$footer-background: linear-gradient(60deg, #ffa650 0%, #ff7b50 100%); - -// border and shadow colors -$border-color: mix($main-color-1, $background-color, 50%); -$border-color-l: mix(#000, $background-color, 10%); -$decorate-color: rgba(#000, .1); -$mask-color: rgba(#000, .9); -$select-color: rgba($main-color-3, .5); - -// function colors -$green: #52c41a; -$blue: #1890ff; -$yellow: #fa8c16; -$red: #f5222d; -$text-color-function: #fff; - -// logo colors -$mail-color: #0072c5; -$facebook-color: #4267b2; -$twitter-color: #1da1f2; -$weibo-color: #e6162d; -$google-plus-color:#ea4335; -$telegram-color: #32afed; -$medium-color: #000; -$zhihu-color: #0084ff; -$douban-color: #42bd56; -$linkedin-color: #1074af; -$github-color: #000; -$npm-color: #fff; - -// highlight colors -@import "skins/highlight/tomorrow-night-eighties"; diff --git a/_sass/skins/highlight/_default.scss b/_sass/skins/highlight/_default.scss deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/_sass/skins/highlight/_tomorrow-night-blue.scss b/_sass/skins/highlight/_tomorrow-night-blue.scss deleted file mode 100644 index 473cbffc58d..00000000000 --- a/_sass/skins/highlight/_tomorrow-night-blue.scss +++ /dev/null @@ -1,2 +0,0 @@ -@import "./tomorrow/night-blue"; -@import "./tomorrow/highlight"; diff --git a/_sass/skins/highlight/_tomorrow-night-bright.scss b/_sass/skins/highlight/_tomorrow-night-bright.scss deleted file mode 100644 index 05af36cf1d9..00000000000 --- a/_sass/skins/highlight/_tomorrow-night-bright.scss +++ /dev/null @@ -1,2 +0,0 @@ -@import "./tomorrow/night-bright"; -@import "./tomorrow/highlight"; diff --git a/_sass/skins/highlight/_tomorrow-night-eighties.scss b/_sass/skins/highlight/_tomorrow-night-eighties.scss deleted file mode 100644 index 4144a5e6747..00000000000 --- a/_sass/skins/highlight/_tomorrow-night-eighties.scss +++ /dev/null @@ -1,2 +0,0 @@ -@import "./tomorrow/night-eighties"; -@import "./tomorrow/highlight"; diff --git a/_sass/skins/highlight/_tomorrow-night.scss b/_sass/skins/highlight/_tomorrow-night.scss deleted file mode 100644 index 2cb5d72d37c..00000000000 --- a/_sass/skins/highlight/_tomorrow-night.scss +++ /dev/null @@ -1,2 +0,0 @@ -@import "./tomorrow/night"; -@import "./tomorrow/highlight"; diff --git a/_sass/skins/highlight/_tomorrow.scss b/_sass/skins/highlight/_tomorrow.scss deleted file mode 100644 index 90aaf3bb94c..00000000000 --- a/_sass/skins/highlight/_tomorrow.scss +++ /dev/null @@ -1,2 +0,0 @@ -@import "./tomorrow/default"; -@import "./tomorrow/highlight"; diff --git a/_sass/skins/highlight/tomorrow/_default.scss b/_sass/skins/highlight/tomorrow/_default.scss deleted file mode 100644 index c739cf79ee5..00000000000 --- a/_sass/skins/highlight/tomorrow/_default.scss +++ /dev/null @@ -1,10 +0,0 @@ -$highlight-background : #f7f7f7; -$highlight-foreground : #4d4d4c; -$highlight-comment : #8e908c; -$highlight-red : #c82829; -$highlight-orange : #f5871f; -$highlight-yellow : #eab700; -$highlight-green : #718c00; -$highlight-aqua : #3e999f; -$highlight-blue : #4271ae; -$highlight-purple : #8959a8; diff --git a/_sass/skins/highlight/tomorrow/_highlight.scss b/_sass/skins/highlight/tomorrow/_highlight.scss deleted file mode 100644 index c026a449df6..00000000000 --- a/_sass/skins/highlight/tomorrow/_highlight.scss +++ /dev/null @@ -1,74 +0,0 @@ -figure.highlight::before { - color: $highlight-comment !important; - background-color: $highlight-background !important; -} -pre.lineno { - color: $highlight-comment !important; -} -.highlight > pre { - color: $highlight-foreground; - background-color: $highlight-background !important; - .c { color: $highlight-comment; } /* Comment */ - .err { color: $highlight-red; } /* Error */ - .k { color: $highlight-purple; } /* Keyword */ - .l { color: $highlight-orange; } /* Literal */ - .n { color: $highlight-foreground; } /* Name */ - .o { color: $highlight-aqua; } /* Operator */ - .p { color: $highlight-foreground; } /* Punctuation */ - .cm { color: $highlight-comment; } /* Comment.Multiline */ - .cp { color: $highlight-comment; } /* Comment.Preproc */ - .c1 { color: $highlight-comment; } /* Comment.Single */ - .cs { color: $highlight-comment; } /* Comment.Special */ - .gd { color: $highlight-red; } /* Generic.Deleted */ - .ge { font-style: italic; } /* Generic.Emph */ - .gh { font-weight: bold; color: $highlight-foreground; } /* Generic.Heading */ - .gi { color: $highlight-green; } /* Generic.Inserted */ - .gp { font-weight: bold; color: $highlight-comment; } /* Generic.Prompt */ - .gs { font-weight: bold; } /* Generic.Strong */ - .gu { font-weight: bold; color: $highlight-aqua; } /* Generic.Subheading */ - .kc { color: $highlight-purple; } /* Keyword.Constant */ - .kd { color: $highlight-purple; } /* Keyword.Declaration */ - .kn { color: $highlight-aqua; } /* Keyword.Namespace */ - .kp { color: $highlight-purple; } /* Keyword.Pseudo */ - .kr { color: $highlight-purple; } /* Keyword.Reserved */ - .kt { color: $highlight-yellow; } /* Keyword.Type */ - .ld { color: $highlight-green; } /* Literal.Date */ - .m { color: $highlight-orange; } /* Literal.Number */ - .s { color: $highlight-green; } /* Literal.String */ - .na { color: $highlight-blue; } /* Name.Attribute */ - .nb { color: $highlight-foreground; } /* Name.Builtin */ - .nc { color: $highlight-yellow; } /* Name.Class */ - .no { color: $highlight-red; } /* Name.Constant */ - .nd { color: $highlight-aqua; } /* Name.Decorator */ - .ni { color: $highlight-foreground; } /* Name.Entity */ - .ne { color: $highlight-red; } /* Name.Exception */ - .nf { color: $highlight-blue; } /* Name.Function */ - .nl { color: $highlight-foreground; } /* Name.Label */ - .nn { color: $highlight-yellow; } /* Name.Namespace */ - .nx { color: $highlight-blue; } /* Name.Other */ - .py { color: $highlight-foreground; } /* Name.Property */ - .nt { color: $highlight-aqua; } /* Name.Tag */ - .nv { color: $highlight-red; } /* Name.Variable */ - .ow { color: $highlight-aqua; } /* Operator.Word */ - .w { color: $highlight-foreground; } /* Text.Whitespace */ - .mf { color: $highlight-orange; } /* Literal.Number.Float */ - .mh { color: $highlight-orange; } /* Literal.Number.Hex */ - .mi { color: $highlight-orange; } /* Literal.Number.Integer */ - .mo { color: $highlight-orange; } /* Literal.Number.Oct */ - .sb { color: $highlight-green; } /* Literal.String.Backtick */ - .sc { color: $highlight-foreground; } /* Literal.String.Char */ - .sd { color: $highlight-comment; } /* Literal.String.Doc */ - .s2 { color: $highlight-green; } /* Literal.String.Double */ - .se { color: $highlight-orange; } /* Literal.String.Escape */ - .sh { color: $highlight-green; } /* Literal.String.Heredoc */ - .si { color: $highlight-orange; } /* Literal.String.Interpol */ - .sx { color: $highlight-green; } /* Literal.String.Other */ - .sr { color: $highlight-green; } /* Literal.String.Regex */ - .s1 { color: $highlight-green; } /* Literal.String.Single */ - .ss { color: $highlight-green; } /* Literal.String.Symbol */ - .bp { color: $highlight-foreground; } /* Name.Builtin.Pseudo */ - .vc { color: $highlight-red; } /* Name.Variable.Class */ - .vg { color: $highlight-red; } /* Name.Variable.Global */ - .vi { color: $highlight-red; } /* Name.Variable.Instance */ - .il { color: $highlight-orange; } /* Literal.Number.Integer.Long */ -} diff --git a/_sass/skins/highlight/tomorrow/_night-blue.scss b/_sass/skins/highlight/tomorrow/_night-blue.scss deleted file mode 100644 index 74fbf7f6fa2..00000000000 --- a/_sass/skins/highlight/tomorrow/_night-blue.scss +++ /dev/null @@ -1,10 +0,0 @@ -$highlight-background :#002451; -$highlight-foreground :#fff; -$highlight-comment :#7285b7; -$highlight-red :#ff9da4; -$highlight-orange :#ffc58f; -$highlight-yellow :#ffeead; -$highlight-green :#d1f1a9; -$highlight-aqua :#9ff; -$highlight-blue :#bbdaff; -$highlight-purple :#ebbbff; diff --git a/_sass/skins/highlight/tomorrow/_night-bright.scss b/_sass/skins/highlight/tomorrow/_night-bright.scss deleted file mode 100644 index 39d6cfc0e1e..00000000000 --- a/_sass/skins/highlight/tomorrow/_night-bright.scss +++ /dev/null @@ -1,10 +0,0 @@ -$highlight-background :#000; -$highlight-foreground :#eaeaea; -$highlight-comment :#969896; -$highlight-red :#d54e53; -$highlight-orange :#e78c45; -$highlight-yellow :#e7c547; -$highlight-green :#b9ca4a; -$highlight-aqua :#70c0b1; -$highlight-blue :#7aa6da; -$highlight-purple :#c397d8; diff --git a/_sass/skins/highlight/tomorrow/_night-eighties.scss b/_sass/skins/highlight/tomorrow/_night-eighties.scss deleted file mode 100644 index 4bd0ddba0a8..00000000000 --- a/_sass/skins/highlight/tomorrow/_night-eighties.scss +++ /dev/null @@ -1,10 +0,0 @@ -$highlight-background :#2d2d2d; -$highlight-foreground :#ccc; -$highlight-comment :#999; -$highlight-red :#f2777a; -$highlight-orange :#f99157; -$highlight-yellow :#fc6; -$highlight-green :#9c9; -$highlight-aqua :#6cc; -$highlight-blue :#69c; -$highlight-purple :#c9c; diff --git a/_sass/skins/highlight/tomorrow/_night.scss b/_sass/skins/highlight/tomorrow/_night.scss deleted file mode 100644 index 98a0294a9b6..00000000000 --- a/_sass/skins/highlight/tomorrow/_night.scss +++ /dev/null @@ -1,10 +0,0 @@ -$highlight-background : #1d1f21; -$highlight-foreground : #c5c8c6; -$highlight-comment : #969896; -$highlight-red : #c66; -$highlight-orange : #de935f; -$highlight-yellow : #f0c674; -$highlight-green : #b5bd68; -$highlight-aqua : #8abeb7; -$highlight-blue : #81a2be; -$highlight-purple : #b294bb; diff --git a/about.md b/about.md deleted file mode 100644 index fcf13008c57..00000000000 --- a/about.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -layout: article -titles: - # @start locale config - en : &EN About - en-GB : *EN - en-US : *EN - en-CA : *EN - en-AU : *EN - zh-Hans : &ZH_HANS 关于 - zh : *ZH_HANS - zh-CN : *ZH_HANS - zh-SG : *ZH_HANS - zh-Hant : &ZH_HANT 關於 - zh-TW : *ZH_HANT - zh-HK : *ZH_HANT - ko : &KO 소개 - ko-KR : *KO - fr : &FR À propos - fr-BE : *FR - fr-CA : *FR - fr-CH : *FR - fr-FR : *FR - fr-LU : *FR - # @end locale config -# key: page-about ---- - -## 个人简介: - - -名字:\*** -
      -技术网名: codwam (全拼 coldwarm,cold warm 冷暖) - -

      -子曰:“古之学者为己,今之学者为人。” - - -## 联系方式 - -

      -
      - - - - -

      - diff --git a/all.packages b/all.packages deleted file mode 100644 index dd995223973..00000000000 --- a/all.packages +++ /dev/null @@ -1 +0,0 @@ -[{"section":"Tweaks","time":1662922687,"name":"LowerInstall","version":"0.0~beta6","package":"com.julioverne.lowerinstall","size":94160},{"time":1636601066,"name":"InteJB","section":"Tweaks","size":49912,"package":"com.julioverne.intejb","version":"0.0~beta1"},{"version":"0.0~beta1","package":"com.julioverne.picjb","size":49586,"section":"Tweaks","name":"PicJB","time":1636515812},{"section":"Tweaks","time":1635479292,"name":"NtSpeed","version":"0.2~beta9","package":"com.julioverne.ntspeed","size":121846},{"section":"Tweaks","time":1635309931,"name":"IGSaver","version":"0.1~beta2","package":"com.julioverne.igsaver","size":252312},{"package":"com.julioverne.ythdunlocker","version":"0.0~beta1c","size":22562,"time":1628890231,"name":"YTHDUnlocker","section":"Tweaks"},{"size":124044,"version":"0.0~beta4","package":"com.julioverne.exchangent2","section":"Tweaks","time":1622133941,"name":"Exchangent2"},{"time":1621742039,"name":"NBKJB","section":"Tweaks","size":29660,"package":"com.julioverne.nbkjb","version":"0.0~beta1"},{"size":203958,"package":"com.julioverne.lockdroid","version":"0.0~beta8","time":1618378451,"name":"LockDroid","section":"Tweaks"},{"section":"Tweaks","time":1618201187,"name":"SignaldBm","size":121372,"version":"0.0~beta3","package":"com.julioverne.signaldbm"},{"name":"PImport","time":1617929200,"section":"Tweaks","package":"com.julioverne.pimport","version":"0.0~beta5","size":783058},{"section":"Tweaks","name":"AutoWall","time":1617925178,"size":135524,"version":"0.0~beta3","package":"com.julioverne.autowall"},{"time":1617061563,"name":"Alt5tore","section":"Tweaks","package":"com.julioverne.alt5tore","version":"0.0~beta1","size":37172},{"name":"AutoLockX","time":1610666039,"section":"Tweaks","size":94920,"package":"com.julioverne.autolockx","version":"0.0~beta2a"},{"name":"BattRate","time":1609962337,"section":"Tweaks","package":"com.julioverne.battrate","version":"0.0~beta2","size":158444},{"package":"com.julioverne.goodwifi","version":"0.0~beta6","size":155794,"name":"GoodWiFi","time":1609208394,"section":"Tweaks"},{"size":1495760,"version":"0.0~beta40","package":"com.julioverne.mimport","section":"Tweaks","name":"MImport","time":1599714732},{"version":"0.0~beta2","package":"com.julioverne.caixatemfast","size":26190,"section":"Tweaks","name":"CaixaTemFast","time":1599685737},{"section":"Tweaks","name":"PIPSize","time":1593992221,"size":23116,"version":"0.0~beta1","package":"com.julioverne.pipsize"},{"name":"screendump (iOS 13)","time":1593484427,"section":"Tweaks","size":1540656,"package":"com.julioverne.screendump13","version":"0.0.3d"},{"package":"com.julioverne.gravity","version":"0.7","size":223620,"time":1593040925,"name":"Gravity","section":"Tweaks"},{"section":"Tweaks","name":"SSL Kill Switch 2 (iOS 13)","time":1591381797,"size":39096,"version":"0.14c","package":"com.julioverne.sslkillswitch2"},{"section":"Tweaks","time":1591050938,"name":"TWSlideToBlock","version":"0.0~beta1","package":"com.julioverne.twslidetoblock","size":31128},{"section":"Tweaks","name":"KeySwipe (iOS 11)","time":1590970875,"size":31834,"version":"1.0.2-3b","package":"com.julioverne.keyswipe11"},{"size":120330,"version":"0.5~beta8b","package":"com.julioverne.musilyric","section":"Tweaks","time":1590546715,"name":"MusiLyric"},{"package":"com.julioverne.phonescroll","version":"0.0~beta2a","size":27910,"time":1589942090,"name":"PhoneScroll","section":"Tweaks"},{"time":1589397348,"name":"liblinker","section":"Development","package":"com.julioverne.liblinker","version":"0.3","size":34032},{"time":1588148379,"name":"AlbumPref","section":"Tweaks","size":95134,"package":"com.julioverne.albumpref","version":"0.0~beta2a"},{"size":65436,"package":"com.julioverne.messagefile","version":"0.0~beta3","name":"MessageFile","time":1587142533,"section":"Tweaks"},{"package":"com.julioverne.mcast","version":"0.0~beta6","size":294092,"time":1587087026,"name":"mCast","section":"Tweaks"},{"time":1586932499,"name":"CoverflowM","section":"Tweaks","size":285742,"package":"com.julioverne.coverflowm","version":"0.2"},{"section":"Tweaks","name":"AlbumHider","time":1586391860,"version":"0.0~beta3","package":"com.julioverne.albumhider","size":37134},{"version":"0.0~beta1a","package":"com.julioverne.cachewipe","size":31046,"section":"Addons (Flipswitch)","time":1586214458,"name":"CacheWipe"},{"size":1947704,"package":"com.julioverne.ext3nder-installer","version":"022b","time":1573772494,"name":"Ext3nder Installer","section":"Utilities"},{"package":"com.julioverne.trustdevalert","version":"0.2a","size":16348,"time":1573768504,"name":"trustDevAlert","section":"Tweaks"},{"size":7806,"version":"0.0~beta4a","package":"com.julioverne.fastuprepo","section":"Tweaks","time":1571449600,"name":"fastUpRepo"},{"section":"Tweaks","time":1571449243,"name":"fastUpRepo2","version":"0.0~beta1","package":"com.julioverne.fastuprepo2","size":68450},{"section":"Tweaks","time":1569705195,"name":"Epicentre (iOS 11)","size":459028,"version":"2.0-2b","package":"com.julioverne.epicentre11"},{"package":"com.julioverne.exsto11","version":"0.0.1.2-2","size":226136,"name":"Exsto (iOS 11)","time":1569704630,"section":"Tweaks"},{"name":"FlipConvert","time":1569689438,"section":"Tweaks","size":58742,"package":"com.julioverne.flipconvert","version":"0.0~beta6"},{"version":"0.3","package":"com.julioverne.pipenabler","size":93772,"section":"Tweaks","name":"PIPEnabler","time":1569642513},{"package":"com.julioverne.raisetoanswer","version":"1.1","size":29836,"name":"RaiseToAnswer (iOS 11)","time":1569642390,"section":"Tweaks"},{"section":"Tweaks","time":1569513504,"name":"ChargeMode","size":33334,"version":"0.0~beta4","package":"com.julioverne.chargemode"},{"section":"Tweaks","time":1569476016,"name":"CyPush2","version":"1.2","package":"com.julioverne.cypush2","size":195710},{"size":52558,"package":"com.julioverne.signalplane","version":"0.0~beta3a","name":"SignalPlane","time":1555455026,"section":"Tweaks"},{"size":7152,"version":"0.0~beta2","package":"com.julioverne.zaddyverifyroll","section":"Tweaks","time":1555455013,"name":"ZaddyVerifyRoll"},{"package":"com.julioverne.luxyverifyroll","version":"0.0~beta2","size":6742,"name":"LuxyVerifyRoll","time":1555454998,"section":"Tweaks"},{"version":"1.3a","package":"com.julioverne.hold2speak11","size":15928,"section":"Tweaks","name":"Hold2Speak (iOS 11)","time":1555454965},{"version":"0.5.0-3a","package":"com.julioverne.vwallpaper2os11","size":11336422,"section":"Multimedia","name":"vWallpaper 2 (iOS 11)","time":1555452604},{"name":"WhileLotus","time":1555452604,"section":"Tweaks","size":9220,"package":"com.julioverne.whilelotus","version":"0.0~beta3"},{"version":"3.5.4","package":"com.julioverne.widplayer","size":136846,"section":"Tweaks","time":1555452604,"name":"WidPlayer"},{"time":1555452604,"name":"WishDia","section":"Tweaks","package":"com.julioverne.wishdia","version":"0.0~beta1","size":19072},{"time":1555452604,"name":"YTNoAutoPlay","section":"Tweaks","package":"com.julioverne.ytnoautoplay","version":"0.0~beta2","size":14060},{"section":"Utilities","time":1555452604,"name":"uicache Fix","version":"0.1","package":"com.julioverne.uicachefix10","size":758},{"section":"Tweaks","time":1555452604,"name":"Upscale","version":"0.0.1","package":"com.julioverne.upscale","size":19968},{"section":"Tweaks","time":1555452603,"name":"SimulateTouch","size":15800,"version":"0.7-17~beta5","package":"com.julioverne.simulatetouch"},{"size":8746,"package":"com.julioverne.siriifpossible","version":"0.0~beta1","name":"SiriIfPossible","time":1555452603,"section":"Tweaks"},{"time":1555452603,"name":"SlackHistory","section":"Tweaks","size":15454,"package":"com.julioverne.slackhistory","version":"0.1c"},{"size":7046,"version":"0.2","package":"com.julioverne.tb280","section":"Tweaks","time":1555452603,"name":"TB280"},{"time":1555452603,"name":"TW280","section":"Tweaks","package":"com.julioverne.tw280","version":"0.2","size":5890},{"section":"Tweaks","name":"QuickUnlock (iOS 11)","time":1555452603,"version":"1.0","package":"com.julioverne.quickunlock11","size":7332},{"size":5764,"package":"com.julioverne.sbcard","version":"0.0~beta1","name":"SBCard","time":1555452603,"section":"Tweaks"},{"package":"com.julioverne.scloudinfo","version":"0.0~beta1","size":13560,"name":"SCloudInfo","time":1555452603,"section":"Tweaks"},{"name":"SFTPEnabler","time":1555452603,"section":"Networking","size":34288,"package":"com.julioverne.sftpenabler","version":"0.1"},{"package":"com.julioverne.otablocker","version":"0.2a","size":5756,"name":"OTABlocker","time":1555452603,"section":"Utilities"},{"time":1555452603,"name":"NonceSet","section":"Utilities","size":79710,"package":"com.julioverne.nonceset","version":"0.4"},{"section":"Tweaks","name":"NCGroup","time":1555452603,"size":62898,"version":"0.0~beta11","package":"com.julioverne.ncgroup"},{"package":"com.julioverne.noexinsta","version":"0.0~beta1a","size":4536,"time":1555452603,"name":"NoExInsta","section":"Tweaks"},{"package":"com.julioverne.mibandalert","version":"0.0.4","size":89280,"time":1555452603,"name":"MiBand Alert","section":"Tweaks"},{"size":4672,"version":"0.0~beta1","package":"com.julioverne.modernxinoblur","section":"Tweaks","name":"ModernXINoBlur","time":1555452603},{"name":"MPScale","time":1555452603,"section":"Tweaks","size":17732,"package":"com.julioverne.mpscale","version":"0.0~beta3b"},{"section":"Tweaks","name":"MShuffle","time":1555452603,"size":36334,"version":"0.0~beta4","package":"com.julioverne.mshuffle"},{"size":5282,"package":"com.julioverne.musicsection","version":"0.0~beta1","time":1555452603,"name":"MusicSection","section":"Tweaks"},{"section":"Tweaks","name":"MusicV","time":1555452603,"size":30498,"version":"0.0~beta2-0","package":"com.julioverne.musicv"},{"size":371648,"version":"0.1","package":"com.julioverne.jbme93xwebclip","section":"Utilities","name":"JBMe 9.3.x Webclip","time":1555452603},{"package":"com.julioverne.kb2change","version":"0.0~beta1","size":5532,"name":"KB2Change","time":1555452603,"section":"Tweaks"},{"name":"KBMover","time":1555452603,"section":"Tweaks","size":20454,"package":"com.julioverne.kbmover","version":"0.0~beta1"},{"version":"0.0~beta4","package":"com.julioverne.lockanim","size":132474,"section":"Tweaks","time":1555452603,"name":"LockAnim"},{"section":"Themes","time":1555452603,"name":"Donuts LockDroid","version":"0.0~beta1","package":"com.julioverne.lockdroiddonuts","size":178408},{"size":40392,"version":"0.0~beta2a","package":"com.julioverne.googleauthpro","section":"Tweaks","time":1555452603,"name":"GoogleAuthPro"},{"section":"Tweaks","time":1555452603,"name":"HeadsetBTSound","version":"0.0~beta","package":"com.julioverne.headsetbtsound","size":4332},{"size":103366,"version":"0.0~beta6","package":"com.julioverne.heysiri","section":"Tweaks","time":1555452603,"name":"HeySiri"},{"size":16612,"version":"0.0~beta2","package":"com.julioverne.hotspotting","section":"Addons (Flipswitch)","name":"Hotspotting","time":1555452603},{"section":"Tweaks","time":1555452603,"name":"HSBC Bypass","version":"0.3b","package":"com.julioverne.hsbcbypass","size":20862},{"name":"IllLookLater (iOS 11)","time":1555452603,"section":"Tweaks","package":"com.julioverne.illlooklater11","version":"2.0-2","size":63906},{"section":"Tweaks","name":"JailProtect","time":1555452603,"version":"0.0~beta4a","package":"com.julioverne.jailprotect","size":53144},{"package":"com.julioverne.jbme10xwebclip","version":"0.1","size":1191694,"name":"JBMe 10.x Webclip","time":1555452603,"section":"Utilities"},{"time":1555452603,"name":"fmydBlocker","section":"Tweaks","package":"com.julioverne.fmydblocker","version":"0.0~beta1","size":32806},{"section":"Addons (Flipswitch)","name":"DropbearSwitch","time":1555452603,"version":"0.3","package":"com.julioverne.dropbearswith","size":22480},{"section":"Tweaks","name":"EdgeAlert","time":1555452603,"size":51438,"version":"0.0~beta2","package":"com.julioverne.edgealert"},{"version":"0.1","package":"com.julioverne.fiona","size":48954,"section":"Tweaks","name":"Fiona","time":1555452603},{"version":"0.0~beta1","package":"com.julioverne.flipstatus","size":6042,"section":"Tweaks","name":"FlipStatus","time":1555452603},{"section":"Tweaks","time":1555452603,"name":"DropbearAlert","size":57300,"version":"0.0~beta2","package":"com.julioverne.dropbearalert"},{"size":9264,"package":"com.julioverne.cacheclearer11","version":"0.1a","time":1555452603,"name":"CacheClearer (iOS 11)","section":"Tweaks"},{"section":"Tweaks","name":"CellDia","time":1555452603,"version":"0.0~beta5","package":"com.julioverne.celldia","size":19986},{"version":"1.3.0","package":"com.julioverne.cirdock11","size":343128,"section":"Tweaks","name":"CirDock (iOS 11)","time":1555452603},{"time":1555452603,"name":"CloseCam","section":"Tweaks","size":6422,"package":"com.julioverne.closecam","version":"0.0~beta2"},{"section":"Utilities","time":1555452603,"name":"cmdsapp","size":8592,"version":"0.1","package":"com.julioverne.cmdsapp"},{"section":"Tweaks","name":"CyPush","time":1555452603,"size":144170,"version":"0.7","package":"com.julioverne.cypush"},{"name":"deb Repack","time":1555452603,"section":"Development","size":1156,"package":"com.julioverne.debrepack","version":"1.0-1a"},{"section":"Tweaks","time":1555452603,"name":"BumbleVerifyRoll","size":6816,"version":"0.0~beta1","package":"com.julioverne.bumbleverifyroll"},{"version":"1.1-20b","package":"com.julioverne.appellancy11","size":3709596,"section":"Tweaks","name":"Appellancy (iOS 11)","time":1555452603},{"size":41194,"version":"0.0~beta1","package":"com.julioverne.appssiripin","section":"Tweaks","time":1555452603,"name":"AppsSiriPin"},{"size":30756,"version":"0.0~beta8","package":"com.julioverne.appstorenohistory","section":"Tweaks","time":1555452603,"name":"Appstore No History"},{"version":"0.0~beta4a","package":"com.julioverne.appstoreunrestrict","size":26188,"section":"Tweaks","name":"Appstore Unrestrict","time":1555452603},{"name":"Artworkify","time":1555452603,"section":"Tweaks","package":"com.julioverne.artworkify","version":"0.0~beta4","size":26624},{"version":"0.1","package":"com.julioverne.autoshiftfix","size":3606,"section":"Tweaks","time":1555452603,"name":"AutoShiftFix"},{"version":"0.0~beta2","package":"com.julioverne.avcache","size":25482,"section":"Tweaks","name":"AVCache","time":1555452603},{"size":8282,"package":"com.julioverne.bgmodekill","version":"0.0~beta","time":1555452603,"name":"BGModeKill","section":"Tweaks"},{"size":33342,"package":"com.julioverne.bigshotjb11","version":"0.0.2-2b","time":1555452603,"name":"BigShotJb (iOS 11)","section":"Tweaks"},{"package":"com.julioverne.biotap","version":"0.1","size":5554,"name":"BioTap","time":1555452603,"section":"Tweaks"},{"section":"Tweaks","time":1555452603,"name":"BLightAlert","version":"0.0~beta4","package":"com.julioverne.blightalert","size":39592},{"size":10002,"version":"0.2~beta1","package":"com.julioverne.adblock","section":"Tweaks","time":1555452603,"name":"ADs Blocker"}] diff --git a/archive.html b/archive.html deleted file mode 100644 index 89dc810eadb..00000000000 --- a/archive.html +++ /dev/null @@ -1,3 +0,0 @@ ---- -layout: archive ---- diff --git a/assets/android-chrome-192x192.png b/assets/android-chrome-192x192.png deleted file mode 100644 index 2cde32893e2..00000000000 Binary files a/assets/android-chrome-192x192.png and /dev/null differ diff --git a/assets/android-chrome-256x256.png b/assets/android-chrome-256x256.png deleted file mode 100644 index 86acb30883c..00000000000 Binary files a/assets/android-chrome-256x256.png and /dev/null differ diff --git a/assets/android-chrome-512x512.png b/assets/android-chrome-512x512.png deleted file mode 100644 index 5c072f968b1..00000000000 Binary files a/assets/android-chrome-512x512.png and /dev/null differ diff --git a/assets/apple-touch-icon.png b/assets/apple-touch-icon.png deleted file mode 100644 index 9be02fac7bb..00000000000 Binary files a/assets/apple-touch-icon.png and /dev/null differ diff --git a/assets/browserconfig.xml b/assets/browserconfig.xml deleted file mode 100644 index b3930d0f047..00000000000 --- a/assets/browserconfig.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - #da532c - - - diff --git a/assets/css/main.scss b/assets/css/main.scss deleted file mode 100644 index 8b4a9c15ee0..00000000000 --- a/assets/css/main.scss +++ /dev/null @@ -1,74 +0,0 @@ ---- -# Only the main Sass file needs front matter (the dashes are enough) ---- - -@import - - "skins/{{ site.text_skin | default: site.data.variables.default.text_skin }}", - // "skins/chocolate", - // "skins/dark", - // "skins/default", - // "skins/forest", - // "skins/ocean", - // "skins/orange", - - "skins/highlight/{{ site.highlight_theme | default: site.data.variables.default.highlight_theme }}", - // "skins/highlight/tomorrow", - // "skins/highlight/tomorrow-night", - // "skins/highlight/tomorrow-night-eighties", - // "skins/highlight/tomorrow-night-blue", - // "skins/highlight/tomorrow-night-bright", - - - "common/variables", - "common/function", - "common/classes", - "common/reset", - "common/print", - "common/components/button", - "common/components/image", - "common/components/card", - "common/components/gallery", - "common/components/hero", - "common/components/menu", - "common/components/modal", - "common/components/toc", - "common/components/item", - "common/components/swiper", - - "animate/fade-in", - "animate/fade-in-down", - "animate/fade-in-up", - - "components/main", - "components/header", - "components/footer", - "components/article-list", - "components/article-info", - "components/article-header", - "components/article-content", - "components/article-footer", - "components/author-links", - "components/author-profile", - "components/tags", - "components/search", - "components/lightbox", - "components/extensions", - - - "additional/alert", - "additional/tag", - "additional/photo-frame", - - "layout/base", - "layout/page", - - "layout/article", - "layout/articles", - "layout/archive", - "layout/home", - "layout/landing", - "layout/404", - - "custom" -; diff --git a/assets/favicon-16x16.png b/assets/favicon-16x16.png deleted file mode 100644 index ed351b52f5c..00000000000 Binary files a/assets/favicon-16x16.png and /dev/null differ diff --git a/assets/favicon-32x32.png b/assets/favicon-32x32.png deleted file mode 100644 index ddbeb343277..00000000000 Binary files a/assets/favicon-32x32.png and /dev/null differ diff --git a/assets/favicon.ico b/assets/favicon.ico deleted file mode 100644 index 03bfa7dabd0..00000000000 Binary files a/assets/favicon.ico and /dev/null differ diff --git a/assets/images/logo/logo.svg b/assets/images/logo/logo.svg deleted file mode 100644 index 5ad04a686ab..00000000000 --- a/assets/images/logo/logo.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/assets/mstile-144x144.png b/assets/mstile-144x144.png deleted file mode 100644 index 1eddae64ebe..00000000000 Binary files a/assets/mstile-144x144.png and /dev/null differ diff --git a/assets/mstile-150x150.png b/assets/mstile-150x150.png deleted file mode 100644 index 0a425fb7c6e..00000000000 Binary files a/assets/mstile-150x150.png and /dev/null differ diff --git a/assets/mstile-310x150.png b/assets/mstile-310x150.png deleted file mode 100644 index e364eadd910..00000000000 Binary files a/assets/mstile-310x150.png and /dev/null differ diff --git a/assets/mstile-310x310.png b/assets/mstile-310x310.png deleted file mode 100644 index 1e4181b5420..00000000000 Binary files a/assets/mstile-310x310.png and /dev/null differ diff --git a/assets/mstile-70x70.png b/assets/mstile-70x70.png deleted file mode 100644 index 2ed5c660db3..00000000000 Binary files a/assets/mstile-70x70.png and /dev/null differ diff --git a/assets/safari-pinned-tab.svg b/assets/safari-pinned-tab.svg deleted file mode 100644 index e7adcb1e0b5..00000000000 --- a/assets/safari-pinned-tab.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - -Created by potrace 1.14, written by Peter Selinger 2001-2017 - - - - - - - - - - - diff --git a/assets/search.js b/assets/search.js deleted file mode 100644 index 8a03d39b342..00000000000 --- a/assets/search.js +++ /dev/null @@ -1,3 +0,0 @@ ---- ---- -{%- include search-providers/default/search-data.js -%} diff --git a/assets/site.webmanifest b/assets/site.webmanifest deleted file mode 100644 index de65106f489..00000000000 --- a/assets/site.webmanifest +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "", - "short_name": "", - "icons": [ - { - "src": "/android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "/android-chrome-256x256.png", - "sizes": "256x256", - "type": "image/png" - } - ], - "theme_color": "#ffffff", - "background_color": "#ffffff", - "display": "standalone" -} diff --git a/debfiles/com.codwam.surgetweak_0.1_iphoneos-arm.deb b/debfiles/com.codwam.surgetweak_0.1_iphoneos-arm.deb deleted file mode 100644 index 761ef997bb3..00000000000 Binary files a/debfiles/com.codwam.surgetweak_0.1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.adblock_0.2~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.adblock_0.2~beta1_iphoneos-arm.deb deleted file mode 100644 index 6bda451bc85..00000000000 Binary files a/debfiles/com.julioverne.adblock_0.2~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.albumhider_0.0~beta3_iphoneos-arm.deb b/debfiles/com.julioverne.albumhider_0.0~beta3_iphoneos-arm.deb deleted file mode 100644 index 23a2712e112..00000000000 Binary files a/debfiles/com.julioverne.albumhider_0.0~beta3_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.albumpref_0.0~beta2a_iphoneos-arm.deb b/debfiles/com.julioverne.albumpref_0.0~beta2a_iphoneos-arm.deb deleted file mode 100644 index 14795078cdf..00000000000 Binary files a/debfiles/com.julioverne.albumpref_0.0~beta2a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.alt5tore_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.alt5tore_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index 85d2f290b5c..00000000000 Binary files a/debfiles/com.julioverne.alt5tore_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.appellancy11_1.1-20b_iphoneos-arm.deb b/debfiles/com.julioverne.appellancy11_1.1-20b_iphoneos-arm.deb deleted file mode 100644 index 4b99f8714e3..00000000000 Binary files a/debfiles/com.julioverne.appellancy11_1.1-20b_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.appssiripin_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.appssiripin_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index 279f3fc8f44..00000000000 Binary files a/debfiles/com.julioverne.appssiripin_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.appstorenohistory_0.0~beta8_iphoneos-arm.deb b/debfiles/com.julioverne.appstorenohistory_0.0~beta8_iphoneos-arm.deb deleted file mode 100644 index 1f451ef4f81..00000000000 Binary files a/debfiles/com.julioverne.appstorenohistory_0.0~beta8_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.appstoreunrestrict_0.0~beta4a_iphoneos-arm.deb b/debfiles/com.julioverne.appstoreunrestrict_0.0~beta4a_iphoneos-arm.deb deleted file mode 100644 index ae9080a3197..00000000000 Binary files a/debfiles/com.julioverne.appstoreunrestrict_0.0~beta4a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.artworkify_0.0~beta4_iphoneos-arm.deb b/debfiles/com.julioverne.artworkify_0.0~beta4_iphoneos-arm.deb deleted file mode 100644 index 779a041807e..00000000000 Binary files a/debfiles/com.julioverne.artworkify_0.0~beta4_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.autolockx_0.0~beta2a_iphoneos-arm.deb b/debfiles/com.julioverne.autolockx_0.0~beta2a_iphoneos-arm.deb deleted file mode 100644 index 36c4083e813..00000000000 Binary files a/debfiles/com.julioverne.autolockx_0.0~beta2a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.autoshiftfix_0.1_iphoneos-arm.deb b/debfiles/com.julioverne.autoshiftfix_0.1_iphoneos-arm.deb deleted file mode 100644 index c0160cb84e5..00000000000 Binary files a/debfiles/com.julioverne.autoshiftfix_0.1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.autowall_0.0~beta3_iphoneos-arm.deb b/debfiles/com.julioverne.autowall_0.0~beta3_iphoneos-arm.deb deleted file mode 100644 index 749a91ebe77..00000000000 Binary files a/debfiles/com.julioverne.autowall_0.0~beta3_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.avcache_0.0~beta2_iphoneos-arm.deb b/debfiles/com.julioverne.avcache_0.0~beta2_iphoneos-arm.deb deleted file mode 100644 index 180006ce29b..00000000000 Binary files a/debfiles/com.julioverne.avcache_0.0~beta2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.battrate_0.0~beta2_iphoneos-arm.deb b/debfiles/com.julioverne.battrate_0.0~beta2_iphoneos-arm.deb deleted file mode 100644 index bafff04dba0..00000000000 Binary files a/debfiles/com.julioverne.battrate_0.0~beta2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.bgmodekill_0.0~beta_iphoneos-arm.deb b/debfiles/com.julioverne.bgmodekill_0.0~beta_iphoneos-arm.deb deleted file mode 100644 index fc3fd6693bd..00000000000 Binary files a/debfiles/com.julioverne.bgmodekill_0.0~beta_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.bigshotjb11_0.0.2-2b_iphoneos-arm.deb b/debfiles/com.julioverne.bigshotjb11_0.0.2-2b_iphoneos-arm.deb deleted file mode 100644 index adf6939710e..00000000000 Binary files a/debfiles/com.julioverne.bigshotjb11_0.0.2-2b_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.biotap_0.1_iphoneos-arm.deb b/debfiles/com.julioverne.biotap_0.1_iphoneos-arm.deb deleted file mode 100644 index 55f80bcd541..00000000000 Binary files a/debfiles/com.julioverne.biotap_0.1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.blightalert_0.0~beta4_iphoneos-arm.deb b/debfiles/com.julioverne.blightalert_0.0~beta4_iphoneos-arm.deb deleted file mode 100644 index 574a9587df0..00000000000 Binary files a/debfiles/com.julioverne.blightalert_0.0~beta4_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.bumbleverifyroll_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.bumbleverifyroll_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index c346f10497c..00000000000 Binary files a/debfiles/com.julioverne.bumbleverifyroll_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.cacheclearer11_0.1_iphoneos-arm.deb b/debfiles/com.julioverne.cacheclearer11_0.1_iphoneos-arm.deb deleted file mode 100644 index bceeaea5011..00000000000 Binary files a/debfiles/com.julioverne.cacheclearer11_0.1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.cachewipe_0.0~beta1a_iphoneos-arm.deb b/debfiles/com.julioverne.cachewipe_0.0~beta1a_iphoneos-arm.deb deleted file mode 100644 index 6165b59b9b2..00000000000 Binary files a/debfiles/com.julioverne.cachewipe_0.0~beta1a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.caixatemfast_0.0~beta2_iphoneos-arm.deb b/debfiles/com.julioverne.caixatemfast_0.0~beta2_iphoneos-arm.deb deleted file mode 100644 index 6e0eeb97b69..00000000000 Binary files a/debfiles/com.julioverne.caixatemfast_0.0~beta2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.celldia_0.0~beta5_iphoneos-arm.deb b/debfiles/com.julioverne.celldia_0.0~beta5_iphoneos-arm.deb deleted file mode 100644 index f26ee6fc79f..00000000000 Binary files a/debfiles/com.julioverne.celldia_0.0~beta5_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.chargemode_0.0~beta4_iphoneos-arm.deb b/debfiles/com.julioverne.chargemode_0.0~beta4_iphoneos-arm.deb deleted file mode 100644 index 0f80e356fc6..00000000000 Binary files a/debfiles/com.julioverne.chargemode_0.0~beta4_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.cirdock11_1.3.0_iphoneos-arm.deb b/debfiles/com.julioverne.cirdock11_1.3.0_iphoneos-arm.deb deleted file mode 100644 index d2890c96865..00000000000 Binary files a/debfiles/com.julioverne.cirdock11_1.3.0_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.closecam_0.0~beta2_iphoneos-arm.deb b/debfiles/com.julioverne.closecam_0.0~beta2_iphoneos-arm.deb deleted file mode 100644 index 8e6fdc2ab8c..00000000000 Binary files a/debfiles/com.julioverne.closecam_0.0~beta2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.cmdsapp_0.1_iphoneos-arm.deb b/debfiles/com.julioverne.cmdsapp_0.1_iphoneos-arm.deb deleted file mode 100644 index 79b2f089ea8..00000000000 Binary files a/debfiles/com.julioverne.cmdsapp_0.1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.coverflowm_0.2_iphoneos-arm.deb b/debfiles/com.julioverne.coverflowm_0.2_iphoneos-arm.deb deleted file mode 100644 index e1e5d974c59..00000000000 Binary files a/debfiles/com.julioverne.coverflowm_0.2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.cypush2_1.2_iphoneos-arm.deb b/debfiles/com.julioverne.cypush2_1.2_iphoneos-arm.deb deleted file mode 100644 index 8751ecf38a7..00000000000 Binary files a/debfiles/com.julioverne.cypush2_1.2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.cypush_0.7_iphoneos-arm.deb b/debfiles/com.julioverne.cypush_0.7_iphoneos-arm.deb deleted file mode 100644 index af9cb5bf7d3..00000000000 Binary files a/debfiles/com.julioverne.cypush_0.7_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.debrepack_1.0-1a_iphoneos-arm.deb b/debfiles/com.julioverne.debrepack_1.0-1a_iphoneos-arm.deb deleted file mode 100644 index ffc1a3094c2..00000000000 Binary files a/debfiles/com.julioverne.debrepack_1.0-1a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.dropbearalert_0.0~beta2_iphoneos-arm.deb b/debfiles/com.julioverne.dropbearalert_0.0~beta2_iphoneos-arm.deb deleted file mode 100644 index ca3d48f41b1..00000000000 Binary files a/debfiles/com.julioverne.dropbearalert_0.0~beta2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.dropbearswith_0.3_iphoneos-arm.deb b/debfiles/com.julioverne.dropbearswith_0.3_iphoneos-arm.deb deleted file mode 100644 index 510049ba791..00000000000 Binary files a/debfiles/com.julioverne.dropbearswith_0.3_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.edgealert_0.0~beta2_iphoneos-arm.deb b/debfiles/com.julioverne.edgealert_0.0~beta2_iphoneos-arm.deb deleted file mode 100644 index b7aa21de64a..00000000000 Binary files a/debfiles/com.julioverne.edgealert_0.0~beta2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.epicentre11_2.0-2b_iphoneos-arm.deb b/debfiles/com.julioverne.epicentre11_2.0-2b_iphoneos-arm.deb deleted file mode 100644 index 4f77006c2f5..00000000000 Binary files a/debfiles/com.julioverne.epicentre11_2.0-2b_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.exchangent2_0.0~beta4_iphoneos-arm.deb b/debfiles/com.julioverne.exchangent2_0.0~beta4_iphoneos-arm.deb deleted file mode 100644 index a87aa1429f4..00000000000 Binary files a/debfiles/com.julioverne.exchangent2_0.0~beta4_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.exsto11_0.0.1.2-2_iphoneos-arm.deb b/debfiles/com.julioverne.exsto11_0.0.1.2-2_iphoneos-arm.deb deleted file mode 100644 index 7372e533178..00000000000 Binary files a/debfiles/com.julioverne.exsto11_0.0.1.2-2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.ext3nder-installer_022b_iphoneos-arm.deb b/debfiles/com.julioverne.ext3nder-installer_022b_iphoneos-arm.deb deleted file mode 100644 index 40b7503c961..00000000000 Binary files a/debfiles/com.julioverne.ext3nder-installer_022b_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.fastuprepo2_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.fastuprepo2_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index 7077a23f41f..00000000000 Binary files a/debfiles/com.julioverne.fastuprepo2_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.fastuprepo_0.0~beta4a_iphoneos-arm.deb b/debfiles/com.julioverne.fastuprepo_0.0~beta4a_iphoneos-arm.deb deleted file mode 100644 index 0f1b82afd54..00000000000 Binary files a/debfiles/com.julioverne.fastuprepo_0.0~beta4a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.fiona_0.1_iphoneos-arm.deb b/debfiles/com.julioverne.fiona_0.1_iphoneos-arm.deb deleted file mode 100644 index a2770b324cc..00000000000 Binary files a/debfiles/com.julioverne.fiona_0.1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.flipconvert_0.0~beta6_iphoneos-arm.deb b/debfiles/com.julioverne.flipconvert_0.0~beta6_iphoneos-arm.deb deleted file mode 100644 index 6c83c564450..00000000000 Binary files a/debfiles/com.julioverne.flipconvert_0.0~beta6_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.flipstatus_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.flipstatus_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index 1f3384088fa..00000000000 Binary files a/debfiles/com.julioverne.flipstatus_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.fmydblocker_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.fmydblocker_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index 82ea4d859b9..00000000000 Binary files a/debfiles/com.julioverne.fmydblocker_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.goodwifi_0.0~beta6_iphoneos-arm.deb b/debfiles/com.julioverne.goodwifi_0.0~beta6_iphoneos-arm.deb deleted file mode 100644 index 7be7c411b93..00000000000 Binary files a/debfiles/com.julioverne.goodwifi_0.0~beta6_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.googleauthpro_0.0~beta2a_iphoneos-arm.deb b/debfiles/com.julioverne.googleauthpro_0.0~beta2a_iphoneos-arm.deb deleted file mode 100644 index ee94a65543b..00000000000 Binary files a/debfiles/com.julioverne.googleauthpro_0.0~beta2a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.gravity_0.7_iphoneos-arm.deb b/debfiles/com.julioverne.gravity_0.7_iphoneos-arm.deb deleted file mode 100644 index c6c86c943e7..00000000000 Binary files a/debfiles/com.julioverne.gravity_0.7_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.headsetbtsound_0.0~beta_iphoneos-arm.deb b/debfiles/com.julioverne.headsetbtsound_0.0~beta_iphoneos-arm.deb deleted file mode 100644 index e8fa462a9f1..00000000000 Binary files a/debfiles/com.julioverne.headsetbtsound_0.0~beta_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.heysiri_0.0~beta6_iphoneos-arm.deb b/debfiles/com.julioverne.heysiri_0.0~beta6_iphoneos-arm.deb deleted file mode 100644 index f154e314a78..00000000000 Binary files a/debfiles/com.julioverne.heysiri_0.0~beta6_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.hold2speak11_1.3a_iphoneos-arm.deb b/debfiles/com.julioverne.hold2speak11_1.3a_iphoneos-arm.deb deleted file mode 100644 index e64088b84f1..00000000000 Binary files a/debfiles/com.julioverne.hold2speak11_1.3a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.hotspotting_0.0~beta2_iphoneos-arm.deb b/debfiles/com.julioverne.hotspotting_0.0~beta2_iphoneos-arm.deb deleted file mode 100644 index e2a6e09e134..00000000000 Binary files a/debfiles/com.julioverne.hotspotting_0.0~beta2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.hsbcbypass_0.3b_iphoneos-arm.deb b/debfiles/com.julioverne.hsbcbypass_0.3b_iphoneos-arm.deb deleted file mode 100644 index 4086d0cc993..00000000000 Binary files a/debfiles/com.julioverne.hsbcbypass_0.3b_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.igsaver_0.1~beta2_iphoneos-arm.deb b/debfiles/com.julioverne.igsaver_0.1~beta2_iphoneos-arm.deb deleted file mode 100644 index 9ce13710040..00000000000 Binary files a/debfiles/com.julioverne.igsaver_0.1~beta2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.illlooklater11_2.0-2_iphoneos-arm.deb b/debfiles/com.julioverne.illlooklater11_2.0-2_iphoneos-arm.deb deleted file mode 100644 index b2fb66632ed..00000000000 Binary files a/debfiles/com.julioverne.illlooklater11_2.0-2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.intejb_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.intejb_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index 4bec8f9ef6a..00000000000 Binary files a/debfiles/com.julioverne.intejb_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.jailprotect_0.0~beta4a_iphoneos-arm.deb b/debfiles/com.julioverne.jailprotect_0.0~beta4a_iphoneos-arm.deb deleted file mode 100644 index 1d818a70a7f..00000000000 Binary files a/debfiles/com.julioverne.jailprotect_0.0~beta4a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.jbme10xwebclip_0.1_iphoneos-arm.deb b/debfiles/com.julioverne.jbme10xwebclip_0.1_iphoneos-arm.deb deleted file mode 100644 index e1278e7b112..00000000000 Binary files a/debfiles/com.julioverne.jbme10xwebclip_0.1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.jbme93xwebclip_0.1_iphoneos-arm.deb b/debfiles/com.julioverne.jbme93xwebclip_0.1_iphoneos-arm.deb deleted file mode 100644 index ca5bfd76f7c..00000000000 Binary files a/debfiles/com.julioverne.jbme93xwebclip_0.1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.kb2change_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.kb2change_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index a44650866f9..00000000000 Binary files a/debfiles/com.julioverne.kb2change_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.kbmover_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.kbmover_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index b1bde8f4638..00000000000 Binary files a/debfiles/com.julioverne.kbmover_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.keyswipe11_1.0.2-3b_iphoneos-arm.deb b/debfiles/com.julioverne.keyswipe11_1.0.2-3b_iphoneos-arm.deb deleted file mode 100644 index 43fdb23f8c2..00000000000 Binary files a/debfiles/com.julioverne.keyswipe11_1.0.2-3b_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.liblinker_0.3_iphoneos-arm.deb b/debfiles/com.julioverne.liblinker_0.3_iphoneos-arm.deb deleted file mode 100644 index 17fd4b41c91..00000000000 Binary files a/debfiles/com.julioverne.liblinker_0.3_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.lockanim_0.0~beta4_iphoneos-arm.deb b/debfiles/com.julioverne.lockanim_0.0~beta4_iphoneos-arm.deb deleted file mode 100644 index aa6a936a121..00000000000 Binary files a/debfiles/com.julioverne.lockanim_0.0~beta4_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.lockdroid_0.0~beta8_iphoneos-arm.deb b/debfiles/com.julioverne.lockdroid_0.0~beta8_iphoneos-arm.deb deleted file mode 100644 index 00991a83594..00000000000 Binary files a/debfiles/com.julioverne.lockdroid_0.0~beta8_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.lockdroiddonuts_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.lockdroiddonuts_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index cec31f8562c..00000000000 Binary files a/debfiles/com.julioverne.lockdroiddonuts_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.lowerinstall_0.0~beta6_iphoneos-arm.deb b/debfiles/com.julioverne.lowerinstall_0.0~beta6_iphoneos-arm.deb deleted file mode 100644 index 436022c02dc..00000000000 Binary files a/debfiles/com.julioverne.lowerinstall_0.0~beta6_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.luxyverifyroll_0.0~beta2_iphoneos-arm.deb b/debfiles/com.julioverne.luxyverifyroll_0.0~beta2_iphoneos-arm.deb deleted file mode 100644 index ec4a2ebf749..00000000000 Binary files a/debfiles/com.julioverne.luxyverifyroll_0.0~beta2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.mcast_0.0~beta6_iphoneos-arm.deb b/debfiles/com.julioverne.mcast_0.0~beta6_iphoneos-arm.deb deleted file mode 100644 index b8bd26819f9..00000000000 Binary files a/debfiles/com.julioverne.mcast_0.0~beta6_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.messagefile_0.0~beta3_iphoneos-arm.deb b/debfiles/com.julioverne.messagefile_0.0~beta3_iphoneos-arm.deb deleted file mode 100644 index ba2325cbcf2..00000000000 Binary files a/debfiles/com.julioverne.messagefile_0.0~beta3_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.mibandalert_0.0.4_iphoneos-arm.deb b/debfiles/com.julioverne.mibandalert_0.0.4_iphoneos-arm.deb deleted file mode 100644 index 440312ba92a..00000000000 Binary files a/debfiles/com.julioverne.mibandalert_0.0.4_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.mimport_0.0~beta40_iphoneos-arm.deb b/debfiles/com.julioverne.mimport_0.0~beta40_iphoneos-arm.deb deleted file mode 100644 index 7f299f0c002..00000000000 Binary files a/debfiles/com.julioverne.mimport_0.0~beta40_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.modernxinoblur_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.modernxinoblur_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index a8e5baafd60..00000000000 Binary files a/debfiles/com.julioverne.modernxinoblur_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.mpscale_0.0~beta3b_iphoneos-arm.deb b/debfiles/com.julioverne.mpscale_0.0~beta3b_iphoneos-arm.deb deleted file mode 100644 index cbf1887c968..00000000000 Binary files a/debfiles/com.julioverne.mpscale_0.0~beta3b_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.mshuffle_0.0~beta4_iphoneos-arm.deb b/debfiles/com.julioverne.mshuffle_0.0~beta4_iphoneos-arm.deb deleted file mode 100644 index cdaf453a0fd..00000000000 Binary files a/debfiles/com.julioverne.mshuffle_0.0~beta4_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.musicsection_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.musicsection_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index 1510ca539fd..00000000000 Binary files a/debfiles/com.julioverne.musicsection_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.musicv_0.0~beta2-0_iphoneos-arm.deb b/debfiles/com.julioverne.musicv_0.0~beta2-0_iphoneos-arm.deb deleted file mode 100644 index 6ef9e59550e..00000000000 Binary files a/debfiles/com.julioverne.musicv_0.0~beta2-0_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.musilyric_0.5~beta8b_iphoneos-arm.deb b/debfiles/com.julioverne.musilyric_0.5~beta8b_iphoneos-arm.deb deleted file mode 100644 index 3982395abff..00000000000 Binary files a/debfiles/com.julioverne.musilyric_0.5~beta8b_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.nbkjb_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.nbkjb_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index c2596410342..00000000000 Binary files a/debfiles/com.julioverne.nbkjb_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.ncgroup_0.0~beta11_iphoneos-arm.deb b/debfiles/com.julioverne.ncgroup_0.0~beta11_iphoneos-arm.deb deleted file mode 100644 index cdd43c5d2bd..00000000000 Binary files a/debfiles/com.julioverne.ncgroup_0.0~beta11_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.noexinsta_0.0~beta1a_iphoneos-arm.deb b/debfiles/com.julioverne.noexinsta_0.0~beta1a_iphoneos-arm.deb deleted file mode 100644 index ddbcfc607d0..00000000000 Binary files a/debfiles/com.julioverne.noexinsta_0.0~beta1a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.nonceset_0.4_iphoneos-arm.deb b/debfiles/com.julioverne.nonceset_0.4_iphoneos-arm.deb deleted file mode 100644 index c0498e75b31..00000000000 Binary files a/debfiles/com.julioverne.nonceset_0.4_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.ntspeed_0.2~beta9_iphoneos-arm.deb b/debfiles/com.julioverne.ntspeed_0.2~beta9_iphoneos-arm.deb deleted file mode 100644 index 70e81c4d024..00000000000 Binary files a/debfiles/com.julioverne.ntspeed_0.2~beta9_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.otablocker_0.2a_iphoneos-arm.deb b/debfiles/com.julioverne.otablocker_0.2a_iphoneos-arm.deb deleted file mode 100644 index 22c11021639..00000000000 Binary files a/debfiles/com.julioverne.otablocker_0.2a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.phonescroll_0.0~beta2a_iphoneos-arm.deb b/debfiles/com.julioverne.phonescroll_0.0~beta2a_iphoneos-arm.deb deleted file mode 100644 index 70a07e240f4..00000000000 Binary files a/debfiles/com.julioverne.phonescroll_0.0~beta2a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.picjb_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.picjb_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index 291ce4e30b2..00000000000 Binary files a/debfiles/com.julioverne.picjb_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.pimport_0.0~beta5_iphoneos-arm.deb b/debfiles/com.julioverne.pimport_0.0~beta5_iphoneos-arm.deb deleted file mode 100644 index 9d231bcb67a..00000000000 Binary files a/debfiles/com.julioverne.pimport_0.0~beta5_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.pipenabler_0.3_iphoneos-arm.deb b/debfiles/com.julioverne.pipenabler_0.3_iphoneos-arm.deb deleted file mode 100644 index f27f2aef957..00000000000 Binary files a/debfiles/com.julioverne.pipenabler_0.3_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.pipsize_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.pipsize_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index 9a34f488cc9..00000000000 Binary files a/debfiles/com.julioverne.pipsize_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.quickunlock11_1.0_iphoneos-arm.deb b/debfiles/com.julioverne.quickunlock11_1.0_iphoneos-arm.deb deleted file mode 100644 index a50f1e9b5bb..00000000000 Binary files a/debfiles/com.julioverne.quickunlock11_1.0_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.raisetoanswer_1.1_iphoneos-arm.deb b/debfiles/com.julioverne.raisetoanswer_1.1_iphoneos-arm.deb deleted file mode 100644 index 84e9932bf87..00000000000 Binary files a/debfiles/com.julioverne.raisetoanswer_1.1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.sbcard_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.sbcard_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index 4ea51b60fcb..00000000000 Binary files a/debfiles/com.julioverne.sbcard_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.scloudinfo_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.scloudinfo_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index 9688047830b..00000000000 Binary files a/debfiles/com.julioverne.scloudinfo_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.screendump13_0.0.3d_iphoneos-arm.deb b/debfiles/com.julioverne.screendump13_0.0.3d_iphoneos-arm.deb deleted file mode 100644 index 6f0d95eb358..00000000000 Binary files a/debfiles/com.julioverne.screendump13_0.0.3d_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.sftpenabler_0.1_iphoneos-arm.deb b/debfiles/com.julioverne.sftpenabler_0.1_iphoneos-arm.deb deleted file mode 100644 index 3ee0d239710..00000000000 Binary files a/debfiles/com.julioverne.sftpenabler_0.1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.signaldbm_0.0~beta3_iphoneos-arm.deb b/debfiles/com.julioverne.signaldbm_0.0~beta3_iphoneos-arm.deb deleted file mode 100644 index 0e78b97df2a..00000000000 Binary files a/debfiles/com.julioverne.signaldbm_0.0~beta3_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.signalplane_0.0~beta3a_iphoneos-arm.deb b/debfiles/com.julioverne.signalplane_0.0~beta3a_iphoneos-arm.deb deleted file mode 100644 index fee5d1d4f38..00000000000 Binary files a/debfiles/com.julioverne.signalplane_0.0~beta3a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.simulatetouch_0.7-17~beta5_iphoneos-arm.deb b/debfiles/com.julioverne.simulatetouch_0.7-17~beta5_iphoneos-arm.deb deleted file mode 100644 index e22c0f5e3b8..00000000000 Binary files a/debfiles/com.julioverne.simulatetouch_0.7-17~beta5_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.siriifpossible_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.siriifpossible_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index 921b0dbea64..00000000000 Binary files a/debfiles/com.julioverne.siriifpossible_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.slackhistory_0.1c_iphoneos-arm.deb b/debfiles/com.julioverne.slackhistory_0.1c_iphoneos-arm.deb deleted file mode 100644 index 91e0be071b8..00000000000 Binary files a/debfiles/com.julioverne.slackhistory_0.1c_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.sslkillswitch2_0.14c_iphoneos-arm.deb b/debfiles/com.julioverne.sslkillswitch2_0.14c_iphoneos-arm.deb deleted file mode 100644 index b5801226cab..00000000000 Binary files a/debfiles/com.julioverne.sslkillswitch2_0.14c_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.tb280_0.2_iphoneos-arm.deb b/debfiles/com.julioverne.tb280_0.2_iphoneos-arm.deb deleted file mode 100644 index 1d84330eaf5..00000000000 Binary files a/debfiles/com.julioverne.tb280_0.2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.trustdevalert_0.2a_iphoneos-arm.deb b/debfiles/com.julioverne.trustdevalert_0.2a_iphoneos-arm.deb deleted file mode 100644 index 17c42cf2f44..00000000000 Binary files a/debfiles/com.julioverne.trustdevalert_0.2a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.tw280_0.2_iphoneos-arm.deb b/debfiles/com.julioverne.tw280_0.2_iphoneos-arm.deb deleted file mode 100644 index 8210cf731f7..00000000000 Binary files a/debfiles/com.julioverne.tw280_0.2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.twslidetoblock_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.twslidetoblock_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index 7a633532b71..00000000000 Binary files a/debfiles/com.julioverne.twslidetoblock_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.uicachefix10_0.1_iphoneos-arm.deb b/debfiles/com.julioverne.uicachefix10_0.1_iphoneos-arm.deb deleted file mode 100644 index 23110c39bf1..00000000000 Binary files a/debfiles/com.julioverne.uicachefix10_0.1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.upscale_0.0.1_iphoneos-arm.deb b/debfiles/com.julioverne.upscale_0.0.1_iphoneos-arm.deb deleted file mode 100644 index 33692c4c746..00000000000 Binary files a/debfiles/com.julioverne.upscale_0.0.1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.vwallpaper2os11_0.5.0-3a_iphoneos-arm.deb b/debfiles/com.julioverne.vwallpaper2os11_0.5.0-3a_iphoneos-arm.deb deleted file mode 100644 index a6a9372e701..00000000000 Binary files a/debfiles/com.julioverne.vwallpaper2os11_0.5.0-3a_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.whilelotus_0.0~beta3_iphoneos-arm.deb b/debfiles/com.julioverne.whilelotus_0.0~beta3_iphoneos-arm.deb deleted file mode 100644 index e2eda958fb1..00000000000 Binary files a/debfiles/com.julioverne.whilelotus_0.0~beta3_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.widplayer_3.5.4_iphoneos-arm.deb b/debfiles/com.julioverne.widplayer_3.5.4_iphoneos-arm.deb deleted file mode 100644 index cb3a3ad2000..00000000000 Binary files a/debfiles/com.julioverne.widplayer_3.5.4_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.wishdia_0.0~beta1_iphoneos-arm.deb b/debfiles/com.julioverne.wishdia_0.0~beta1_iphoneos-arm.deb deleted file mode 100644 index 3b43a910a83..00000000000 Binary files a/debfiles/com.julioverne.wishdia_0.0~beta1_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.ythdunlocker_0.0~beta1c_iphoneos-arm.deb b/debfiles/com.julioverne.ythdunlocker_0.0~beta1c_iphoneos-arm.deb deleted file mode 100644 index f0014715fe4..00000000000 Binary files a/debfiles/com.julioverne.ythdunlocker_0.0~beta1c_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.ytnoautoplay_0.0~beta2_iphoneos-arm.deb b/debfiles/com.julioverne.ytnoautoplay_0.0~beta2_iphoneos-arm.deb deleted file mode 100644 index b12cd2d863e..00000000000 Binary files a/debfiles/com.julioverne.ytnoautoplay_0.0~beta2_iphoneos-arm.deb and /dev/null differ diff --git a/debfiles/com.julioverne.zaddyverifyroll_0.0~beta2_iphoneos-arm.deb b/debfiles/com.julioverne.zaddyverifyroll_0.0~beta2_iphoneos-arm.deb deleted file mode 100644 index 56b88dd49bf..00000000000 Binary files a/debfiles/com.julioverne.zaddyverifyroll_0.0~beta2_iphoneos-arm.deb and /dev/null differ diff --git a/debimages/Surge.PNG b/debimages/Surge.PNG deleted file mode 100644 index acd0e82dde0..00000000000 Binary files a/debimages/Surge.PNG and /dev/null differ diff --git a/docker/docker-compose.build-image.yml b/docker/docker-compose.build-image.yml deleted file mode 100644 index 630aa6687f7..00000000000 --- a/docker/docker-compose.build-image.yml +++ /dev/null @@ -1,7 +0,0 @@ -version: "3.5" - -services: - jekyll-text-theme_dev: - build: - context: ../ - dockerfile: Dockerfile.dev diff --git a/docker/docker-compose.default.yml b/docker/docker-compose.default.yml deleted file mode 100644 index 96bc7750ae2..00000000000 --- a/docker/docker-compose.default.yml +++ /dev/null @@ -1,15 +0,0 @@ -version: "3.5" - -services: - jekyll-text-theme_dev: - image: docker_jekyll-text-theme_dev - environment: - - JEKYLL_ENV - ports: - - 4000:4000 - container_name: jekyll-TeXt-theme_default - volumes: - - ..:/usr/src/app - stdin_open: true - tty: true - command: bundle exec jekyll serve -H 0.0.0.0 -t diff --git a/docker/docker-compose.demo.yml b/docker/docker-compose.demo.yml deleted file mode 100644 index fcfdcc3998a..00000000000 --- a/docker/docker-compose.demo.yml +++ /dev/null @@ -1,15 +0,0 @@ -version: "3.5" - -services: - jekyll-text-theme_dev: - image: docker_jekyll-text-theme_dev - environment: - - JEKYLL_ENV - ports: - - 4000:4000 - container_name: jekyll-TeXt-theme_demo - volumes: - - ..:/usr/src/app - stdin_open: true - tty: true - command: bundle exec jekyll serve -H 0.0.0.0 -t --config ./docs/_config.yml diff --git a/docker/docker-compose.dev.yml b/docker/docker-compose.dev.yml deleted file mode 100644 index 1d2d724edce..00000000000 --- a/docker/docker-compose.dev.yml +++ /dev/null @@ -1,15 +0,0 @@ -version: "3.5" - -services: - jekyll-text-theme_dev: - image: docker_jekyll-text-theme_dev - environment: - - JEKYLL_ENV - ports: - - 4000:4000 - container_name: jekyll-TeXt-theme_dev - volumes: - - ..:/usr/src/app - stdin_open: true - tty: true - command: bundle exec jekyll serve -H 0.0.0.0 -t --config ./docs/_config.dev.yml diff --git a/docker/docker-compose.prod.yml b/docker/docker-compose.prod.yml deleted file mode 100644 index 1ad4c1eedff..00000000000 --- a/docker/docker-compose.prod.yml +++ /dev/null @@ -1,25 +0,0 @@ -version: "3.5" - -services: - jekyll-text-theme_build: - image: docker_jekyll-text-theme_dev - environment: - - JEKYLL_ENV - ports: - - 4000:4000 - container_name: jekyll-text-theme_build - volumes: - - ..:/usr/src/app - command: bundle exec jekyll build - jekyll-text-theme_web: - image: nginx - ports: - - 80:80 - - 443:443 - container_name: jekyll-text-theme_web - restart: unless-stopped - volumes: - - ../_site:/usr/share/nginx/html:ro - - ./nginx.conf:/etc/nginx/conf.d/default.conf - depends_on: - - jekyll-text-theme_build diff --git a/docker/nginx.conf b/docker/nginx.conf deleted file mode 100644 index 8d339126813..00000000000 --- a/docker/nginx.conf +++ /dev/null @@ -1,16 +0,0 @@ -server { - # gzip config - gzip on; - gzip_min_length 1k; - gzip_comp_level 9; - gzip_types text/plain text/css text/javascript application/json application/javascript application/x-javascript application/xml; - gzip_vary on; - - root /usr/share/nginx/html; - - index index.html; - - location / { - try_files $uri $uri/ =404; - } -} diff --git a/docs/_config.dev.yml b/docs/_config.dev.yml deleted file mode 100644 index 3bdee3d39be..00000000000 --- a/docs/_config.dev.yml +++ /dev/null @@ -1,297 +0,0 @@ -# Welcome to Jekyll! -# -# This config file is meant for settings that affect your whole blog, values -# which you are expected to set up once and rarely need to edit after that. -# For technical reasons, this file is *NOT* reloaded automatically when you use -# 'jekyll serve'. If you change this file, please restart the server process. -# -# ,--------. ,--. ,--. ,--. -# '--. .--',---. \ `.' /,-' '-. -# | | | .-. : .' \ '-. .-' -# | | \ --. / .'. \ | | -# `--' `----''--' '--' `--' - -# config file for development, DELETE IT IF YOU WANT. - - -## => Site Settings -############################## -text_skin: default # "default" (default), "dark", "forest", "ocean", "chocolate", "orange" -highlight_theme: default # "default" (default), "tomorrow", "tomorrow-night", "tomorrow-night-eighties", "tomorrow-night-blue", "tomorrow-night-bright" -url : # the base hostname & protocol for your site e.g. https://www.someone.com -baseurl : # does not include hostname -title : TeXt Theme -description: > # this means to ignore newlines until "Language & timezone" - TeXt Theme for development. - - -## => Language and Timezone -############################## -lang: # the language of your site, default as "en" -timezone: # see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones for the available values - - -## => Author and Social -############################## -author: - type : organization # "person" (default), "organization" - name : TeXt - url : - avatar : /assets/apple-touch-icon.png - bio: > - TeXt Theme for development. - email : 1 - facebook : 1 - twitter : 1 - weibo : 1 - googleplus: 1 - telegram : 1 - medium : 1 - zhihu : 1 - douban : 1 - linkedin : 1 - github : 1 - npm : 1 - - -## => GitHub Repository (if the site is hosted by GitHub) -############################## -repository: kitian616/jekyll-TeXt-theme -repository_tree: master - - -## => Paths -############################## -paths: - root : # title link url, "/" (default) - home : /test/ # home layout url, "/" (default) - archive : # "/archive.html" (default) - rss : # "/feed.xml" (default) - - -## => Post -############################## -## excerpt -excerpt_separator: - -## license -license: CC-BY-4.0 # "CC-BY-4.0", "CC-BY-SA-4.0", "CC-BY-NC-4.0", "CC-BY-ND-4.0" - -## TOC -toc: - selectors: "h1,h2,h3,h4,h5,h6" # "h1,h2,h3" (default) - - -## => Markdown Enhancements -############################## -## Mathjax -mathjax: true # false (default), true -mathjax_autoNumber: true # false (default), true - -## Mermaid -mermaid: true # false (default), true - -## Chart -chart: true # false (default), true - - -## => Paginate -############################## -paginate: 4 -paginate_path: /test/page:num # don't change this unless for special need - - -## => Sources -############################## -sources: unpkg # bootcdn (default), unpkg - - -## => Sharing -############################## -sharing: - provider: addtoany # false (default), "addtoany", "addthis", "custom" - - ## AddThis - addthis: - id: # AddThis pubid, e.g. ra-5xxxxxxxxxxx - - -## => Comments -############################## -comments: - provider: false # false (default), "disqus", "gitalk", "valine", "custom" - - ## Disqus - disqus: - shortname: # the Disqus shortname for the site - - ## Gitalk - # please refer to https://github.com/gitalk/gitalk for more info. - gitalk: - clientID : # GitHub Application Client ID - clientSecret: # GitHub Application Client Secret - repository : # GitHub repo - owner : # GitHub repo owner - admin: # GitHub repo owner and collaborators, only these guys can initialize GitHub issues, IT IS A LIST. - # - your GitHub Id - - ## Valine - # please refer to https://valine.js.org/en/ for more info. - valine: - app_id : # LeanCloud App id - app_key : # LeanCloud App key - placeholder : # Prompt information - visitor : # false (default) - meta : # "[nick, mail, link]" (default) nickname, E-mail, Personal-site - - -## => Pageview -############################## -pageview: - provider: false # false (default), "leancloud", "custom" - - ## Leancloud - leancloud: - app_id : # LeanCloud App id - app_key : # LeanCloud App key - app_class : # LeanCloud App class - - -## => Search -############################## -search: - provider: default # "default" (default), false, "google", "custom" - - ## Google Custom Search Engine - google: - # custom_search_engine_id: 017643444788069204610:4gvhea_mvga # Google Custom Search Engine ID - - -## => Analytics -############################## -analytics: - provider: false # false (default), "google", "custom" - - ## Google Analytics - google: - tracking_id : # Google Analytics id for the site - anonymize_ip: false # Anonymize IP tracking for Analytics - - -## => Build -############################## -markdown : kramdown -highlighter : rouge -permalink : date - -exclude: - - CHANGELOG.md - - HOW_TO_RELEASE.md - - Gemfile - - Gemfile.lock - - LICENSE - - README-*.md - - README.md - - gulpfile.js - - jekyll-text-theme.gemspec - - package-lock.json - - package.json - # - /docs - - /node_modules - # - /screenshots - # - /test - - /vendor - - /_posts - - /index.html - -collections_dir: docs -collections: - docs: - output: true - sample_page: - output: true - sample_articles: - output: true - sample_languages: - output: true - -defaults: - ## home - - scope: - path: "test" - values: - articles: - excerpt_type: html - ## posts - - scope: - path: "" - type: posts - values: - layout: article - sharing: true - license: true - category: post - aside: - toc: true - show_edit_on_github: true - show_subscribe: true - pageview: true - lightbox: true - ## samples - - scope: - path: "" - type: sample_page - values: - nav_key: samples - - scope: - path: "" - type: sample_articles - values: - nav_key: samples - show_date: false - - scope: - path: "" - type: sample_languages - values: - layout: article - nav_key: samples - show_date: false - ## docs - - scope: - path: "_docs/en" - values: - layout: article - nav_key: docs - sidebar: - nav: docs-en - license: true - aside: - toc: true - show_edit_on_github: true - show_date: false - lightbox: true - - scope: - path: "_docs/zh" - values: - layout: article - nav_key: docs - sidebar: - nav: docs-zh - license: true - aside: - toc: true - lang: zh - show_edit_on_github: true - show_date: false - lightbox: true - - -## => Plugins -############################## -plugins: - # - jekyll-feed - - jekyll-paginate - # - jekyll-sitemap - - jemoji - -data_dir: /docs/_data diff --git a/docs/_config.yml b/docs/_config.yml deleted file mode 100644 index aef64743c82..00000000000 --- a/docs/_config.yml +++ /dev/null @@ -1,299 +0,0 @@ -# Welcome to Jekyll! -# -# This config file is meant for settings that affect your whole blog, values -# which you are expected to set up once and rarely need to edit after that. -# For technical reasons, this file is *NOT* reloaded automatically when you use -# 'jekyll serve'. If you change this file, please restart the server process. -# -# ,--------. ,--. ,--. ,--. -# '--. .--',---. \ `.' /,-' '-. -# | | | .-. : .' \ '-. .-' -# | | \ --. / .'. \ | | -# `--' `----''--' '--' `--' - -# config file for demo site, DELETE IT IF YOU WANT. - - -## => Site Settings -############################## -text_skin: default # "default" (default), "dark", "forest", "ocean", "chocolate", "orange" -highlight_theme: default # "default" (default), "tomorrow", "tomorrow-night", "tomorrow-night-eighties", "tomorrow-night-blue", "tomorrow-night-bright" -url : https://kitian616.github.io -baseurl : /jekyll-TeXt-theme -title : TeXt Theme -description: > - A super customizable Jekyll theme for personal site, team site, blog, project, documentation, etc. - - -## => Language and Timezone -############################## -lang: en # the language of your site, default as "en" -timezone: Asia/Shanghai - - -## => Author and Social -############################## -author: - type : organization # "person" (default), "organization" - name : TeXt - url : - avatar : /assets/apple-touch-icon.png - bio: > - TeXt is a super customizable Jekyll theme for personal site, team site, blog, project, documentation, etc. - Similar to iOS 11 style, it has large and prominent titles, round buttons and cards. - email : kitian616@outlook.com - facebook : - twitter : kitian616 - weibo : 234695683 - googleplus: 101827554735084402671 - telegram : - medium : - zhihu : - douban : - linkedin : - github : kitian616/jekyll-TeXt-theme - npm : - - -## => GitHub Repository (if the site is hosted by GitHub) -############################## -repository: kitian616/jekyll-TeXt-theme -repository_tree: master - - -## => Paths -############################## -paths: - root : # title link url, "/" (default) - home : /test/ # home layout url, "/" (default) - archive : # "/archive.html" (default) - rss : # "/feed.xml" (default) - - -## => Post -############################## -## excerpt -excerpt_separator: - -## license -license: CC-BY-4.0 # "CC-BY-4.0", "CC-BY-SA-4.0", "CC-BY-NC-4.0", "CC-BY-ND-4.0" - -## TOC -toc: - selectors: # "h1,h2,h3" (default) - - -## => Markdown Enhancements -############################## -## Mathjax -mathjax: true # false (default), true -mathjax_autoNumber: true # false (default), true - -## Mermaid -mermaid: true # false (default), true - -## Chart -chart: true # false (default), true - - -## => Paginate -############################## -paginate: 8 -paginate_path: /test/page:num # don't change this unless for special need - - -## => Sources -############################## -sources: # bootcdn (default), unpkg - - -## => Sharing -############################## -sharing: - provider: addthis # false (default), "addtoany", "addthis", "custom" - - ## AddThis - addthis: - id: ra-5be59ee2486770cb # AddThis pubid, e.g. ra-5xxxxxxxxxxx - - -## => Comments -############################## -comments: - provider: gitalk # false (default), "disqus", "gitalk", "valine", "custom" - # provider: valine - - ## Disqus - disqus: - shortname: # the Disqus shortname for the site - - ## Gitalk - # please refer to https://github.com/gitalk/gitalk for more info. - gitalk: - clientID : 143666b578a416f82175 - clientSecret: 1d1c0604a1a4bff9b59ab7f56724dc0e8b837775 - repository : gitalk-demo - owner : kitian616 - admin: - - kitian616 - - ## Valine - # please refer to https://valine.js.org/en/ for more info. - valine: - app_id : uAG3OhdcH8H4fxSqXLyBljA7-gzGzoHsz - app_key : Mzf5m9skSwYVWVXhGiYMNyXs - placeholder : # Prompt information - visitor : # false (default) - meta : # "[nick, mail, link]" (default) nickname, E-mail, Personal-site - - -## => Pageview -############################## -pageview: - provider: leancloud # false (default), "leancloud", "custom" - - ## Leancloud - leancloud: - app_id : uAG3OhdcH8H4fxSqXLyBljA7-gzGzoHsz - app_key : Mzf5m9skSwYVWVXhGiYMNyXs - app_class : TeXtDemo - - -## => Search -############################## -search: - provider: default # "default" (default), false, "google", "custom" - - ## Google Custom Search Engine - google: - custom_search_engine_id: # Google Custom Search Engine ID - - -## => Analytics -############################## -analytics: - provider: google # false (default), "google", "custom" - - ## Google Analytics - google: - tracking_id : UA-71907556-1 - anonymize_ip: false - - -## => Build -############################## -markdown : kramdown -highlighter : rouge -permalink : date - -exclude: - - CHANGELOG.md - - HOW_TO_RELEASE.md - - Gemfile - - Gemfile.lock - - LICENSE - - README-*.md - - README.md - - gulpfile.js - - jekyll-text-theme.gemspec - - package-lock.json - - package.json - # - /docs - - /node_modules - # - /screenshots - # - /test - - /vendor - - /_posts - - /index.html - -collections_dir: docs -collections: - docs: - output: true - sample_page: - output: true - sample_articles: - output: true - sample_languages: - output: true - -defaults: - ## home - - scope: - path: "test" - values: - articles: - excerpt_type: html - ## posts - - scope: - path: "" - type: posts - values: - layout: article - sharing: true - license: true - category: post - aside: - toc: true - show_edit_on_github: true - show_subscribe: true - pageview: true - # lightbox: true - ## samples - - scope: - path: "" - type: sample_page - values: - nav_key: samples - - scope: - path: "" - type: sample_articles - values: - nav_key: samples - show_date: false - - scope: - path: "" - type: sample_languages - values: - layout: article - nav_key: samples - show_date: false - ## docs - - scope: - path: "_docs/en" - values: - layout: article - nav_key: docs - sidebar: - nav: docs-en - license: true - aside: - toc: true - show_edit_on_github: true - show_date: false - # lightbox: true - - scope: - path: "_docs/zh" - values: - layout: article - nav_key: docs - sidebar: - nav: docs-zh - license: true - aside: - toc: true - lang: zh - show_edit_on_github: true - show_date: false - # lightbox: true - - -## => Plugins -############################## -plugins: - - jekyll-feed - - jekyll-paginate - - jekyll-sitemap - - jemoji - -data_dir: /docs/_data diff --git a/docs/_data/authors.yml b/docs/_data/authors.yml deleted file mode 100644 index 90e3e1bc603..00000000000 --- a/docs/_data/authors.yml +++ /dev/null @@ -1,17 +0,0 @@ -Tian Qi: - name: Tian Qi # your Name - url: https://kitian616.github.io - avatar: https://wx3.sinaimg.cn/large/73bd9e13ly1fjkqy66hl8j208c08c0td.jpg # your photo - bio: The Creator of TeXt. - email: kitian616@outlook.com - facebook : # "user_name" the last part of your profile url, e.g. https://www.facebook.com/user_name - twitter : kitian616 # "user_name" the last part of your profile url, e.g. https://twitter.com/user_name - weibo : 234695683 # "user_id" the last part of your profile url, e.g. https://www.weibo.com/user_id/profile?... - googleplus: 101827554735084402671 # "user_id" the last part of your profile url, e.g. https://plus.google.com/u/0/user_id - telegram : # "user_name" the last part of your profile url, e.g. https://t.me/user_name - medium : # "user_name" the last part of your profile url, e.g. https://medium.com/user_name - zhihu : # "user_name" the last part of your profile url, e.g. https://www.zhihu.com/people/user_name - douban : # "user_name" the last part of your profile url, e.g. https://www.douban.com/people/user_name - linkedin : # "user_name" the last part of your profile url, e.g. https://www.linkedin.com/in/user_name - github : kitian616 # "user_name" the last part of your profile url, e.g. https://github.com/user_name - npm : # "user_name" the last part of your profile url, e.g. https://www.npmjs.com/~user_name diff --git a/docs/_data/licenses.yml b/docs/_data/licenses.yml deleted file mode 100644 index 6729af56f6b..00000000000 --- a/docs/_data/licenses.yml +++ /dev/null @@ -1,16 +0,0 @@ -CC-BY-4.0: - name: Attribution 4.0 International - url: https://creativecommons.org/licenses/by/4.0/ - image: https://i.creativecommons.org/l/by/4.0/88x31.png -CC-BY-SA-4.0: - name: Attribution-ShareAlike 4.0 International - url: https://creativecommons.org/licenses/by-sa/4.0/ - image: https://i.creativecommons.org/l/by-sa/4.0/88x31.png -CC-BY-NC-4.0: - name: Attribution-NonCommercial 4.0 International - url: https://creativecommons.org/licenses/by-nc/4.0/ - image: https://i.creativecommons.org/l/by-nc/4.0/88x31.png -CC-BY-ND-4.0: - name: Attribution-NoDerivatives 4.0 International - url: https://creativecommons.org/licenses/by-nd/4.0/ - image: https://i.creativecommons.org/l/by-nd/4.0/88x31.png diff --git a/docs/_data/locale.yml b/docs/_data/locale.yml deleted file mode 100644 index c9c1abf09d9..00000000000 --- a/docs/_data/locale.yml +++ /dev/null @@ -1,170 +0,0 @@ -# @start locale config -## => English -######################## -en: &EN - SUBSCRIBE : "Subscribe" - READMORE : "Read more" - SEARCH : "Search" - CANCEL : "Cancel" - VIEWS : "views" - LAST_UPDATED : "Last updated" - PREVIOUS : "PREVIOUS" - NEXT : "NEXT" - ARTICLE_DATE_FORMAT : "%b %d, %Y" - ARTICLE_LIST_DATE_FORMAT: "%b %d" - STATISTICS : "[POST_COUNT] post articles, [PAGE_COUNT] pages." - LICENSE_ANNOUNCE : "This work is licensed under a [LICENSE] license." - POST_ON_GITHUB : "Edit on Github" - FOLLOW_ME : "Follow me on [NAME]." - FOLLOW_US : "Follow us on [NAME]." - EMAIL_ME : "Send me an Email." - EMAIL_US : "Send us an Email." - COPYRIGHT_DATES : "2021" - -en-GB: - <<: *EN -en-US: - <<: *EN -en-CA: - <<: *EN -en-AU: - <<: *EN - -## => Simplified Chinese -######################## -zh-Hans: &ZH_HANS - SUBSCRIBE : "订阅" - READMORE : "阅读更多" - SEARCH : "搜索" - CANCEL : "取消" - VIEWS : "阅读" - LAST_UPDATED : "更新于" - PREVIOUS : "上篇" - NEXT : "下篇" - ARTICLE_DATE_FORMAT : "%Y年 %m月%d日" - ARTICLE_LIST_DATE_FORMAT: "%m月%d日" - STATISTICS : "共计 [POST_COUNT] 篇文章,[PAGE_COUNT] 页。" - LICENSE_ANNOUNCE : "本文遵守 [LICENSE] 许可协议。" - POST_ON_GITHUB : "在 Github 上修改" - FOLLOW_ME : "在 [NAME] 上关注我。" - FOLLOW_US : "在 [NAME] 上关注我们。" - EMAIL_ME : "给我发邮件。" - EMAIL_US : "给我们发邮件。" - COPYRIGHT_DATES : "2021" - -zh: - <<: *ZH_HANS -zh-CN: - <<: *ZH_HANS -zh-SG: - <<: *ZH_HANS - -## => Traditional Chinese -######################## -zh-Hant: &ZH_HANT - SUBSCRIBE : "訂閱" - READMORE : "閱讀更多" - SEARCH : "搜索" - CANCEL : "取消" - VIEWS : "閱讀" - LAST_UPDATED : "更新於" - PREVIOUS : "上篇" - NEXT : "下篇" - ARTICLE_DATE_FORMAT : "%Y年 %m月%d日" - ARTICLE_LIST_DATE_FORMAT: "%m月%d日" - STATISTICS : "共計 [POST_COUNT] 篇文章,[PAGE_COUNT] 頁。" - LICENSE_ANNOUNCE : "本文遵守 [LICENSE] 許可協議。" - POST_ON_GITHUB : "在 Github 上修改" - FOLLOW_ME : "在 [NAME] 上關注我。" - FOLLOW_US : "在 [NAME] 上關注我們。" - EMAIL_ME : "給我發郵件。" - EMAIL_US : "給我們發郵件。" - COPYRIGHT_DATES : "2021" - -zh-TW: - <<: *ZH_HANT -zh-HK: - <<: *ZH_HANT - -## => Korean -######################## -ko: &KO - SUBSCRIBE : "구독하기" - READMORE : "더보기" - SEARCH : "검색" - CANCEL : "취소" - VIEWS : "조회" - LAST_UPDATED : "마지막 수정" - PREVIOUS : "이전" - NEXT : "다음" - ARTICLE_DATE_FORMAT : "%Y년 %m월 %d일" - ARTICLE_LIST_DATE_FORMAT: "%m월 %d일" - STATISTICS : "전체 글 [POST_COUNT]개, [PAGE_COUNT] 페이지" - LICENSE_ANNOUNCE : "이 글의 저작권은 [LICENSE] 라이센스를 따릅니다." - POST_ON_GITHUB : "Github에서 확인하기" - FOLLOW_ME : "[NAME]에서 팔로우하기" - FOLLOW_US : "[NAME]에서 팔로우하기" - EMAIL_ME : "이메일 보내기" - EMAIL_US : "이메일 보내기" - COPYRIGHT_DATES : "2021" - -ko-KR: - <<: *KO - -## => French -######################## -fr: &FR - SUBSCRIBE : "S'abonner" - READMORE : "Plus" - SEARCH : "Recherche" - CANCEL : "Annuler" - VIEWS : "vues" - LAST_UPDATED : "Dernière modification" - PREVIOUS : "PRÉCÉDENT" - NEXT : "SUIVANT" - ARTICLE_DATE_FORMAT : "%d %b, %Y" - ARTICLE_LIST_DATE_FORMAT: "%d %b" - STATISTICS : "[POST_COUNT] articles, [PAGE_COUNT] pages." - LICENSE_ANNOUNCE : "Ce travail est sous licence [LICENSE]." - POST_ON_GITHUB : "Modifier sur Github" - FOLLOW_ME : "Suivez-moi sur [NAME]." - FOLLOW_US : "Suivez-nous sur [NAME]." - EMAIL_ME : "Envoyez-moi un courriel." - EMAIL_US : "Envoyez-nous un courriel" - COPYRIGHT_DATES : "2021" - DONATE : "Faites un don de [NAME]." - -fr-BE: - <<: *FR -fr-CA: - <<: *FR -fr-CH: - <<: *FR -fr-FR: - <<: *FR -fr-LU: - <<: *FR - -## => Turkish -######################## -tr: &TR - SUBSCRIBE : "Takip et" - READMORE : "Devamını Oku" - SEARCH : "İçerik Ara" - CANCEL : "İptal" - VIEWS : "gösterim" - LAST_UPDATED : "Son güncellenme" - PREVIOUS : "ÖNCEKİ" - NEXT : "SONRAKİ" - ARTICLE_DATE_FORMAT : "%d %b, %Y" - ARTICLE_LIST_DATE_FORMAT: "%d %b" - STATISTICS : "Toplam [POST_COUNT] adet gönderim ve [PAGE_COUNT] adet sayfa bulunuyor." - LICENSE_ANNOUNCE : "Bu içerik [LICENSE] ile lisanslanmıştır." - POST_ON_GITHUB : "Github üzerinde düzenle" - FOLLOW_ME : "Beni [NAME] üzerinden takip et." - FOLLOW_US : "Bizi [NAME] üzerinden takip edin." - EMAIL_ME : "Bana email ile ulaşın." - EMAIL_US : "Bize email ile ulaşın." - COPYRIGHT_DATES : "2021" - -# @end locale config diff --git a/docs/_data/navigation.yml b/docs/_data/navigation.yml deleted file mode 100644 index 2d5bca79d41..00000000000 --- a/docs/_data/navigation.yml +++ /dev/null @@ -1,142 +0,0 @@ -header: - - title: Home - url: /test/ - - title: Docs - url: /docs/en/quick-start - key: docs - - title: Samples - url: /samples.html - key: samples - - title: Archive - url: /archive.html - - title: About - url: /about.html - - title: GitHub - url: https://github.com/kitian616/jekyll-TeXt-theme - - -docs-en: - - title: Start - children: - - title: Quick Start - url: /docs/en/quick-start - - title: Structure - url: /docs/en/structure - - title: Update from 1.x to 2.x - url: /docs/en/update-from-1-to-2 - - title: Customization - children: - - title: Configuration - url: /docs/en/configuration - - title: Navigation - url: /docs/en/navigation - - title: Layouts - url: /docs/en/layouts - - title: Logo and Favicon - url: /docs/en/logo-and-favicon - - title: Authors - url: /docs/en/authors - - title: Internationalization - url: /docs/en/i18n - - title: Content - children: - - title: Writing Posts - url: /docs/en/writing-posts - - title: Additional Styles - url: /docs/en/additional-styles - - title: Extensions - url: /docs/en/extensions - - title: Markdown Enhancements - url: /docs/en/markdown-enhancements - - title: Extra - children: - - title: Spacing - url: /docs/en/spacing - - title: Grid - url: /docs/en/grid - - title: Icons - url: /docs/en/icons - - title: Image - url: /docs/en/image - - title: Button - url: /docs/en/button - - title: Item - url: /docs/en/item - - title: Card - url: /docs/en/card - - title: Hero - url: /docs/en/hero - - title: Swiper - url: /docs/en/swiper - - title: Languages - children: - - title: 中文 - url: /docs/zh/quick-start - - -docs-zh: - - title: 开始 - children: - - title: 快速开始 - url: /docs/zh/quick-start - - title: 从 1.x 升级到 2.x - url: /docs/zh/update-from-1-to-2 - - title: 定制 - children: - - title: 配置 - url: /docs/zh/configuration - - title: 导航栏 - url: /docs/zh/navigation - - title: 布局 - url: /docs/zh/layouts - - title: Logo 和 Favicon - url: /docs/zh/logo-and-favicon - - title: 作者 - url: /docs/zh/authors - - title: 国际化 - url: /docs/zh/i18n - - title: 内容 - children: - - title: 撰写博客 - url: /docs/zh/writing-posts - - title: 附加样式 - url: /docs/zh/additional-styles - - title: 扩展 - url: /docs/zh/extensions - - title: Markdown 增强 - url: /docs/zh/markdown-enhancements - - title: 其他语言 - children: - - title: English - url: /docs/en/quick-start - -layouts: - - title: Layouts - children: - - title: Single - url: /page/single.html - - title: Aside - url: /page/aside.html - - title: Sidebar - url: /page/sidebar.html - - - title: Sidebar (Aside) - url: /page/sidebar-aside.html - - title: Article Header Overlay Background Fill - url: /page/article-header-overlay-background-fill.html - - title: Article Header Overlay Background Image - url: /page/article-header-overlay-background-image.html - - - title: Article Header Image - url: /page/article-header-cover-image.html - - title: Article Header Overlay Background Image (Customized Header Background) - url: /page/article-header-overlay-background-image-header-background.html - - title: Article Header Image (Customized Header Background) - url: /page/article-header-cover-image-header-background.html - - - title: Article Header Overlay Background Fill (Immersive + Translucent Header) - url: /page/article-header-overlay-background-fill-immersive-translucent-header.html - - title: Article Header Overlay Background Image (Immersive + Translucent Header) - url: /page/article-header-overlay-background-image-immersive-translucent-header.html - - title: Article Header Image (Immersive + Translucent Header) - url: /page/article-header-cover-image-immersive-translucent-header.html diff --git a/docs/_data/variables.yml b/docs/_data/variables.yml deleted file mode 100644 index 43aa3aaf4fe..00000000000 --- a/docs/_data/variables.yml +++ /dev/null @@ -1,64 +0,0 @@ -default: - text_skin: default - highlight_theme: default - lang: en - paths: - root: / - home: / - archive: /archive.html - rss: /feed.xml - mathjax: false - mathjax_autoNumber: false - mermaid: false - chart: false - toc: - selectors: 'h1,h2,h3' - sources: bootcdn - - page: - mode: normal - type: webpage - article_header: - align: left - theme: light - articles: - show_cover: true - show_excerpt: false - show_readmore: false - show_info: false - show_title: true - show_edit_on_github: false - show_date: true - show_tags: true - show_author_profile: false - show_subscribe: false - full_width: false - sharing: false - comment: true - license: false - pageview: false - search: default - -sources: - bootcdn: - font_awesome: 'https://cdn.bootcdn.net/ajax/libs/font-awesome/5.15.1/css/all.css' - jquery: 'https://cdn.bootcss.com/jquery/3.1.1/jquery.min.js' - leancloud_js_sdk: '//cdn.jsdelivr.net/npm/leancloud-storage@3.13.2/dist/av-min.js' - chart: 'https://cdn.bootcss.com/Chart.js/2.7.2/Chart.bundle.min.js' - gitalk: - js: 'https://cdn.bootcss.com/gitalk/1.2.2/gitalk.min.js' - css: 'https://cdn.bootcss.com/gitalk/1.2.2/gitalk.min.css' - valine: 'https://unpkg.com/valine/dist/Valine.min.js' # bootcdn not available - mathjax: 'https://cdn.bootcss.com/mathjax/2.7.4/MathJax.js?config=TeX-MML-AM_CHTML' - mermaid: 'https://cdn.bootcss.com/mermaid/8.0.0-rc.8/mermaid.min.js' - unpkg: - font_awesome: 'https://use.fontawesome.com/releases/v5.15.1/css/all.css' - jquery: 'https://unpkg.com/jquery@3.3.1/dist/jquery.min.js' - leancloud_js_sdk: '//cdn.jsdelivr.net/npm/leancloud-storage@3.13.2/dist/av-min.js' - chart: 'https://unpkg.com/chart.js@2.7.2/dist/Chart.min.js' - gitalk: - js: 'https://unpkg.com/gitalk@1.2.2/dist/gitalk.min.js' - css: 'https://unpkg.com/gitalk@1.2.2/dist/gitalk.css' - valine: 'https//unpkg.com/valine/dist/Valine.min.js' - mathjax: 'https://unpkg.com/mathjax@2.7.4/unpacked/MathJax.js?config=TeX-MML-AM_CHTML' - mermaid: 'https://unpkg.com/mermaid@8.0.0-rc.8/dist/mermaid.min.js' diff --git a/docs/_docs/en/1.1-quick-start.md b/docs/_docs/en/1.1-quick-start.md deleted file mode 100644 index e9874da3d7b..00000000000 --- a/docs/_docs/en/1.1-quick-start.md +++ /dev/null @@ -1,143 +0,0 @@ ---- -title: Quick Start -permalink: /docs/en/quick-start -key: docs-quick-start ---- - -TeXt Theme is 100% compatible with GitHub Pages and it has been developed as a [gem-based themes](https://jekyllrb.com/docs/themes/) for easier use. - -In this document, you will learn how to **install the theme**, **setup your site**, **local preview** for development, **build** and **publish**. - - - -```mermaid -graph LR; - A0(Installing TeXt) - B0(Common Method) - B1[Ruby Gem Method] - C0[Fork this repo] - C1[Clone from GitHub] - C2[Download] - D0[Setup Your Site] - E0(Installing Development Environment) - F0[Installing Directly] - F1[Docker] - A0-->B0; - A0-->B1; - B0-->C0; - B0-->C1; - B0-->C2; - B1-->D0; - C1-->E0 - C2-->E0 - D0-->E0 - E0-->F0 - E0-->F1 -``` - -## Installing the Theme - -### Common Method - -To install it with common method, all you need to do is copying all the theme files to your project. There are several ways to do so: - -1. Clone [jekyll-TeXt-theme](https://github.com/kitian616/jekyll-TeXt-theme) from github. - - **Clone with HTTPS:** - - ```bash - git clone https://github.com/kitian616/jekyll-TeXt-theme.git - ``` - - **Clone with SSH:** - - ```bash - git clone git@github.com:kitian616/jekyll-TeXt-theme.git - ``` - -2. Download and unzip the file to your Jekyll site directory. - - Download TeXt Theme - -3. If you host your site on GitHub Pages, you can just fork [jekyll-TeXt-theme](https://github.com/kitian616/jekyll-TeXt-theme), then rename the repository to **USERNAME.github.io** — replacing **USERNAME** with your GitHub username. - - ![Fork](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/github-fork.jpg) - - ![Rename](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/github-rename-repo.jpg) - -### Ruby Gem Method - -1. Add this line to your Jekyll site’s *Gemfile*: - - ```ruby - gem "jekyll-text-theme" - ``` - -2. Add this line to your Jekyll site’s *_config.yml* file: - - ```yaml - theme: jekyll-text-theme - ``` - -## Setup Your Site - -If you install the theme with common method, you can go straight to the next step. But **if you install the theme with ruby gem method, you have to do some extra jobs**. - -With gem-based themes, some of the site’s directories (such as the *assets*, *_layouts*, *_includes* and *_sass* directories) are stored in the theme’s gem, hidden from your immediate view. You need add some files in your Jekyll site directory: - -```bash -├── 404.html -├── Gemfile -├── _config.yml -├── _data -│   └── locale.yml -├── _posts -│   └── ... -├── about.md -├── archive.html -└── index.html -``` - -You can refer to the [/test folder](https://github.com/kitian616/jekyll-TeXt-theme/tree/master/test), this is a example with gem-based themes. - -## Installing Development Environment - -If you want to run them them locally, you need first install Ruby and Jekyll, see [Installation](https://jekyllrb.com/docs/installation/) for details. - -After that, run bundler to install the dependencies: - -```bash -bundle install --path vendor/bundle -``` - -And also, TeXt offer [Docker](https://www.docker.com/) support for development and public, this make it easier to setup environment. - -![Docker](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/docker.jpg){:width="400px"} - -All you need todo is these 3 steps: - -1. [Install Docker](https://docs.docker.com/install/). - -2. Generate *Gemfile.lock*: - - ```bash - docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app ruby:2.6 bundle install - ``` - -3. Build Docker image: - - ```bash - docker-compose -f ./docker/docker-compose.build-image.yml build - ``` - -## Local Preview - -Run `bundle exec jekyll serve` to start the development server, then you can visit [http://localhost:4000/](http://localhost:4000/) to preview your site. - -For Docker, run `docker-compose -f ./docker/docker-compose.default.yml up` to start the development server. - -## Build and Publish - -If you host your site on GitHub Pages, just push the source to the master branch of your USERNAME.github.io repository, GitHub would build automatically. You can visit your site on **https://USERNAME.github.io** several minutes later. - -If you host your site on your server, you need first run `JEKYLL_ENV=production bundle exec jekyll build` to generated your site, then update the files in *_site* folder to your server. diff --git a/docs/_docs/en/1.2-structure.md b/docs/_docs/en/1.2-structure.md deleted file mode 100644 index 45a6554c98c..00000000000 --- a/docs/_docs/en/1.2-structure.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: Structure -permalink: /docs/en/structure -key: docs-structure ---- - -```bash -├── _data -│ ├── locale.yml -│ ├── navigation.yml -│ └── variables.yml -├── _includes -│ ├── analytics-providers -│ ├── aside -│ ├── comments-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 -``` diff --git a/docs/_docs/en/1.7-update-from-1-to-2.md b/docs/_docs/en/1.7-update-from-1-to-2.md deleted file mode 100644 index e56677165f3..00000000000 --- a/docs/_docs/en/1.7-update-from-1-to-2.md +++ /dev/null @@ -1,215 +0,0 @@ ---- -title: Update from 1.x to 2.x -permalink: /docs/en/update-from-1-to-2 -key: docs-update-from-1-to-2 ---- - -![TeXt 2](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/TeXt-version-2.jpg) - -After several months effort, **TeXt 2** has finally released. the new version has lots of refactors and changes, which leads to some configuration incompatibilities. Hope this document will help you with your upgrade. - -## Skin - -`text_color_theme` in *_config.yml* rename to `text_skin`. - -1.x: - -```yml -text_color_theme: forest -``` - -```yml -text_skin: forest -``` - -## Layout - -### Article Layout - -Post Layout and Page Layout rename to Article Layout. - -1.x: - -```yml -layout: post -``` - -```yml -layout: page -``` - -2.x: - -```yml -layout: article -``` - -Since TOC, Edit on Github button, license and pageview are disabled by default on the new Article Layout, in order to keep same whit the former version, you can add these settings in the Front Matter: - -```yml -license: true -aside: - toc: true -show_edit_on_github: true -pageview: true -``` - -You can also use [Front Matter defaults](https://jekyllrb.com/docs/configuration/#front-matter-defaults) to specify configuration for all the posts of your site: - -```yml -defaults: - - scope: - path: "" - type: posts - values: - layout: article - license: true - aside: - toc: true - show_edit_on_github: true - pageview: true -``` - -### Archive Layout - -All Layout rename to Archive Layout. - -1.x: - -```yml -layout: all -``` - -2.x: - -```yml -layout: archive -``` - -## Paths - -In order to maintain consistency with the layout naming, TeXt 2 renamed *all.html* to *archive.html*. `base` and `all` variables under `paths` in *_config.yml* has renamed to `root` and `archive`. - -1.x: - -```yml -paths: - base : /blog - all : /blog/all.html - rss : /feed.xml -``` - -2.x: - -```yml -paths: - root : /blog - home : /blog - archive : /blog/archive.html - rss : /feed.xml -``` - -## License - -You need to specify `license` in *_config.yml* to enable license, which default to `false`: - -```yml -license: CC-BY-4.0 -``` - -## Comments - -There are some changes for configuration of comments, pageview and analytics in TeXt 2. which mainly add a `provider` attribute and change providers into corresponding sub-configuration items. - -1.x: - -```yml -disqus: - shortname: kitian616-github-io -``` - -2.x: - -```yml -comments: - provider: disqus - disqus: - shortname: kitian616-github-io -``` - -## Pageview - -1.x: - -```yml -leancloud: - app_id: uAG3OhdcH8H4fxSqXLyBljA7-gzGzoHsz - app_key: Mzf5m9skSwYVWVXhGiYMNyXs - app_class: ThomasBlog -``` - -2.x: - -```yml -pageview: - provider: leancloud - leancloud: - app_id: uAG3OhdcH8H4fxSqXLyBljA7-gzGzoHsz - app_key: Mzf5m9skSwYVWVXhGiYMNyXs - app_class: ThomasBlog -``` - -## Analytics - -1.x: - -```yml -ga_tracking_id: UA-71907556-1 -``` -2.x: - -```yml -analytics: - provider: google - google: - tracking_id: UA-71907556-1 -``` - -## Logo and Favicon - -The location of the default logo has changed。the old icon generation tool has been removed,TeXt 2 recommend [RealFaviconGenerator](https://realfavicongenerator.net/) for generating favicon. - -## Navigator - -The navigation configuration at the top right of the site has been moved to *_data/navigation.yml* and the entire navigation is freely customizable in the new version. - -1.x: - -```yml -nav_lists: - - titles: - en: About - zh: 关于 - zh-Hans: 关于 - zh-Hant: 關於 - url: /blog/about.html -``` - -2.x: - -```yml -## _data/navigation.yml -header: - - titles: - en: Archive - zh: 归档 - zh-Hans: 归档 - zh-Hant: 歸檔 - url: /blog/archive.html - - titles: - en: About - zh: 关于 - zh-Hans: 关于 - zh-Hant: 關於 - url: /blog/about.html -``` diff --git a/docs/_docs/en/2.1-configuration.md b/docs/_docs/en/2.1-configuration.md deleted file mode 100644 index c04bbbed6e1..00000000000 --- a/docs/_docs/en/2.1-configuration.md +++ /dev/null @@ -1,365 +0,0 @@ ---- -title: Configuration -permalink: /docs/en/configuration -key: docs-configuration ---- - -Jekyll allows you to concoct your sites in any way you can dream up, and it’s thanks to the powerful and flexible configuration options that this is possible. These options can either be specified in a *_config.yml* file placed in your site’s root directory, or can be specified as flags for the jekyll executable in the terminal. - -For technical reasons, *_config.yml* is **NOT** reloaded automatically when you use `jekyll serve`. If you change this file, please restart the server process. -{:.warning} - - - -## Site Settings - -### Theme - -If you’re using the Ruby gem version of the theme you’ll need this line to activate it: - -```yaml -theme: jekyll-text-theme -``` - -### Skin - -TeXt has 6 built-in skins, you can also set up your own skin. - -| `default` | `dark` | `forest` | -| --- | --- | --- | -| ![Default](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_default.jpg) | ![Dark](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_dark.jpg) | ![Forest](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_forest.jpg) | - -| `ocean` | `chocolate` | `orange` | -| --- | --- | --- | -| ![Ocean](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_ocean.jpg) | ![Chocolate](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_chocolate.jpg) | ![Orange](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_orange.jpg) | - -```yaml -text_skin: default # "default" (default), "dark", "forest", "ocean", "chocolate", "orange" -``` - -### Highlight Theme - -TeXt use [Tomorrow](https://github.com/chriskempson/tomorrow-theme) as the highlight theme. - -| `tomorrow` | `tomorrow-night` | `tomorrow-night-eighties` | `tomorrow-night-blue` | `tomorrow-night-bright` | -| --- | --- | --- | --- | --- | -| ![Tomorrow](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow.png) | ![Tomorrow Night](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night.png) | ![Tomorrow Night Eighties](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night-eighties.png) | ![Tomorrow Night Blue](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night-blue.png) | ![Tomorrow Night Bright](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night-bright.png) | - -Every skin has a default highlight theme, but you can overwrite it by `highlight_theme` variable. - -```yaml -highlight_theme: default # "default" (default), "tomorrow", "tomorrow-night", "tomorrow-night-eighties", "tomorrow-night-blue", "tomorrow-night-bright" -``` - -### URL - -The base hostname and protocol for your site. if you are hosting the site on Github Pages this will be set as the GitHub Pages domain (cname or user domain)[^gitHub_metadata]. For example, https://kitian616.github.io or https://kitian616.github.io if there is cname file. - -Jekyll 3.3 overrides this value with url: http://localhost:4000 when running `jekyll serve` in a development environment[^jekyll_site_variables]. You can specifying Jekyll environment[^jekyll_specifying_environment] to production environment by `JEKYLL_ENV=production` to avoid this behavior. -{:.warning} - -[^gitHub_metadata]: [GitHub Metadata, a.k.a. site.github](https://github.com/jekyll/github-metadata#what-it-does) - -[^jekyll_site_variables]: [Variables#Site Variables](https://jekyllrb.com/docs/variables/#site-variables) - -[^jekyll_specifying_environment]: [Configuration#Specifying a Jekyll environment at build timePermalink](https://jekyllrb.com/docs/configuration/#specifying-a-jekyll-environment-at-build-time) - -### Base URL - -The base URL for your site, default to '/'. If you are hosting the site on Github Pages this will be set as the project name for project pages if none is set[^gitHub_metadata]. - -### Title - -The name of your site. - -```yaml -title: "My Awesome Website" -``` - -### Description - -Use some words to describe your site. - -```yaml -description: > # this means to ignore newlines until "nav_lists:" - A website with awesome stories. -``` - -## Language and Timezone - -### Language - -The language of your site, you can override it with different ones on specific posts, pages by YAML Front Matter[^font_matter], learn more at [Internationalization](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/i18n). - -```yaml -lang: en -``` - -[^font_matter]: [Front Matter](https://jekyllrb.com/docs/frontmatter/) - -### Timezone - -Set the time zone for site generation. This sets the TZ environment variable, which Ruby uses to handle time and date creation and manipulation. A list of all available values can be found [HERE](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). - -When serving on a local machine, the default time zone is set by your operating system. But when served on a remote host/server, the default time zone depends on the server’s setting or location.[^jekyll_global_configuration] - -[^jekyll_global_configuration]: [Configuration#Global Configuration](https://jekyllrb.com/docs/configuration/#global-configuration) - -```yaml -timezone: Asia/Shanghai -``` - -## Author and Social - -Information of the site author (a person, a team or an organization). - -### Type - -Type of the site author, a person or an organization, used by [schema.org](https://schema.org/) markup, default as "person". - -### Name - -Used to assign a site author. - -### Avatar - -Photo or Logo for site author - -### Bio - -Short introduction for site author - -### Social - -Username or id of site author’s social networks. - -TeXt supports Email, Facebook, Twitter, Weibo, Google Plus, Telegram, Medium, Zhihu, Douban, Linkedin, Github and Npm, more to be added. - -Depending on your settings, the social network buttons would show on every pages' footer. - -## GitHub repository - -Setting for [GitHub Metadata](https://github.com/jekyll/github-metadata) plugin, you can refer to [HERE](https://github.com/jekyll/github-metadata/blob/master/docs/configuration.md#configuration) for more info. - -In order for jekyll-github-metadata to know what metadata to fetch it must be able to determine the repository NWO to ask GitHub about. - -“NWO” stands for “name with owner.” It is GitHub lingo for the username of the owner of the repository plus a forward slash plus the name of the repository, e.g. kitian616/jekyll-TeXt-theme, where “kitian616” is the owner and “jekyll-TeXt-theme” is the repository name. - -```yaml -repository: user_name/repo_name -``` - -## Post - -### Excerpt - -Each post automatically takes the first block of text, from the beginning of the content to the first occurrence of `excerpt_separator`, and sets it as the post’s excerpt. - -The post’s excerpt is show in the articles list in the home layout. There are two excerpt types, text type and html type. - -| Type Name | Description | -| --- | --- | -| **text** | the excerpt are plain text that filters out all non-text elements (such as title, link, list, table, picture, etc.) and only show 350 characters most. | -| **html** | the excerpt are HTML document just like the content of the article, This will show all the content by default, except adding `` in the article Markdown file, You can find more info [HERE](https://jekyllrb.com/docs/posts/#post-excerpts). | - -```yaml -excerpt_separator: -excerpt_type: text # text (default), html -``` - -This setting has been **MOVED** to the YAML Front Matter of Articles and home layout **Since Version 2.2.0**, You can find more information [HERE](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/layouts#articles-layout). -{:.error} - -### License - -| Name | License | Image | -| --- | --- | --- | -| CC-BY-4.0 | [Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/) | ![CC-BY-4.0](https://i.creativecommons.org/l/by/4.0/88x31.png) | -| CC-BY-SA-4.0 | [Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) | ![CC-BY-SA-4.0](https://i.creativecommons.org/l/by-sa/4.0/88x31.png) | -| CC-BY-NC-4.0 | [Attribution-NonCommercial 4.0 International](https://creativecommons.org/licenses/by-nc/4.0/) | ![CC-BY-NC-4.0](https://i.creativecommons.org/l/by-nc/4.0/88x31.png) | -| CC-BY-ND-4.0 | [Attribution-NoDerivatives 4.0 International](https://creativecommons.org/licenses/by-nd/4.0/) | ![CC-BY-ND-4.0](https://i.creativecommons.org/l/by-nd/4.0/88x31.png) | - -```yaml -license: CC-BY-NC-4.0 -``` - -### TOC - -Elements to use as headings. - -```yaml -toc: - selectors: "h1,h2,h3" -``` - -### Markdown Enhancements - -To improve the user experience for both reading and writing posts, TeXt made some enhancements for markdown. By default, all the enhancements for markdown is enabled. you need set the settings to true to enable them: - -```yaml -# Mathjax -mathjax: true -mathjax_autoNumber: true - -# Mermaid -mermaid: true - -# Chart -chart: true -``` - -And also you can override it with different ones on specific posts, pages by YAML Front Matter[^font_matter]. - -Check [Writing Posts](/) for detail usage. - -## Paginate - -Settings for [Jekyll Paginate](https://github.com/jekyll/jekyll-paginate) plugin. to enable pagination for posts on your blog, add a line to the *_config.yml* file that specifies how many items should be displayed per page: - -```yaml -paginate: 8 -``` - -The number should be the maximum number of posts you’d like to be displayed per-page in the generated site. - -You may also specify the destination of the pagination pages: - -```yaml -paginate_path: /page:num # don't change this unless for special need -``` - -## Sources - -TeXt use CDN[^cdn] for speed improvements, You can choose [BootCDN](http://www.bootcdn.cn/) (default) or [unpkg](https://unpkg.com/) as your site’s CDN provider, both of them are open source and free. - -If your website is mainly for Chinese, just use BootCDN. - -```yaml -sources: bootcdn # bootcdn (default), unpkg -``` - -[^cdn]: [Content delivery network](https://en.wikipedia.org/wiki/Content_delivery_network) - -## Sharing - -| Name | Sharing Provider | Minimum Version | -| --- | --- | --- | -| **addtoany** | [AddToAny](https://www.addtoany.com/) | 2.2.2 | -| **addthis** | [AddThis](https://www.addthis.com/) | 2.2.3 | -| **custom** | | | - -### AddToAny - -```yaml -comments: - provider: addtoany -``` - -### AddThis - -```yaml -comments: - provider: addthis - addthis: - id: "your-addthis-pubid" -``` - -You NEED set `sharing` variable as `true` in the page’s YAML Front Matter to enable sharing on this page, you can find more information [HERE](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/layouts#article-layout). -{:.warning} - -## Comments - -| Name | Comments Provider | Minimum Version | -| --- | --- | --- | -| **disqus** | [Disqus](https://disqus.com/) | | -| **gitalk** | [Gitalk](https://github.com/gitalk/gitalk/) | | -| **valine** | [Valine](https://valine.js.org/en/) | 2.2.4 | -| **custom** | | | - -### Disqus - -To use Disqus you’ll need to create an account and [shortname](https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname-). Once you have both update *_config.yml* to: - -```yaml -comments: - provider: disqus - disqus: - shortname: "your-disqus-shortname" -``` - -### Gitalk - -To use Gitalk you need a GitHub application, if you don't have one, [Click here to register](https://github.com/settings/applications/new) a new one. and then update *_config.yml* to: - -```yaml -comments: - provider: gitalk - gitalk: - clientID : "github-application-client-id" - clientSecret: "github-application-client-secret" - repository : "github-repo" - owner : "github-repo-owner" - admin: # Github repo owner and collaborators, only these guys can initialize github issues, IT IS A LIST. - - "your-github-id" - - "the-other-admin-github-id" -``` - -### Valine - -To use Valine you need a [LeanCloud](https://leancloud.cn/) application, see [LeanCloud](#leancloud) for more information. - -```yaml -comments: - provider: valine - valine: - app_id : "your-leanCloud-app-id" - app_key : "your-leanCloud-app-key" -``` - -For all the above comments systems, you NEED set `key` variable in the page’s YAML Front Matter to enable comments on this page, you can find more information [HERE](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/layouts#page-layout). -{:.warning} - -## Pageview - -| Name | Pageview Provider | -| --- | --- | -| **leancloud** | [LeanCloud](https://leancloud.cn/) | -| **custom** | | - -### LeanCloud - -This use [LeanCloud](https://leancloud.cn/) as back-end service. You need create an application on the dashboard, and config the app’s id, key and class name. - -The detail guide of LeanCloud will find in [Chinese document](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/configuration#leancloud) since LeanCloud haven't provide an English-language edition. -{:.info} - -```yaml -pageview: - provider: leancloud - leancloud: - app_id : "your-leanCloud-app-id" - app_key : "your-leanCloud-app-key" - app_class : "your-leanCloud-app-class" -``` - -For all the above pageview statistics, you **NEED** set `key` variable in the page’s YAML Front Matter to enable statistics on this page, you can find more information [HERE](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/layouts#page-layout). -{:.warning} - -## Analytics - -| Name | Analytics Provider | -| --- | --- | -| **google** | [Google Analytics](https://analytics.google.com/) | -| **custom** | | - -### Google Analytics - -In order to use Google Analytics, set `tracking_id` to your Google Analytics tracking code. You can also set `anonymize_ip` to `true` to anonymize IP tracking for analytic. - -```yaml -analytics: - provider: google - google: - tracking_id: "your-google-analytics-tracking-code" - anonymize_ip: true -``` diff --git a/docs/_docs/en/2.2-navigation.md b/docs/_docs/en/2.2-navigation.md deleted file mode 100644 index 2cfa0ea3315..00000000000 --- a/docs/_docs/en/2.2-navigation.md +++ /dev/null @@ -1,66 +0,0 @@ ---- -title: Navigation -permalink: /docs/en/navigation -key: docs-navigation ---- - -There are two types of navigation in TeXt: **Header Navigation** and **Sidebar Navigation**, both are defined in *data/navigation.yml*. - - - -## Header Navigation - -Header navigation is defined under the `header` key in *data/navigation.yml*, it is an array of title(s) and url: - -```yaml -header: - - title: Docs - url: /docs/en/quick-start - - title: 文档 - url: /docs/zh/quick-start - - titles: - en: Archive - zh: 归档 - zh-Hans: 归档 - zh-Hant: 歸檔 - url: /archive.html - - titles: - en: About - zh: 关于 - zh-Hans: 关于 - zh-Hant: 關於 - url: /about.html - - title: GitHub - url: https://github.com/kitian616/jekyll-TeXt-theme -``` - -You can use `titles` for a multi-language name. - -## Sidebar Navigation - -To use sidebar navigation, you should first define a navigation in *data/navigation.yml*. - -```yaml -docs-en: - - title: Start - children: - - title: Quick Start - url: /docs/en/quick-start - - title: Structure - url: /docs/en/structure - ... - - title: Customization - children: - - title: Configuration - url: /docs/en/configuration - - title: Navigation - url: /docs/en/navigation - ... -``` - -And then use the defined navigation as article’s sidebar navigation in the Front Matter: - -```yaml -sidebar: - nav: docs-en -``` diff --git a/docs/_docs/en/2.3-layouts.md b/docs/_docs/en/2.3-layouts.md deleted file mode 100644 index 4e0522a1736..00000000000 --- a/docs/_docs/en/2.3-layouts.md +++ /dev/null @@ -1,178 +0,0 @@ ---- -title: Layout -permalink: /docs/en/layouts -key: docs-layouts ---- - -```mermaid -graph TB; - NONE[none] - BASE[base] - PAGE[page] - ARTICLE[article] - ARTICLES[articles] - HOME[home] - ARCHIVE[archive] - LANDING[landing] - 404[404] - NONE-->BASE; - BASE-->PAGE; - PAGE-->ARTICLE; - PAGE-->ARTICLES; - ARTICLES-->HOME; - PAGE-->ARCHIVE; - PAGE-->LANDING; - PAGE-->404; -``` - -## Base Layout - -Base on None. - -## Page Layout - -Base on Base Layout. - -| Variable | Option Values | Description | Minimum Version | -| --- | --- | --- | --- | -| **mode** | normal (default), immersive | mode of the page. | 2.2.0 | -| **type** | webpage (default), article | type of the page, used by [schema.org](https://schema.org/) markup. | | -| **key** | `!!str` | Unique key for the post, required by Comments and Pageview. begin with a letter (`[A-Za-z]`) and may be followed by any number of letters, digits (`[0-9]`), hyphens (`-`), underscores (`_`), colons (`:`), and periods (`.`). | | -| **lang** | en (default), zh, zh-Hans, zh-Hant | Language of this page. | | -| **author** | `!!map` | Assign one of the authors in *authors.yml* to a post or page, see [Authors](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/authors) for detail. | 2.2.0 | -| **show_title** | true (default), false | Set as `false` to hide title on this page. | | -| **show_edit_on_github** | true, false (default) | Set as `true` to show “Edit on Github” button. you need set `repository` and `repository_tree` in *_config.yml* first. | | -| **show_date** | true (default), false | Set as `false` to hide date on this page. | 2.2.0 | -| **show_tags** | true (default), false | Set as `false` to hide tags on this page. | 2.2.0 | -| **full_width** | true, false (default) | Set as `true` to make main full width on this page. | | -| **pageview** | true, false (default) | Set as `true` to enable pageview on this page. | 2.2.0 | -| **comment** | true (default), false | Set as `false` to disable comment on this page. | | -| **mathjax** | true, false | Set as `true` to enable Mathjax on this page. | | -| **mathjax_autoNumber** | true, false | Set as `true` to enable Mathjax autoNumber on this page. | | -| **mermaid** | true, false | Set as `true` to enable Mermaid on this page. | | -| **chart** | true, false | Set as `true` to enable Chart on this page. | | -| **cover** | `!!str` | Url of the cover image. | 2.2.0 | -| **header** | false, `!!map` | Set as `false` to hide header on this page. | 2.2.0 | -| **article_header**| `!!map` | | 2.2.0 | -| **aside** | `!!map` | | | -| **sidebar** | `!!map` | | | -| **footer** | false | Set as `false` to hide footer on this page. | 2.2.3 | -| **lightbox** | true, false | Set as `true` to enable lightbox (modal image gallery) for large images on this page, you can set `lightbox-ignore` class name to ignore the certain image. | 2.2.4 | - -### header - -| Variable | Option Values | Description | -| --- | --- | --- | -| **theme** | light, dark | | -| **background** | `!!str` | Available when specified theme. | - -### article_header - -| Variable | Option Values | Description | -| --- | --- | --- | -| **type** | overlay, cover | | -| **align** | left (default), center| | -| **theme** | light (default), dark | | -| **background_color** | `!!str` | Available when type is `overlay`. If set to a dark color, you need set theme as 'dark'. | -| **background_image** | `!!map` | Available when type is `overlay`, set as `false` can overwrite `cover` to disable background image. | -| **image** | `!!map` | Available when type is `cover`. | -| **actions** | `!!seq` | | - -### article_header.background_image - -| Variable | Option Values | Description | -| --- | --- | --- | -| **gradient** | `!!str` | | -| **src** | `!!str` | Default to `cover` | - -### article_header.image - -| Variable | Option Values | Description | -| --- | --- | --- | -| **src** | `!!str` | | - -### aside - -| Variable | Option Values | Description | -| --- | --- | --- | -| **toc** | true, false | Set as `true` to enable TOC on this page's aside. | - -### sidebar - -| Variable | Option Values | Description | -| --- | --- | --- | -| **nav** | `!!str` | | - -## Article Layout - -Base on Page Layout. - -| Variable | Option Values | Description | Minimum Version | -| --- | --- | --- | --- | -| **modify_date** | `!!str` | The last modified date of this article, the date is modified in the format `YYYY-MM-DD HH:MM:SS +/-TTTT`; hours, minutes, seconds, and timezone offset are optional. just like `date` variable. | | -| **sharing** | true, false (default) | Set as `true` to enable Sharing on this article. | 2.2.2 | -| **show_author_profile** | true, false (default) | Set as `true` to show author profile at the beginning of the article. | | -| **show_subscribe**| true, false (default) | Set as `true` to show subscribe info on this page. | latest | -| **license** | true, false (default), CC-BY-4.0, CC-BY-SA-4.0, CC-BY-NC-4.0, CC-BY-ND-4.0 | license of the article. Set true to use `license` variable that set in *_config.yml*, set false to enable it. | | - -## Articles Layout - -Base on Page Layout, available since version **2.2.0**. - -| Variable | Option Values | Description | -| --- | --- | --- | -| **articles** | `!!map` | | - -### articles - -| Variable | Option Values | Description | -| --- | --- | --- | -| **data_source** | `!!str` | You can set it as a collections name, then the page will show the article list of this collections. You can refer to [Collections](https://jekyllrb.com/docs/collections/) to learn more about collections. | -| **type** | item, brief, grid | TeXt supports 3 article list type with various settings, yan can find examples [HERE](https://kitian616.github.io/jekyll-TeXt-theme/samples.html#articles-layout). | -| **size** | md, sm | Available when type is `grid`. | -| **article_type** | BlogPosting | Available when type is `normal`. | -| **show_cover** | true (default), false | Available when type is `normal`. Before set it to `true`, you need first set each article a cover image, refer to the `cover` variable in [Page Layout](#page-layout). | -| **cover_size** | lg, md, sm | Available when type is `normal`. | -| **show_excerpt** | true, false (default) | Available when type is `normal`, refer to [excerpt_type](#excerpt_type) below. | -| **excerpt_type** | text, html | Available when type is `normal`. | -| **show_readmore** | true, false (default) | Available when type is `normal`. | -| **show_info** | true, false (default) | Available when type is `normal` or `brief`. | - -### articles.excerpt_type - -Each post automatically takes the first block of text, from the beginning of the content to the first occurrence of `excerpt_separator`, and sets it as the post’s excerpt. - -The excerpt is show in the article list in the Articles and Home Layout. There are two excerpt types, text type and html type. - -| Type Name | Description | -| --- | --- | -| **text** | the excerpt are plain text that filters out all non-text elements (such as title, link, list, table, picture, etc.) and only show 350 characters most. | -| **html** | the excerpt are HTML document just like the content of the article, This will show all the content by default, except adding `` in the article Markdown file, You can find more info [HERE](https://jekyllrb.com/docs/posts/#post-excerpts). | - -For the home page, you can set `excerpt_type` to `HTML` like this: - -```yaml -layout: home -articles: - excerpt_type: html -``` - -## Home Layout - -Base on Articles Layout. - -## Archive Layout - -Base on Page Layout. - -## Landing Layout - -Base on Page Layout. - -| Variable | Option Values | Description | -| --- | --- | --- | -| **data** | `!!map` | | - -## 404 Layout - -Base on Page Layout. diff --git a/docs/_docs/en/2.4-logo-and-favicon.md b/docs/_docs/en/2.4-logo-and-favicon.md deleted file mode 100644 index 82b91480d04..00000000000 --- a/docs/_docs/en/2.4-logo-and-favicon.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Logo and Favicon -permalink: /docs/en/logo-and-favicon -key: docs-logo-and-favicon ---- - -## Logo - -

      TeXt {% include svg/logo.svg %} as logo, you can change it by replacing _includes/svg/logo.svg with your own logo.

      - -## Favicon - -TeXt recommend [RealFaviconGenerator](https://realfavicongenerator.net/) for generating favicon. - -Open [RealFaviconGenerator](https://realfavicongenerator.net/), click “Select your Favicon picture” and then choose 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*. - -It’s recommended to put favicon files at the root of your site. -{:.warning} - -![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/favicon.html*. diff --git a/docs/_docs/en/2.5-authors.md b/docs/_docs/en/2.5-authors.md deleted file mode 100644 index a4c31c7a68e..00000000000 --- a/docs/_docs/en/2.5-authors.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Authors -permalink: /docs/en/authors -key: docs-authors ---- -By default all the posts or pages are authored by `author` that configured in *_config.yml*, but you can overwrite it in the page’s YAML Front Mater. - -Todo so, you need create *_data/authors.yml* and add authors using the following format. Any variables found under `author` in *_config.yml* can be used (type, name, url, avatar, bio, email, facebook etc.). - -```yml -Tian Qi: - name : Tian Qi - url : https://kitian616.github.io - avatar : https://wx3.sinaimg.cn/large/73bd9e13ly1fjkqy66hl8j208c08c0td.jpg - bio : Author of TeXt. - email : kitian616@outlook.com - facebook : # "user_name" the last part of your profile url, e.g. https://www.facebook.com/user_name - twitter : kitian616 # "user_name" the last part of your profile url, e.g. https://twitter.com/user_name - weibo : 234695683 # "user_id" the last part of your profile url, e.g. https://www.weibo.com/user_id/profile?... - googleplus: 101827554735084402671 # "user_id" the last part of your profile url, e.g. https://plus.google.com/u/0/user_id - telegram : # "user_name" the last part of your profile url, e.g. https://t.me/user_name - medium : # "user_name" the last part of your profile url, e.g. https://medium.com/user_name - zhihu : # "user_name" the last part of your profile url, e.g. https://www.zhihu.com/people/user_name - douban : # "user_name" the last part of your profile url, e.g. https://www.douban.com/people/user_name - linkedin : # "user_name" the last part of your profile url, e.g. https://www.linkedin.com/in/user_name - github : kitian616 # "user_name" the last part of your profile url, e.g. https://github.com/user_name - npm : # "user_name" the last part of your profile url, e.g. https://www.npmjs.com/~user_name -``` - -Assign one of the authors in *authors.yml* to a post or page you wish to override the `site.author` with. - - --- - author: Tian Qi - --- diff --git a/docs/_docs/en/2.7-i18n.md b/docs/_docs/en/2.7-i18n.md deleted file mode 100644 index f72ff55863b..00000000000 --- a/docs/_docs/en/2.7-i18n.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: Internationalization -permalink: /docs/en/i18n -key: docs-i18n ---- - -Text for UI elements are grouped together as a set of translation keys in *_data/locale.yml*, this make TeXt easy to support different languages. - -By using `titles`, you can define multi-language name for page, layout and navigator title. TeXt default defined some multi-language name in *_data/navigation*, *_layouts/archive*, *_layouts/home* and *about.md*. - - - -The translation keys and multi-language names mentioned above support the following languages: - - -| Language | `lang` | -| --- | --- | -| **English** | en, en-GB, en-US, en-CA, en-AU | -| **Simplified Chinese** | zh-Hans, zh, zh-CN, zh-SG | -| **Traditional Chinese** | zh-Hant, zh-TW, zh-HK | -| **Korean** | ko, ko-KR | -| **French** | fr, fr-BE, fr-CA, fr-CH, fr-FR, fr-LU | -| **Turkish** | tr | - - -You can see examples for different languages [HERE](https://kitian616.github.io/jekyll-TeXt-theme/samples.html#languages). diff --git a/docs/_docs/en/3.1-writing-posts.md b/docs/_docs/en/3.1-writing-posts.md deleted file mode 100644 index 21742328564..00000000000 --- a/docs/_docs/en/3.1-writing-posts.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Writing Posts -permalink: /docs/en/writing-posts -key: docs-writing-posts ---- - -As explained on the [directory structure](https://jekyllrb.com/docs/structure/) page, **the */_posts* folder is where your blog posts will live**. These files are generally Markdown or HTML. All posts must have YAML Front Matter, and they will be converted from their source format into an HTML page that is part of your static site. - - - -## Creating Post Files - -To create a new post, all you need to do is create a file in the */_posts* directory. Jekyll requires blog post files to be named like these: - - 2011-12-31-new-years-eve-is-awesome.md - 2012-09-12-how-to-write-a-blog.markdown - -## Content - -All blog post files must begin with YAML Front Matter. - -To improve the user experience for both reading and writing posts, TeXt made some enhancements for markdown and some additional styles. - -### YAML Front Matter - - --- - layout: article - title: Document - Writing Posts - mathjax: true - --- - -Between these triple-dashed lines you can set variables. you can consider it as page configuration, these would overrides the global configuration in *_config.yml*. - -Beside Jekyll’s predefined variables, TeXt define some new variables for each layouts, see [Layouts](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/layouts) for details. diff --git a/docs/_docs/en/3.2-markdown-enhancements.md b/docs/_docs/en/3.2-markdown-enhancements.md deleted file mode 100644 index 76772baf93b..00000000000 --- a/docs/_docs/en/3.2-markdown-enhancements.md +++ /dev/null @@ -1,171 +0,0 @@ ---- -title: Markdown Enhancements -permalink: /docs/en/markdown-enhancements -key: docs-markdown-enhancements ---- - -You need set the variable true in the *_config.yml* or in the YAML Front Matter to enable markdown enhancement. - -| Enhancemen Name | Description | -| --------------- | ----------- | -| **Mathjax** | Make it easy to add mathematics in articles, using MathML, LaTeX and ASCIIMathML markup | [EXAMPLES](https://kitian616.github.io/jekyll-TeXt-theme/post/2017/07/07/mathjax.html) | -| **Mermaid** | Bring diagrams and flowcharts in articles | [EXAMPLES](https://kitian616.github.io/jekyll-TeXt-theme/post/2017/06/06/mermaid.html) | -| **Chart** | Bring charts in articles | [EXAMPLES](https://kitian616.github.io/jekyll-TeXt-theme/post/2017/05/05/chart.html) | - -## Mathjax - -When $$a \ne 0$$, there are two solutions to $$ax^2 + bx + c = 0$$ and they are - -$$x_1 = {-b + \sqrt{b^2-4ac} \over 2a}$$ - -$$x_2 = {-b - \sqrt{b^2-4ac} \over 2a} \notag$$ - -**markdown:** - -```tex -When $$a \ne 0$$, there are two solutions to $$ax^2 + bx + c = 0$$ and they are -$$x_1 = {-b + \sqrt{b^2-4ac} \over 2a}$$ -$$x_2 = {-b - \sqrt{b^2-4ac} \over 2a} \notag$$ -``` - -**After MathJax enabled**, you can set `mathjax_autoNumber: true` to have equations be numbered automatically, You can use \notag or \nonumber to prevent individual equations from being numbered. -{:.info} - -## Mermaid - -```mermaid -graph TB; - A[Do you have a problem in your life?] - B[Then don't worry] - C[Can you do something about it?] - A--no-->B; - A--yes-->C; - C--no-->B; - C--yes-->B; -``` - -**markdown:** - - ```mermaid - graph TB; - A[Do you have a problem in your life?] - B[Then don't worry] - C[Can you do something about it?] - A--no-->B; - A--yes-->C; - C--no-->B; - C--yes-->B; - ``` - -[Mermaid](https://mermaidjs.github.io/) supports 3 kinds of diagram: - -- [Flowchart](https://mermaidjs.github.io/flowchart.html) - -- [Sequence Diagram](https://mermaidjs.github.io/sequenceDiagram.html) - -- [Gant Diagram](https://mermaidjs.github.io/gantt.html) - -## Chart - -```chart -{ - "type": "line", - "data": { - "labels": [ - "January", - "February", - "March", - "April", - "May", - "June", - "July" - ], - "datasets": [ - { - "label": "# of bugs", - "fill": false, - "lineTension": 0.1, - "backgroundColor": "rgba(75,192,192,0.4)", - "borderColor": "rgba(75,192,192,1)", - "borderCapStyle": "butt", - "borderDash": [], - "borderDashOffset": 0, - "borderJoinStyle": "miter", - "pointBorderColor": "rgba(75,192,192,1)", - "pointBackgroundColor": "#fff", - "pointBorderWidth": 1, - "pointHoverRadius": 5, - "pointHoverBackgroundColor": "rgba(75,192,192,1)", - "pointHoverBorderColor": "rgba(220,220,220,1)", - "pointHoverBorderWidth": 2, - "pointRadius": 1, - "pointHitRadius": 10, - "data": [ - 65, - 59, - 80, - 81, - 56, - 55, - 40 - ], - "spanGaps": false - } - ] - }, - "options": {} -} -``` - -**markdown:** - - ```chart - { - "type": "polarArea", - "data": { - "datasets": [ - { - "data": [ - 11, - 16, - 7, - 3, - 14 - ], - "backgroundColor": [ - "#FF6384", - "#4BC0C0", - "#FFCE56", - "#E7E9ED", - "#36A2EB" - ], - "label": "My dataset" - } - ], - "labels": [ - "Red", - "Green", - "Yellow", - "Grey", - "Blue" - ] - }, - "options": {} - } - ``` - -[Chart.js](http://www.chartjs.org/docs/latest/) supports 7 kinds of chart: - -- [Line Chart](http://www.chartjs.org/docs/latest/charts/line.html) - -- [Bar Chart](http://www.chartjs.org/docs/latest/charts/bar.html) - -- [Radar Chart](http://www.chartjs.org/docs/latest/charts/radar.html) - -- [Polar Area Chart](http://www.chartjs.org/latest/charts/polar.html) - -- [Pie Chart](http://www.chartjs.org/docs/latest/charts/doughnut.html) - -- [Doughnut Chart](http://www.chartjs.org/docs/latest/charts/doughnut.html) - -- [Bubble Chart](http://www.chartjs.org/docs/latest/charts/bubble.html) diff --git a/docs/_docs/en/3.3-additional-styles.md b/docs/_docs/en/3.3-additional-styles.md deleted file mode 100644 index 8c0d16fa738..00000000000 --- a/docs/_docs/en/3.3-additional-styles.md +++ /dev/null @@ -1,169 +0,0 @@ ---- -title: Additional styles -permalink: /docs/en/additional-styles -key: docs-additional-styles ---- - -Jekyll use kramdown as the default markdown processor. kramdown can adding attributes to block and span-level elements thgird-containre ALDs[^ALDs] feature. with the help of ALDs, we can defined class names to an element by `{:.class-name1.class-name-2}`. - -TeXt offer some CSS classes that you can use in the post. You can refer to [THIS POST](https://kitian616.github.io/jekyll-TeXt-theme/post/2017/08/08/additional-styles.html). - -[^ALDs]: [Attribute List Definitions](https://kramdown.gettalong.org/syntax.html#attribute-list-definitions) - -## Alert - -| Class Names | -| ---- | -| **success** | -| **info** | -| **warning** | -| **error** | - -Success Text. -{:.success} - -Info Text. -{:.info} - -Warning Text. -{:.warning} - -Error Text. -{:.error} - -**markdown:** - - Success Text. - {:.success} -^ - Info Text. - {:.info} -^ - Warning Text. - {:.warning} -^ - Error Text. - {:.error} - -## Tag - -| Class Names | -| ---- | -| **success** | -| **info** | -| **warning** | -| **error** | - -`success`{:.success} - -`info`{:.info} - -`warning`{:.warning} - -`error`{:.error} - -**markdown:** - - `success`{:.success} -^ - `info`{:.info} -^ - `warning`{:.warning} -^ - `error`{:.error} - -## Image - -| Class Names | -| ---- | -| **border** | -| **shadow** | -| **rounded** | -| **circle** | - -### Border - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_border"){:.border} -
      -
      - ![Image](path-to-image){:.border} -
      -
      -
      - -### Shadow - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_shadow"){:.shadow} -
      -
      - ![Image](path-to-image){:.shadow} -
      -
      -
      - -### Rounded - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_rounded"){:.rounded} -
      -
      - ![Image](path-to-image){:.rounded} -
      -
      -
      - -### Circle - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_circle"){:.circle} -
      -
      - ![Image](path-to-image){:.circle} -
      -
      -
      - -### Mixture - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_border+rounded"){:.border.rounded} -
      -
      - ![Image](path-to-image){:.border.rounded} -
      -
      -
      - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_circle+shadow"){:.circle.shadow} -
      -
      - ![Image](path-to-image){:.circle.shadow} -
      -
      -
      - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_circle+border+shadow"){:.circle.border.shadow} -
      -
      - ![Image](path-to-image){:.circle.border.shadow} -
      -
      -
      diff --git a/docs/_docs/en/3.4-extensions.md b/docs/_docs/en/3.4-extensions.md deleted file mode 100644 index 87206342b6e..00000000000 --- a/docs/_docs/en/3.4-extensions.md +++ /dev/null @@ -1,174 +0,0 @@ ---- -title: Extensions -permalink: /docs/en/extensions -key: docs-extensions ---- - -## Audio - -| Name | Minimum Version | -| --- | --- | -| SoundCloud | 2.2.2 | -| Netease Cloud Music | 2.2.2 | - -### SoundCloud - -**id:** - -![extensions-soundcloud](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/extensions-soundclound.jpg){:style="max-height:500px"}{:.border} - -**html:** - -{% raw %} -```html -{%- include extensions/soundcloud.html id='313627932' -%} -``` - -**markdown:** - -``` -
      {%- include extensions/soundcloud.html id='313627932' -%}
      -``` -{% endraw %} - -### Netease Cloud Music (网易云音乐) - -Available in Chinese mainland. - -**id:** - -![extensions-soundcloud](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/extensions-netease-cloud-music.jpg){:style="max-height:320px"}{:.border} - -**html:** - -{% raw %} -```html -{%- include extensions/netease-cloud-music.html id='413812448' -%} -``` - -**markdown:** - -``` -
      {%- include extensions/netease-cloud-music.html id='413812448' -%}
      -``` -{% endraw %} - -## Video - -| Name | Minimum Version | -| --- | --- | -| YouTube | 2.2.2 | -| TED | 2.2.2 | -| bilibili | 2.2.2 | - -### YouTube - -**id:** - -![extensions-soundcloud](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/extensions-youtube.jpg){:style="max-height:250px"}{:.border} - -**html:** - -{% raw %} -```html -{%- include extensions/youtube.html id='wbY97-hdD5c' -%} -``` - -**markdown:** - -``` -
      {%- include extensions/youtube.html id='wbY97-hdD5c' -%}
      -``` -{% endraw %} - -### TED - -**id:** - -![extensions-soundcloud](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/extensions-ted.jpg){:style="max-height:83px"}{:.border} - -**html:** - -{% raw %} -```html -{%- include extensions/ted.html id='emily_esfahani_smith_there_s_more_to_life_than_being_happy' -%} -``` - -**markdown:** - -``` -
      {%- include extensions/ted.html id='emily_esfahani_smith_there_s_more_to_life_than_being_happy' -%}
      -``` -{% endraw %} - -### bilibili (哔哩哔哩) - -**id:** - -![extensions-bilibili](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/extensions-bilibili.jpg){:style="max-height:190px"}{:.border} - -**html:** - -{% raw %} -```html -{%- include extensions/bilibili.html id='11091080' -%} -``` - -**markdown:** - -``` -
      {%- include extensions/bilibili.html id='11091080' -%}
      -``` -{% endraw %} - -## Slide - -| Name | Minimum Version | -| --- | --- | -| SlideShare | 2.2.2 | - -### SlideShare - -**id:** - -![extensions-slideshare](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/extensions-slideshare.jpg){:style="max-height:480px"}{:.border} - -**html:** - -{% raw %} -```html -{%- include extensions/slideshare.html id='u9L9zDsqEWNKE1' -%} -``` - -**markdown:** - -``` -
      {%- include extensions/slideshare.html id='u9L9zDsqEWNKE1' -%}
      -``` -{% endraw %} - -## Demos - -| Name | Minimum Version | -| --- | --- | -| CodePen | 2.2.3 | - -### CodePen - -**user & hash:** - -![extensions-codepen](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/extensions-codepen.jpg){:style="max-height:100px"}{:.border} - -**html:** - -{% raw %} -```html -{%- include extensions/codepen.html user='kitian616' hash='aQmWZG' default_tab='html,result' -%} -``` - -**markdown:** - -``` -
      {%- include extensions/codepen.html user='kitian616' hash='aQmWZG' default_tab='html,result' -%}
      -``` -{% endraw %} diff --git a/docs/_docs/en/4.1-spacing.md b/docs/_docs/en/4.1-spacing.md deleted file mode 100644 index 957532b4684..00000000000 --- a/docs/_docs/en/4.1-spacing.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: Spacing -permalink: /docs/en/spacing -key: docs-spacing ---- - -Spacing classes are named using the format `{property}{side}-{spacer}`. - -Where *property* is one of: - -- `m` - for classes that set `margin` -- `p` - for classes that set `padding` - -Where *side* is one of: - -- `t` - for classes that set `margin-top` or `padding-top` -- `b` - for classes that set `margin-bottom` or `padding-bottom` -- `l` - for classes that set `margin-left` or `padding-left` -- `r` - for classes that set `margin-right` or `padding-right` -- `x` - for classes that set both `*-left` and `*-right` -- `y` - for classes that set both `*-top` and `*-bottom` - -blank - for classes that set a `margin` or `padding` on all 4 sides of the element - -Where *spacer* is one of: - -- 0 - for classes that eliminate the `margin` or `padding` by setting it to `0` -- 1 - for classes that set the `margin` or `padding` to `$spacer * .25` -- 2 - for classes that set the `margin` or `padding` to `$spacer * .5` -- 3 - for classes that set the `margin` or `padding` to `$spacer` -- 4 - for classes that set the `margin` or `padding` to `$spacer * 1.5` -- 5 - for classes that set the `margin` or `padding` to `$spacer * 3` -- auto - for classes that set the `margin` to `auto` - -`$spacer` is default to `1rem`, you can change or add new entries to the `$spacers` Sass map variable. - -## Examples - -```html -
      -
      -``` - -```html -
      -
      -``` - -```html -
      -
      -``` diff --git a/docs/_docs/en/4.2-grid.md b/docs/_docs/en/4.2-grid.md deleted file mode 100644 index 9a3633ffe72..00000000000 --- a/docs/_docs/en/4.2-grid.md +++ /dev/null @@ -1,209 +0,0 @@ ---- -title: Grid -permalink: /docs/en/grid -key: docs-grid ---- - - - -## Base - -
      -
      -
      6 cells
      -
      2 cells
      -
      4 cells
      -
      -
      - -```html -
      -
      6 cells
      -
      2 cells
      -
      4 cells
      -
      -``` - -## Responsive - -
      -
      -
      12/12/6 cells
      -
      12/4/2 cells
      -
      12/8/4 cells
      -
      -
      - -```html -
      -
      12/12/6 cells
      -
      12/4/2 cells
      -
      12/8/4 cells
      -
      -``` - -## Auto Sizing - -
      -
      -
      2 cells
      -
      Whatever's left!
      -
      -
      - -```html -
      -
      2 cells
      -
      whatever's left!
      -
      -``` - -
      -
      -
      shrink
      -
      expand
      -
      -
      - -```html -
      -
      shrink
      -
      expand
      -
      -``` - -## Gutters - -
      -
      -
      -
      6 cells
      -
      -
      -
      6 cells
      -
      -
      -
      6 cells
      -
      -
      -
      6 cells
      -
      -
      -
      - -```html -
      -
      -
      6 cells
      -
      6 cells
      -
      6 cells
      -
      6 cells
      -
      -
      -``` - -
      -
      -
      -
      6 cells
      -
      -
      -
      6 cells
      -
      -
      -
      6 cells
      -
      -
      -
      6 cells
      -
      -
      -
      - -```html -
      -
      -
      6 cells
      -
      6 cells
      -
      6 cells
      -
      6 cells
      -
      -
      -``` - -
      -
      -
      -
      6 cells
      -
      -
      -
      6 cells
      -
      -
      -
      6 cells
      -
      -
      -
      6 cells
      -
      -
      -
      - -```html -
      -
      -
      6 cells
      -
      6 cells
      -
      6 cells
      -
      6 cells
      -
      -
      -``` - -## Overflow - -
      -
      -
      -
      loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong
      -
      -
      -
      loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong
      -
      -
      -
      - -
      -
      -
      -
      loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong
      -
      -
      -
      loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong
      -
      -
      -
      - -
      -
      -
      -
      loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong
      -
      -
      -
      loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong
      -
      -
      -
      diff --git a/docs/_docs/en/4.3-icons.md b/docs/_docs/en/4.3-icons.md deleted file mode 100644 index 917004a7bbd..00000000000 --- a/docs/_docs/en/4.3-icons.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: Icons -permalink: /docs/en/icons -key: docs-icons ---- - -TeXt uses Font Awesome for icons, you can search available icon code snippet [HERE](https://fontawesome.com/icons?d=gallery&q=donw&m=free). - - - -```html - -``` - -
      Download TeXt Theme
      - -```html - Download TeXt Theme -``` diff --git a/docs/_docs/en/4.4-image.md b/docs/_docs/en/4.4-image.md deleted file mode 100644 index 20b78b7a0e8..00000000000 --- a/docs/_docs/en/4.4-image.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: Image -permalink: /docs/en/image -key: docs-image ---- - -| Type | Class Names | -| ---- | ---- | -| **base** | image | -| **size** | image\-\-md (default), image\-\-xs, image\-\-sm, image\-\-lg, image\-\-xl | - -## Size - -### Extreme Small - - - -```html - -``` - -### Small - - - -```html - -``` - -### Middle - - - -```html - -``` - -### Large - - - -```html - -``` - -### Extreme Large - - - -```html - -``` diff --git a/docs/_docs/en/4.5-button.md b/docs/_docs/en/4.5-button.md deleted file mode 100644 index 3bcb556c009..00000000000 --- a/docs/_docs/en/4.5-button.md +++ /dev/null @@ -1,138 +0,0 @@ ---- -title: Button -permalink: /docs/en/button -key: docs-button ---- - -| Type | Class Names | -| ---- | ---- | -| **base** | button | -| **type** | button\-\-primary, button\-\-secondary, button\-\-success, button\-\-info, button\-\-warning, button\-\-error, button\-\-outline\-primary, button\-\-outline\-secondary, button\-\-outline\-success, button\-\-outline\-info, button\-\-outline\-warning, button\-\-outline\-error | -| **shape** | button\-\-pill, button\-\-rounded, button\-\-circle | -| **size** | button\-\-md (default), button\-\-xs, button\-\-sm, button\-\-lg, button\-\-xl | - -## Type - -### Primary - -
      BUTTON
      - - [BUTTON](#){:.button.button--primary.button--pill} - -```html -BUTTON -``` - -### Secondary - -
      BUTTON
      - - [BUTTON](#){:.button.button--secondary.button--pill} - -```html -BUTTON -``` - -### Success - -
      BUTTON
      - - [BUTTON](#){:.button.button--success.button--pill} - -```html -BUTTON -``` - -### Outline - -
      BUTTON
      - - [BUTTON](#){:.button.button--outline-success.button--pill} - -```html -BUTTON -``` - -## Shape - -### Pill - -
      BUTTON
      - - [BUTTON](#){:.button.button--primary.button--pill} - -```html -BUTTON -``` - -### Rounded - -
      BUTTON
      - - [BUTTON](#){:.button.button--primary.button--rounded} - -```html -BUTTON -``` - -### Circle - -
      X
      - - [X](#){:.button.button--primary.button--circle} - -```html -X -``` - -## Size - -### Extreme Small - -
      BUTTON
      - - [BUTTON](#){:.button.button--primary.button--rounded.button--xs} - -```html -BUTTON -``` - -### Small - -
      BUTTON
      - - [BUTTON](#){:.button.button--primary.button--rounded.button--sm} - -```html -BUTTON -``` - -### Middle - -
      BUTTON
      - - [BUTTON](#){:.button.button--primary.button--rounded} - -```html -BUTTON -``` - -### Large - -
      BUTTON
      - - [BUTTON](#){:.button.button--primary.button--rounded.button--lg} - -```html -BUTTON -``` - -### Extreme Large - -
      BUTTON
      - - [BUTTON](#){:.button.button--primary.button--rounded.button--xl} - -```html -BUTTON -``` diff --git a/docs/_docs/en/4.6-item.md b/docs/_docs/en/4.6-item.md deleted file mode 100644 index d87aa02ffac..00000000000 --- a/docs/_docs/en/4.6-item.md +++ /dev/null @@ -1,182 +0,0 @@ ---- -title: Item -permalink: /docs/en/item -key: docs-item ---- - -## Content - -
      -
      -
      -

      Photograph

      -
      -
      -

      - A photograph is an image created by light falling on a photosensitive surface, usually photographic film or an electronic image sensor, such as a CCD or a CMOS chip. -

      -
      -
      -
      - -```html -
      -
      -
      -

      Photograph

      -
      -
      -

      ...

      -
      -
      -
      -``` - -## Image and Content - - -
      -
      - -
      -
      -
      -

      Photograph

      -
      -
      -
      - -```html -
      -
      - -
      -
      -
      -

      Photograph

      -
      -
      -
      -``` - -
      -
      - -
      -
      -
      -

      Photograph

      -
      -
      -

      - A photograph is an image created by light falling on a photosensitive surface, usually photographic film or an electronic image sensor, such as a CCD or a CMOS chip. -

      -
      -
      -
      - -```html -
      -
      - -
      -
      -
      -

      Photograph

      -
      -
      -

      ...

      -
      -
      -
      -``` - -## Image Size - -
      -
      - -
      -
      -
      -

      Photograph

      -
      -
      -
      - -```html -
      -
      - -
      -
      -
      -

      Photograph

      -
      -
      -
      -``` - -
      -
      - -
      -
      -
      -

      Photograph

      -
      -
      -

      - A photograph is an image created by light falling on a photosensitive surface, usually photographic film or an electronic image sensor, such as a CCD or a CMOS chip. -

      -
      -
      -
      - -```html -
      -
      - -
      -
      -
      -

      Photograph

      -
      -
      -

      ...

      -
      -
      -
      -``` - -
      -
      - -
      -
      -
      -

      Photograph

      -
      -
      -

      - A photograph is an image created by light falling on a photosensitive surface, usually photographic film or an electronic image sensor, such as a CCD or a CMOS chip. -

      -
      -
      -
      - -```html -
      -
      - -
      -
      -
      -

      Photograph

      -
      -
      -

      ...

      -
      -
      -
      -``` diff --git a/docs/_docs/en/4.7-card.md b/docs/_docs/en/4.7-card.md deleted file mode 100644 index 2c52dfb3bb4..00000000000 --- a/docs/_docs/en/4.7-card.md +++ /dev/null @@ -1,185 +0,0 @@ ---- -title: Card -permalink: /docs/en/card -key: docs-card ---- - -## Image - -
      -
      - -
      -
      - -```html -
      -
      - -
      -
      -``` - -## Content - -
      -
      -
      -

      Photograph

      -
      -

      A photograph is an image created by light falling on a photosensitive surface, usually photographic film or an electronic image sensor, such as a CCD or a CMOS chip.

      -
      -
      - -```html -
      -
      -
      -

      Photograph

      -
      -

      ...

      -
      -
      -``` - -## Image and Content - -
      -
      - -
      -
      -
      -

      Photograph

      -
      -
      -
      - -```html -
      -
      - -
      -
      -
      -

      Photograph

      -
      -
      -
      -``` - -
      -
      - -
      -
      -
      -

      Photograph

      -
      -

      - A photograph is an image created by light falling on a photosensitive surface, usually photographic film or an electronic image sensor, such as a CCD or a CMOS chip. -

      -
      -
      - -```html -
      -
      - -
      -
      -
      -

      Photograph

      -
      -

      ...

      -
      -
      -``` - -## Image Overlay - -
      -
      - -
      -

      Photograph

      -
      -
      -
      - -```html -
      -
      - -
      -

      Photograph

      -
      -
      -
      -``` - -
      -
      - -
      -

      Photograph

      -
      -
      -
      - -```html -
      -
      - -
      -

      Photograph

      -
      -
      -
      -``` - -## Flat - -
      -
      - -
      -
      -
      -

      Photograph

      -
      -
      -
      - -```html -
      -
      - -
      -
      -
      -

      Photograph

      -
      -
      -
      -``` - -## Clickable - -
      -
      -
      - -
      -
      -
      - -```html - -
      -
      - -
      -
      -
      -``` diff --git a/docs/_docs/en/4.8-hero.md b/docs/_docs/en/4.8-hero.md deleted file mode 100644 index 7dfc975da23..00000000000 --- a/docs/_docs/en/4.8-hero.md +++ /dev/null @@ -1,168 +0,0 @@ ---- -title: Hero -permalink: /docs/en/hero -key: docs-hero ---- - - - -## Normal - -
      -
      -

      Hero

      -
      -
      - -```html -
      -
      -

      Hero

      -
      -
      -``` - -## Center - -
      -
      -

      Hero

      -
      -
      - -```html -
      -
      -

      Hero

      -
      -
      -``` - -## Dark Theme - -
      -
      -

      Hero

      -
      -
      - -```html -
      -
      -

      Hero

      -
      -
      -``` - -## Background Image - -
      -
      -

      Hero

      -
      -
      - -```html -
      -
      -

      Hero

      -
      -
      -``` - -
      -
      -

      Hero

      -

      There's a hero, If you look inside your heart,

      -

      You don't have to be afraid of what you are.

      -
      -
      - -```html -
      -
      -

      Hero

      -

      ...

      -
      -
      -``` - -## Height - -
      -
      -

      Hero

      -

      There's a hero, If you look inside your heart,

      -

      You don't have to be afraid of what you are.

      -
      -
      - -```html -
      -
      -

      Hero

      -

      ...

      -
      -
      -``` - -## Background Image + Center - -
      -
      -

      Hero

      -

      There's a hero, If you look inside your heart,

      -

      You don't have to be afraid of what you are.

      -
      -
      - -```html -
      -
      -

      Hero

      -

      ...

      -
      -
      -``` - -
      -
      -

      Hero

      -

      There's a hero, If you look inside your heart,

      -

      You don't have to be afraid of what you are.

      -
      -
      - -```html - - -
      -
      -

      Hero

      -

      ...

      -
      -
      -``` diff --git a/docs/_docs/en/4.9-swiper.md b/docs/_docs/en/4.9-swiper.md deleted file mode 100644 index cee99cddf02..00000000000 --- a/docs/_docs/en/4.9-swiper.md +++ /dev/null @@ -1,161 +0,0 @@ ---- -title: Swiper -permalink: /docs/en/swiper -key: docs-swiper ---- - - - -`Alpha`{:.warning} - -## Normal - -
      -
      -
      1
      -
      2
      -
      3
      -
      4
      -
      5
      -
      6
      -
      7
      -
      - -
      -
      - -
      - -```css -.swiper-demo { - height: 220px; -} -``` - -```html -
      -
      -
      1
      -
      2
      -
      3
      -
      4
      -
      5
      -
      6
      -
      7
      -
      -
      -
      -
      -``` - -```js -{%- raw -%} -{%- include scripts/lib/swiper.js -%} -var SOURCES = window.TEXT_VARIABLES.sources; -window.Lazyload.js(SOURCES.jquery, function() { - $('.swiper-demo').swiper(); -}); -{% endraw %} -``` - -## Light Theme - -
      -
      -
      1
      -
      2
      -
      3
      -
      4
      -
      5
      -
      6
      -
      7
      -
      -
      -
      -
      - -## Dark Theme - -
      -
      -
      1
      -
      2
      -
      3
      -
      4
      -
      5
      -
      6
      -
      7
      -
      -
      -
      -
      - -## Images - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - -## Without Animation - -
      -
      -
      1
      -
      2
      -
      3
      -
      4
      -
      5
      -
      6
      -
      7
      -
      -
      -
      -
      - - diff --git a/docs/_docs/zh/1.1-quick-start.md b/docs/_docs/zh/1.1-quick-start.md deleted file mode 100644 index 216e046fb6a..00000000000 --- a/docs/_docs/zh/1.1-quick-start.md +++ /dev/null @@ -1,145 +0,0 @@ ---- -title: 快速开始 -permalink: /docs/zh/quick-start -key: docs-quick-start-zh ---- - -TeXt 是一款 100% 兼容 GitHub Pages 的 Jekyll 主题,你可以通过 Fork、下载或主题等方式安装。 - -在这篇文章中,你将学到如何**安装设置主题**,通过**本地预览**进行开发以及**编译**和**发布**。 - - - -```mermaid -graph LR; - A0(安装 TeXt) - B0(普通方式) - B1[主题方式] - C0[从 GitHub 克隆] - C1[Fork 该仓库] - C2[下载] - D0[设置] - E0(安装开发环境) - F0[直接安装] - F1[使用 Docker] - A0-->B0; - A0-->B1; - B0-->C0; - B0-->C1; - B0-->C2; - B1-->D0; - C1-->E0 - C2-->E0 - D0-->E0 - E0-->F0 - E0-->F1 -``` - -## 安装 - -### 普通方式 - -这种方式要求你的项目里包含所有的主题文件,你可以通过以下途径来安装: - -1. 从 GitHub 克隆 [jekyll-TeXt-theme](https://github.com/kitian616/jekyll-TeXt-theme) 项目: - - **通过 HTTPS 方式克隆:** - - ```bash - git clone https://github.com/kitian616/jekyll-TeXt-theme.git - ``` - - **通过 SSH 方式克隆:** - - ```bash - git clone git@github.com:kitian616/jekyll-TeXt-theme.git - ``` - -2. 下载主题压缩包并解压到你的项目目录中: - - 下载 TeXt 主题 - -3. 如果你打算在 GitHub Pages 上搭建你的网站,你可以直接 fork [jekyll-TeXt-theme](https://github.com/kitian616/jekyll-TeXt-theme) 到你的仓库,然后将其重命名为 **USERNAME.github.io** — 这里的 **USERNAME** 是你的 GitHub 用户名。 - - ![Fork](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/github-fork.jpg) - - ![Rename](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/github-rename-repo.jpg) - -### 主题方式 - -1. 若要安装一套主题,请先将该主题添加到您站点的 *Gemfile* 文件中: - - ```ruby - gem "jekyll-text-theme" - ``` - -2. 向站点的 *_config.yml* 中加入下列代码来启用主题: - - ```yaml - theme: jekyll-text-theme - ``` - -## 设置 - -**这里仅针对主题方式的安装,普通方式安装请跳过。** - -Jekyll 主题含有主题默认的布局文件、包含文件和样式表, 但是有些目录(例如*assets*, *_layouts*, *_includes* 以及 *_sass* 目录)需要手动添加到项目目录中,这样的好处在于将主题的文件和站点的内容和配置隔离开来,方便主题的升级。 - -```bash -├── 404.html -├── Gemfile -├── _config.yml -├── _data -│   └── locale.yml -├── _posts -│   └── ... -├── about.md -├── archive.html -└── index.html -``` - -你可以参考主题源码的 [/test 目录](https://github.com/kitian616/jekyll-TeXt-theme/tree/master/test), 这是一个使用主题的示例。 - -## 安装开发环境 - -如果你想本地运行主题,你需要安装 Ruby 以及 Jekyll,详情请戳 [这里](https://jekyllrb.com/docs/installation/)。 - -上述步骤完成后,安装 Ruby 依赖包: - -```bash -bundle install --path vendor/bundle -``` - -当然,TeXt 还提供了 [Docker](https://www.docker.com/) 支持,使用 Docker 能让你更方便的完成环境的安装,并且环境统一,不会出错。 - -![Docker](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/docker.jpg){:width="400px"} - -你只需要以下 3 步即可通过 Docker 完成环境的搭建: - -1. [安装 Docker](https://docs.docker.com/install/)。 - -2. 生成 *Gemfile.lock* 文件: - - ```bash - docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app ruby:2.6 bundle install - ``` - -3. 创建 Docker 镜像 (Image): - - ```bash - docker-compose -f ./docker/docker-compose.build-image.yml build - ``` - -## 本地预览 - -Jekyll 集成了一个开发用的服务器,可以让你使用浏览器在本地进行预览。 - -通过 `bundle exec jekyll serve` 命令启动开发服务器,然后你就可以访问 [http://localhost:4000/](http://localhost:4000/) 预览你的网站了。 - -如果是通过 Docker 搭建的环境,请运行 `docker-compose -f ./docker/docker-compose.default.yml up` 命令以启动开发服务器。 - -## 编译和发布 - -如果你打算把网站搭建在 GitHub Pages 上,那你所需要做的就是将项目的源码上传到 USERNAME.github.io 源码仓库的 master 分支,GitHub 会自动的编译,几分钟后你就可以通过 **https://USERNAME.github.io** 访问到你的网站了。 - -如果你的网站是搭建在其他服务器上的,那么你就需要来自己编译了。首先运行命令 `JEKYLL_ENV=production bundle exec jekyll build` 编译你的网站,然后将编译的文件(位于 *_site* 目录)更新到你的服务器上。 diff --git a/docs/_docs/zh/1.7-update-from-1-to-2.md b/docs/_docs/zh/1.7-update-from-1-to-2.md deleted file mode 100644 index d584bf36fa0..00000000000 --- a/docs/_docs/zh/1.7-update-from-1-to-2.md +++ /dev/null @@ -1,215 +0,0 @@ ---- -title: 从 1.x 升级到 2.x -permalink: /docs/zh/update-from-1-to-2 -key: docs-update-from-1-to-2-zh ---- - -![TeXt 2](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/TeXt-version-2.jpg) - -经过几个月的努力,**TeXt 2** 终于发布了,第二版在第一版的基础上做了大量的重构与更改,这也导致了一些配置的不兼容。希望这篇文档能对你的升级起到一些帮助,感谢你们的支持。 - -## 皮肤 - -*_config.yml* 中 `text_color_theme` 配置项更名为 `text_skin`。 - -1.x: - -```yml -text_color_theme: forest -``` - -```yml -text_skin: forest -``` - -## Layout - -### Article 布局 - -“Post 布局”和“Page 布局”更名为“Article 布局”。 - -1.x: - -```yml -layout: post -``` - -```yml -layout: page -``` - -2.x: - -```yml -layout: article -``` - -由于新的“Article 布局”默认不显示 Toc、在 GitHub 上编辑按钮、许可协议和阅读量。为了和之前的“Post 布局”保持一致,可以在头信息里设置: - -```yml -license: true -aside: - toc: true -show_edit_on_github: true -pageview: true -``` - -你也可以在 *_config.yml* 中设置 posts 类型的[默认值](https://jekyllrb.com/docs/configuration/#front-matter-defaults): - -```yml -defaults: - - scope: - path: "" - type: posts - values: - layout: article - license: true - aside: - toc: true - show_edit_on_github: true - pageview: true -``` - -### Archive 布局 - -原有的“All 布局”更名为“Archive 布局”。 - -1.x: - -```yml -layout: all -``` - -2.x: - -```yml -layout: archive -``` - -## Paths - -为了保持和布局命名的一致性,新版将原有的 *all.html* 更名为 *archive.html*。*_config.yml* 中 `paths` 的配置项 `base` 和 `all` 分别更名为 `root` 和 `archive`。 - -1.x: - -```yml -paths: - base : /blog - all : /blog/all.html - rss : /feed.xml -``` - -2.x: - -```yml -paths: - root : /blog - home : /blog - archive : /blog/archive.html - rss : /feed.xml -``` - -## 许可协议 - -对于许可协议,你还需要在 *_config.yml* 中指定使用的许可协议, 默认为 `false` 不显示: - -```yml -license: CC-BY-4.0 -``` - -## 评论 - -新版对评论、文章点击量和站点统计在 *_config.yml* 中的配置做了一些变化,主要是增加了 `provider` 属性,并且将对应的提供方变为对应的子配置项。 - -1.x: - -```yml -disqus: - shortname: kitian616-github-io -``` - -2.x: - -```yml -comments: - provider: disqus - disqus: - shortname: kitian616-github-io -``` - -## 文章点击量 - -1.x: - -```yml -leancloud: - app_id: uAG3OhdcH8H4fxSqXLyBljA7-gzGzoHsz - app_key: Mzf5m9skSwYVWVXhGiYMNyXs - app_class: ThomasBlog -``` - -2.x: - -```yml -pageview: - provider: leancloud - leancloud: - app_id: uAG3OhdcH8H4fxSqXLyBljA7-gzGzoHsz - app_key: Mzf5m9skSwYVWVXhGiYMNyXs - app_class: ThomasBlog -``` - -## 站点统计 - -1.x: - -```yml -ga_tracking_id: UA-71907556-1 -``` -2.x: - -```yml -analytics: - provider: google - google: - tracking_id: UA-71907556-1 -``` - -## Logo 和 Favicon - -默认 Logo 的位置发生了变化。移除了之前的图标生成工具,新版推荐使用 [RealFaviconGenerator](https://realfavicongenerator.net/) 来生成 Favicon。 - -## 导航 - -网站右上的导航配置移到了 *_data/navigation.yml* 中,在新版中整个导航都可以自由定制了。 - -1.x: - -```yml -nav_lists: - - titles: - en: About - zh: 关于 - zh-Hans: 关于 - zh-Hant: 關於 - url: /blog/about.html -``` - -2.x: - -```yml -## _data/navigation.yml -header: - - titles: - en: Archive - zh: 归档 - zh-Hans: 归档 - zh-Hant: 歸檔 - url: /blog/archive.html - - titles: - en: About - zh: 关于 - zh-Hans: 关于 - zh-Hant: 關於 - url: /blog/about.html -``` diff --git a/docs/_docs/zh/2.1-configuration.md b/docs/_docs/zh/2.1-configuration.md deleted file mode 100644 index b752f2c3722..00000000000 --- a/docs/_docs/zh/2.1-configuration.md +++ /dev/null @@ -1,382 +0,0 @@ ---- -title: 配置 -permalink: /docs/zh/configuration -key: docs-configuration-zh ---- - -Jekyll 允许你很轻松的设计你的网站,这很大程度上归功于灵活强大的配置功能。既可以配置在网站根目录下的 *_config.yml* 文件,也可以作为命令行的标记来配置。 - -*_config.yml* 包括一些在运行时一次性读入的全局配置和变量定义, 在自动生成的过程中并**不会**重新加载,除非重新运行。注意 Data Files 包括在自动生成范围内,可以在更改后自动重新加载。 -{:.warning} - - - -## 网站配置项 - -### 主题 - -如果是通过主题方式安装的,你需要这样配置以启用主题: - -```yaml -theme: jekyll-text-theme -``` - -### 皮肤 - -TeXt 内置有 6 套皮肤,你也可以定制自己的皮肤。 - -| `default` | `dark` | `forest` | -| --- | --- | --- | -| ![Default](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_default.jpg) | ![Dark](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_dark.jpg) | ![Forest](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_forest.jpg) | - -| `ocean` | `chocolate` | `orange` | -| --- | --- | --- | -| ![Ocean](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_ocean.jpg) | ![Chocolate](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_chocolate.jpg) | ![Orange](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_orange.jpg) | - -```yaml -text_skin: default # "default" (default), "dark", "forest", "ocean", "chocolate", "orange" -``` - -### 代码高亮主题 - -TeXt 使用 [Tomorrow](https://github.com/chriskempson/tomorrow-theme) 作为它的代码高亮主题。 - -| `tomorrow` | `tomorrow-night` | `tomorrow-night-eighties` | `tomorrow-night-blue` | `tomorrow-night-bright` | -| --- | --- | --- | --- | --- | -| ![Tomorrow](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow.png) | ![Tomorrow Night](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night.png) | ![Tomorrow Night Eighties](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night-eighties.png) | ![Tomorrow Night Blue](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night-blue.png) | ![Tomorrow Night Bright](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/highlight_tomorrow-night-bright.png) | - -每个皮肤有一个默认的代码高亮主题,当然你可以通过 `highlight_theme` 配置项来指定其他主题。 - -```yaml -highlight_theme: default # "default" (default), "tomorrow", "tomorrow-night", "tomorrow-night-eighties", "tomorrow-night-blue", "tomorrow-night-bright" -``` - -### URL - -网站的协议和域名。 - -如果你的网站是搭建在 Github Pages 上的,这个只会被设置为 GitHub Pages 域名(CNAME 或个人域名)[^gitHub_metadata]. 举个例子, https://kitian616.github.io 或者 https://kitian616.github.io 如果设置了 CNAME。 - -在 3.3 及更高版本的 Jekyll 中运行 `jekyll serve` 命令会在开发模式时将其设置为 url: http://localhost:4000,你可以通过 `JEKYLL_ENV=production` 设置生产环境。 -{:.warning} - -[^gitHub_metadata]: [GitHub Metadata, a.k.a. site.github](https://github.com/jekyll/github-metadata#what-it-does) - -[^jekyll_site_variables]: [Variables#Site Variables](https://jekyllrb.com/docs/variables/#site-variables) - -[^jekyll_specifying_environment]: [Configuration#Specifying a Jekyll environment at build timePermalink](https://jekyllrb.com/docs/configuration/#specifying-a-jekyll-environment-at-build-time) - -### Base URL - -网站的根路径,不包含域名,其默认值为“/”。如果你的网站是搭建在 Github Pages 上的,那么这个值会默认设置为网站对应的项目名[^gitHub_metadata]。 - -### 网站标题 - -网站的标题。 - -```yaml -title: "My Awesome Website" -``` - -### 网站描述 - -使用一些简短的语言来描述你的网站。 - -```yaml -description: > # this means to ignore newlines until "nav_lists:" - A website with awesome stories. -``` - -## 语言与时区 - -### 语言 - -网站的语言,当然你可以在头信息[^font_matter]里指定特定的文章或页面的语言,你可以在[国际化](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/i18n)找到更多信息。 - -```yaml -lang: en -``` - -[^font_matter]: [Front Matter](https://jekyllrb.com/docs/frontmatter/) - -### 时区 - -设置时区,这个设置作用于 TZ 变量, Ruby 用它来处理日期和时间。使用 IANA Time Zone Database 标准,比如 America/New_York 。其默认值为操作系统的时区。详情请戳 [这里](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)。[^jekyll_global_configuration] - -[^jekyll_global_configuration]: [Configuration#Global Configuration](https://jekyllrb.com/docs/configuration/#global-configuration) - -```yaml -timezone: Asia/Shanghai -``` - -## 作者信息 - -网站作者的信息(可以是个人、团队或者组织)。 - -### 类型 (type) - -作者的类型,个人或者是组织,作为 [schema.org](https://schema.org/) 的语义化标记使用。 - -### 作者名 (name) - -用来表明网站的作者。 - -### 头像 (avatar) - -作者的图片或 Logo。 - -### 简介 (bio) - -关于作者的一个简单介绍。 - -### 社交 - -社交网站的用户名或用户 ID。 - -目前支持邮件,微博,Facebook,Twitter,微博,Google Plus,Telegram,Medium,知乎,豆瓣,Linkedin,Github 和 Npm,持续添加中。 - -当你设置了相应项的值后,对应的社交按钮就会出现在页面下方。 - -## GitHub 源码仓库 - -[GitHub Metadata](https://github.com/jekyll/github-metadata) 插件的设置, 详情请戳 [这里](https://github.com/jekyll/github-metadata/blob/master/docs/configuration.md#configuration)。 - -这个设置告诉 jekyll-github-metadata 插件应该从哪个项目中获取元数据,其格式为 `项目所有者 ID/项目名称`,例如:kitian616/jekyll-TeXt-theme。 - -```yaml -repository: user_name/repo_name -``` - -## 文章配置项 - -### 摘要 - -该主题的摘要有两种模式——TEXT 模式和 HTML 模式。 当 *_config.yml* 配置项 `excerpt_type` 的值为 `text` 时是 TEXT 模式,为 `html` 时是 HTML 模式,**默认为 TEXT 模式**。 - -| 模式名称 | 描述 | -| --- | --- | -| **text** | 此时摘要为纯文本,会过滤掉一切非文本元素(标题,链接,列表,表格,图片等等),且截取前 350 个字符。 | -| **html** | 此时摘要为 HTML 文档,与文章内容一致,并且 **默认展示整篇文章的内容**。若想控制摘要内容,需要在文章中想要显示到的地方加上 ``,详情请戳 [这里](https://jekyllrb.com/docs/posts/#post-excerpts)。 | - -```yaml -excerpt_separator: -excerpt_type: text # text (default), html -``` - -该设置在 2.2.0 版中移到了 Articles 和 Home 布局的头信息中,详情请戳 [这里](https://kitian616.github.io/jekyll-TeXt-theme/docs/cn/layouts#articles-layout)。 -{:.error} - -### 许可协议 - -| 名称 | 许可协议 | 图片 | -| --- | --- | --- | -| CC-BY-4.0 | [Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/) | ![CC-BY-4.0](https://i.creativecommons.org/l/by/4.0/88x31.png) | -| CC-BY-SA-4.0 | [Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) | ![CC-BY-SA-4.0](https://i.creativecommons.org/l/by-sa/4.0/88x31.png) | -| CC-BY-NC-4.0 | [Attribution-NonCommercial 4.0 International](https://creativecommons.org/licenses/by-nc/4.0/) | ![CC-BY-NC-4.0](https://i.creativecommons.org/l/by-nc/4.0/88x31.png) | -| CC-BY-ND-4.0 | [Attribution-NoDerivatives 4.0 International](https://creativecommons.org/licenses/by-nd/4.0/) | ![CC-BY-ND-4.0](https://i.creativecommons.org/l/by-nd/4.0/88x31.png) | - -```yaml -license: CC-BY-NC-4.0 -``` - -### 目录 - -作为文章目录的元素。 - -```yaml -toc: - selectors: "h1,h2,h3" -``` - -### Markdown 增强 - -为了增强文章的写作和阅读体验,TeXt 对 Jekyll 现有的 markdown 做了一些增强。当然这些增强都是默认禁止的,你需要设置相应的配置项为 true 来启动它们: - -```yaml -# Mathjax -mathjax: true -mathjax_autoNumber: true - -# Mermaid -mermaid: true - -# Chart -chart: true -``` - -当然你也可以为某一篇文章或页面通过头信息[^font_matter]来做单独的指定。 - -在 [撰写博客](/) 篇中有更详细的使用说明。 - -## 分页 - -[Jekyll Paginate](https://github.com/jekyll/jekyll-paginate) 插件的配置。 - -要想对文章列表做分页,你需要在 *_config.yml* 文件中配置每页显示的文章数: - -```yaml -paginate: 8 -``` - -这个数字代表了文章列表页每页显示的最大文章数。 - -你也可以像这样指定分页页面的地址: - -```yaml -paginate_path: /page:num # don't change this unless for special need -``` - -## CDN 源 - -TeXt 使用 CDN[^cdn] 来加快载入速度,你可以选择 [BootCDN](http://www.bootcdn.cn/)(默认项)或者[unpkg](https://unpkg.com/)作为网站的 CDN 源。它们都是开源而免费的。 - -国内用户请优先使用 BootCDN。 - -```yaml -sources: bootcdn # bootcdn (default), unpkg -``` - -[^cdn]: [Content delivery network](https://en.wikipedia.org/wiki/Content_delivery_network) - -## 分享 - -| 名称 | 分享系统提供方 | 最低版本 | -| --- | --- | --- | -| **addtoany** | [AddToAny](https://www.addtoany.com/) | 2.2.2 | -| **addthis** | [AddThis](https://www.addthis.com/) | 2.2.3 | -| **custom** | | | - -### AddToAny - -```yaml -comments: - provider: addtoany -``` - -### AddThis - -```yaml -comments: - provider: addthis - addthis: - id: "your-addthis-pubid" -``` - -你需要在页面的头信息里设置 `sharing` 属性为 `true` 来开启该页的评论,详情请戳 [这里](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/layouts#article-%E5%B8%83%E5%B1%80)。 -{:.warning} - -## 评论 - -| 名称 | 评论系统提供方 | 最低版本 | -| --- | --- | --- | -| **disqus** | [Disqus](https://disqus.com/) | | -| **gitalk** | [Gitalk](https://github.com/gitalk/gitalk/) | | -| **valine** | [Valine](https://valine.js.org/en/) | 2.2.4 | -| **custom** | | | - -### Disqus - -要想启用 Disqus 作为评论系统,你需要注册一个 Disqus 账号然后申请一个针对该网站的 [shortname](https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname-),完成后将 shortname 填入到 *_config.yml* 中: - -```yaml -comments: - provider: disqus - disqus: - shortname: "your-disqus-shortname" -``` - -### Gitalk - -要想启用 Gitalk 作为评论系统,首先你需要一个 GitHub Application,如果没有[点击这里](https://github.com/settings/applications/new)申请。然后将相应的参数添加到 *_config.yml* 配置中: - -```yaml -comments: - provider: gitalk - gitalk: - clientID : "github-application-client-id" - clientSecret: "github-application-client-secret" - repository : "github-repo" - owner : "github-repo-owner" - admin: # Github repo owner and collaborators, only these guys can initialize github issues, IT IS A LIST. - - "your-github-id" - - "the-other-admin-github-id" -``` - -### Valine - -要想启用 Valine 作为评论系统,你需要注册一个 LeanCloud 账号然后建立一个 LeanCloud 应用,详情见 [LeanCloud](#leancloud)。因为 Valine 会自动在应用中建立一个 Class,因此并不需要像文章点击量那样手动建立 Class。 - -可以和[文章点击量](#文章点击量)公用一个 LeanCloud 应用。 - -```yaml -comments: - provider: valine - valine: - app_id : "your-leanCloud-app-id" - app_key : "your-leanCloud-app-key" -``` - -对于上面所有的评论系统, 你都需要在页面的头信息里设置 `key` 属性来开启该页的评论,详情请戳 [这里](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/layouts#page-%E5%B8%83%E5%B1%80)。 -{:.warning} - -## 文章点击量 - -| 名称 | 文章点击量后台提供方 | -| --- | --- | -| **leancloud** | [LeanCloud](https://leancloud.cn/) | -| **custom** | | - -### LeanCloud - -TeXt 使用 LeanCloud 作为点击量功能的后台服务。你需要建立一个 LeanCloud 应用,然后在应用中建立一个 Class,之后将必要的信息填写到 *_config.yml* 文件中。下面详细介绍其操作步骤。 - -在进入[主页](https://leancloud.cn/)后点击页面右上角的“访问控制台”,然后注册账号并登录。 - -在应用面板存储子页中点击“创建应用”按钮,在弹出的对话框中填写应用名称,计价方案选择“开发版”(土豪随意),然后点击“创建”按钮创建应用。 - -创建完成后应用面板上会出现你刚刚创建的应用卡片,点击进入选择创建 Class: - -![Leancloud:创建 Class 0](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/leancloud-create-class-0.jpg){:style="max-height:420px"}{:.border} - -在弹出的对话框中填写 Class 的名字,权限选择“无限制”,点击“创建 Class”按钮: - -![Leancloud:创建 Class 1](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/leancloud-create-class-1.jpg){:style="max-height:620px"}{:.border} - -当然你可以随时更改 Class 的权限,在应用面板存储子页中选择想要修改的 Class,点击上面菜单的其他 -> 权限设置项,即可进入设置页: - -![Leancloud:权限设置](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/leancloud-authorization.jpg){:style="max-height:300px"} - -最后点击应用面板右侧的“设置”,点击“应用 Key” 选项,即可得到对应的 APP ID 和 APP KEY: - -![Leancloud:App Info](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/leancloud-app-info.jpg){:.border} - -```yaml -pageview: - provider: leancloud - leancloud: - app_id : "your-leanCloud-app-id" - app_key : "your-leanCloud-app-key" - app_class : "your-leanCloud-app-class" -``` - -对于上面所有的点击量统计, 你都需要在页面的头信息里设置 `key` 属性来开启该页的统计功能,详情请戳 [这里](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/layouts#page-%E5%B8%83%E5%B1%80)。 -{:.warning} - -## 站点统计 - -| 名称 | 站点统计提供方 | -| --- | --- | -| **google** | [Google Analytics](https://analytics.google.com/) | -| **custom** | | - -### Google Analytics - -你需要将 `tracking_id` 设置成你的 Google Analytics 账户中针对该网站的跟踪代码来启动这项功能。你也可以通过设置 `anonymize_ip` 为 `true` 将所有事件的 IP 地址匿名化。 - -```yaml -analytics: - provider: google - google: - tracking_id: "your-google-analytics-tracking-code" - anonymize_ip: true -``` diff --git a/docs/_docs/zh/2.2-navigation.md b/docs/_docs/zh/2.2-navigation.md deleted file mode 100644 index 20e4a74ed7a..00000000000 --- a/docs/_docs/zh/2.2-navigation.md +++ /dev/null @@ -1,66 +0,0 @@ ---- -title: 导航栏 -permalink: /docs/zh/navigation -key: docs-navigation-zh ---- - -在 TeXt 中有两种导航栏:**头部导航栏**(Header Navigation)和**侧边栏导航栏**(Sidebar Navigation),它们均在 *data/navigation.yml* 中配置。 - - - -## 头部导航栏 - -头部导航栏在 *data/navigation.yml* 文件的 `header` 项定义,它是一个包含标题和 URL 项的数组: - -```yaml -header: - - title: Docs - url: /docs/en/quick-start - - title: 文档 - url: /docs/zh/quick-start - - titles: - en: Archive - zh: 归档 - zh-Hans: 归档 - zh-Hant: 歸檔 - url: /archive.html - - titles: - en: About - zh: 关于 - zh-Hans: 关于 - zh-Hant: 關於 - url: /about.html - - title: GitHub - url: https://github.com/kitian616/jekyll-TeXt-theme -``` - -你可以用 `titles` 来定义一个支持多语言的标题名。 - -## 侧边栏导航栏 - -要想在某篇文章或页面中使用侧边栏导航栏,首先你需要在 *data/navigation.yml* 中定义一个导航栏。 - -```yaml -docs-en: - - title: Start - children: - - title: Quick Start - url: /docs/en/quick-start - - title: Structure - url: /docs/en/structure - ... - - title: Customization - children: - - title: Configuration - url: /docs/en/configuration - - title: Navigation - url: /docs/en/navigation - ... -``` - -然后在头信息中将定义的导航作为这篇文章或页面的侧边栏导航栏: - -```yaml -sidebar: - nav: docs-en -``` diff --git a/docs/_docs/zh/2.3-layouts.md b/docs/_docs/zh/2.3-layouts.md deleted file mode 100644 index 61e70446448..00000000000 --- a/docs/_docs/zh/2.3-layouts.md +++ /dev/null @@ -1,176 +0,0 @@ ---- -title: 布局 -permalink: /docs/zh/layouts -key: docs-layouts-zh ---- - -```mermaid -graph TB; - NONE[none] - BASE[base] - PAGE[page] - ARTICLE[article] - ARTICLES[articles] - HOME[home] - ARCHIVE[archive] - LANDING[landing] - 404[404] - NONE-->BASE; - BASE-->PAGE; - PAGE-->ARTICLE; - PAGE-->ARTICLES; - ARTICLES-->HOME; - PAGE-->ARCHIVE; - PAGE-->LANDING; - PAGE-->404; -``` - -## Base 布局 - -继承于 None。 - -## Page 布局 - -继承于 Base 布局。 - -| 配置项 | 可选值 | 描述 | 最低版本 | -| --- | --- | --- | --- | -| **mode** | normal (default), immersive | 该页的模式。 | 2.2.0 | -| **type** | webpage (default), article | 该页的类型, 作为 [schema.org](https://schema.org/) 的语义化标记使用。 | | -| **key** | `!!str` | 页面的唯一标识符,供评论系统和点击量统计使用。必须以字母(`[A-Za-z]`)开头,其后可以接若干字母、数字(`[0-9]`)、连字符(`-`)、下划线(`_`)、冒号(`:`)和小数点(`.`)。 | | -| **lang** | en (default), zh, zh-Hans, zh-Hant | 该页的语言。 | | -| **author** | `!!map` | 将在 *authors.yml* 中定义的作者作为某篇文章或页面的作者, 详情请看[作者](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/authors)。 | 2.2.0 | -| **show_title** | true (default), false | 是否显示标题,默认显示,设置为 `false` 隐藏。 | | -| **show_edit_on_github** | true, false (default) | 是否显示“在 Github 上修改”按钮,设置为 `true` 显示。你需要先在 *_config.yml* 中设置 `repository` 和 `repository_tree`。 | | -| **show_date** | true (default), false | 是否展示该页的发布日期,设置为 `false` 隐藏。 | 2.2.0 | -| **show_tags** | true (default), false | 是否展示该页的标签,设置为 `false` 隐藏。 | 2.2.0 | -| **full_width** | true, false (default) | 该页内容是否占据全部宽度,设置为 `true` 开启。 | | -| **pageview** | true, false (default) | 是否开启阅读量统计,默认关闭,设置为 `true` 开启。 | 2.2.0 | -| **comment** | true (default), false | 是否开启评论支持,默认开启,设置为 `false` 关闭。 | | -| **mathjax** | true, false | 是否开启 Mathjax 公式支持,设置为 `true` 开启。 | | -| **mathjax_autoNumber** | true, false | 该页的 Mathjax 公式是否自动编号,设置为 `true` 开启。 | | -| **mermaid** | true, false | 是否开启 Mermaid 流程图支持,设置为 `true` 开启。 | | -| **chart** | true, false | 是否开启 Chart 图表支持,设置为 `true` 开启。 | | -| **cover** | `!!str` | 封面图片的 URL。 | | -| **header** | false, `!!map` | 设置为 `false` 隐藏标题栏。 | 2.2.0 | -| **article_header**| `!!map` | | 2.2.0 | -| **aside** | `!!map` | | | -| **sidebar** | `!!map` | | | -| **footer** | false | 设置为 `false` 隐藏底部栏。 | 2.2.3 | -| **lightbox** | true, false | 该页的大图是否能点击预览,设置为 `true` 开启,你可以通过设置 `lightbox-ignore` 类名来忽略特定的图片元素。 | 2.2.4 | - -### header - -| 配置项 | 可选值 | 描述 | -| --- | --- | --- | -| **theme** | light, dark | 当 type 为 `translucent` 时有效。 | -| **background** | `!!str` | 当指定了 theme 值时有效。 | - -### article_header - -| 配置项 | 可选值 | 描述 | -| --- | --- | --- | -| **type** | overlay, cover | | -| **align** | left (default), center | | -| **theme** | light (default), dark | | -| **background_color** | `!!str` | 当 type 为 `overlay` 时有效。当设置的背景色较深时,你需要设置 `theme` 为 dark。 | -| **background_image** | `!!map` | 当 type 为 `overlay` 时有效,设置为 `false` 可覆盖 `cover` 禁止背景图片。 | -| **image** | `!!map` | 当 type 为 `cover` 时有效。 | -| **actions** | `!!seq` | | - -### article_header.background_image - -| Variable | Option Values | Description | -| --- | --- | --- | -| **gradient** | `!!str` | | -| **src** | `!!str` | 默认为 `cover` | - -### article_header.image - -| Variable | Option Values | Description | -| --- | --- | --- | -| **src** | `!!str` | | - -### aside - -| 配置项 | 可选值 | 描述 | -| --- | --- | --- | -| **toc** | false (default), true | 设置为 `true` 时展示右侧边栏目录。 | - -### sidebar - -| 配置项 | 可选值 | 描述 | -| --- | --- | --- | -| **nav** | `!!str` | | - -## Article 布局 - -继承于 Page 布局。 - -| 配置项 | 可选值 | 描述 | 最低版本 | -| --- | --- | --- | --- | -| **modify_date** | `!!str` | 该文章的最后修改时间, 其格式为 `YYYY-MM-DD HH:MM:SS +/-TTTT` 和 `date` 的格式相同 | | -| **sharing** | true, false (default) | 是否开启分享,设置为 `true` 开启。 | 2.2.2 | -| **show_author_profile** | true, false (default) | 是否在文章开头显示作者信息卡片,设置为 `true` 显示。 | | -| **show_subscribe**| true, false (default) | 是否在文章末尾显示订阅信息,设置为 `true` 显示。 | latest | -| **license** | true, false (default), CC-BY-4.0, CC-BY-SA-4.0, CC-BY-NC-4.0, CC-BY-ND-4.0 | 该文章的许可协议。设置为 `true` 使用在 *_config.yml* 中设置的 `license` 值,设置为 `false` 不使用许可协议。 | | - -## Articles 布局 - -继承于 Page 布局,从 **2.2.0** 版本支持。 - -| 配置项 | 可选值 | 描述 | -| --- | --- | --- | -| **articles** | `!!map` | | - -### articles - -| 配置项 | 可选值 | 描述 | -| --- | --- | --- | -| **data_source** | `!!str` | 如果你将将集合名设置为该项的值,该页面将会展示这个集合下的文章列表。你可以在 [Collections](https://jekyllrb.com/docs/collections/) 找到更多关于集合的信息。 | -| **type** | item, brief, grid | TeXt 支持三种文章列表类型,每种类型都对应着一些配置,你可以在 [这里](https://kitian616.github.io/jekyll-TeXt-theme/samples.html#articles-layout) 看到相关的示例。 | -| **size** | md, sm | 当 type 为 `grid` 时有效。 | -| **article_type** | BlogPosting | 当 type 为 `normal` 时有效。 | -| **show_cover** | true (default), false | 当 type 为 `normal` 时有效。 在设置改参数为 `true` 前,你需要给集合里的每篇文章设置封面, 参考 [Page 布局](#page-layout)的 `cover` 配置项。 | -| **cover_size** | lg, md, sm | 当 type 为 `normal` 时有效。 | -| **show_excerpt** | true, false (default) | 当 type 为 `normal` 时有效, 参考下面 [excerpt_type](#excerpt_type) 章节。 | -| **excerpt_type** | text, html | 当 type 为 `normal` 时有效。 | -| **show_readmore** | true, false (default) | 当 type 为 `normal` 时有效。 | -| **show_info** | true, false (default) | 当 type 为 `normal` 或 `brief` 时有效。 | - -### articles.excerpt_type - -文章列表中文章项的摘要有两种模式——TEXT 模式和 HTML 模式。 - -| 模式名称 | 描述 | -| --- | --- | -| **text** | 此时摘要为纯文本,会过滤掉一切非文本元素(标题,链接,列表,表格,图片等等),且截取前 350 个字符。 | -| **html** | 此时摘要为 HTML 文档,与文章内容一致,并且 **默认展示整篇文章的内容**。若想控制摘要内容,需要在文章中想要显示到的地方加上 ``,详情请戳 [这里](https://jekyllrb.com/docs/posts/#post-excerpts)。 | - -对于 Home 页,你可以像这样把 `excerpt_type` 设置为 `HTML`: - -```yaml -layout: home -articles: - excerpt_type: html -``` - -## Home 布局 - -继承于 Articles 布局。 - -## Archive 布局 - -继承于 Page 布局。 - -## Landing 布局 - -继承于 Page 布局。 - -| 配置项 | 可选值 | 描述 | -| --- | --- | --- | -| **data** | `!!map` | | - -## 404 布局 - -继承于 Page 布局。 diff --git a/docs/_docs/zh/2.4-logo-and-favicon.md b/docs/_docs/zh/2.4-logo-and-favicon.md deleted file mode 100644 index fb0bbba6fd3..00000000000 --- a/docs/_docs/zh/2.4-logo-and-favicon.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Logo 和 Favicon -permalink: /docs/zh/logo-and-favicon -key: docs-logo-and-favicon-zh ---- - -## Logo - -

      TeXt 使用 {% include svg/logo.svg %} 作为它的 Logo,你可以通过替换 _includes/svg/logo.svg 来设置你的 Logo。

      - -## Favicon - -TeXt 推荐使用 [RealFaviconGenerator](https://realfavicongenerator.net/) 来生成 Favicon。 - -打开 [RealFaviconGenerator](https://realfavicongenerator.net/) 后点击“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) - -图标设置完成后,你需要告诉生成器 Favicon 文件的网站路径,TeXt 将他们放在了 */assets* 目录。 - -推荐将 Favicon 文件放在网站的根目录下。 -{:.warning} - -![Select your Favicon path](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/realfavicongenerator-path.jpg) - -完成后点击“Generate your Favicons and HTML code”进入到最后一步。 - -![Result](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/realfavicongenerator-result.jpg) - -下载生成的 favicon 包,解压文件到你方才填写的路径,将 HTML 代码替换到 *_includes/head/favicon.html* 文件中。 diff --git a/docs/_docs/zh/2.5-authors.md b/docs/_docs/zh/2.5-authors.md deleted file mode 100644 index da36a9c4ebb..00000000000 --- a/docs/_docs/zh/2.5-authors.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: 作者 -permalink: /docs/zh/authors -key: docs-authors-zh ---- -文章或页面的作者默认为在 *_config.yml* 中配置的 `author`,当然你可以通过 YAML 头信息来指定特定文章的作者。 - -首先你需要有一个 *_data/authors.yml* 的文件,参考以下格式来增加作者信息。其可用参数和 *_config.yml* 中的 `author` 项的参数一致(type, name, url, avatar, bio, email, facebook 等)。 - -```yml -Tian Qi: - name : Tian Qi - url : https://kitian616.github.io - avatar : https://wx3.sinaimg.cn/large/73bd9e13ly1fjkqy66hl8j208c08c0td.jpg - bio : Author of TeXt. - email : kitian616@outlook.com - facebook : # "user_name" the last part of your profile url, e.g. https://www.facebook.com/user_name - twitter : kitian616 # "user_name" the last part of your profile url, e.g. https://twitter.com/user_name - weibo : 234695683 # "user_id" the last part of your profile url, e.g. https://www.weibo.com/user_id/profile?... - googleplus: 101827554735084402671 # "user_id" the last part of your profile url, e.g. https://plus.google.com/u/0/user_id - telegram : # "user_name" the last part of your profile url, e.g. https://t.me/user_name - medium : # "user_name" the last part of your profile url, e.g. https://medium.com/user_name - zhihu : # "user_name" the last part of your profile url, e.g. https://www.zhihu.com/people/user_name - douban : # "user_name" the last part of your profile url, e.g. https://www.douban.com/people/user_name - linkedin : # "user_name" the last part of your profile url, e.g. https://www.linkedin.com/in/user_name - github : kitian616 # "user_name" the last part of your profile url, e.g. https://github.com/user_name - npm : # "user_name" the last part of your profile url, e.g. https://www.npmjs.com/~user_name -``` - -将在 *authors.yml* 中定义的作者作为某篇文章或页面的作者以覆盖 `site.author` 全局作者。 - - --- - author: Tian Qi - --- diff --git a/docs/_docs/zh/2.7-i18n.md b/docs/_docs/zh/2.7-i18n.md deleted file mode 100644 index 7ed42cb53ca..00000000000 --- a/docs/_docs/zh/2.7-i18n.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: 国际化 -permalink: /docs/zh/i18n -key: docs-i18n-zh ---- - -TeXt 把 UI 元素的文字整理成一系列的翻译标识统一的放置在 *_data/locale.yml* 中,这样能够比较方便添加不同语言的支持。 - -通过 `titles` 配置项可以给文章,布局和导航定义定义多语言标题,TeXt 默认定义了很多这样的标题,它们分别位于 *_data/navigation*,*_layouts/archive*,*_layouts/home* 和 *about.md* 中。 - - - -上文所提到的翻译标识和多语言标题支持以下语言: - - -| 语言 | `lang` | -| --- | --- | -| **英语** | en, en-GB, en-US, en-CA, en-AU | -| **简体中文** | zh-Hans, zh, zh-CN, zh-SG | -| **繁体中文** | zh-Hant, zh-TW, zh-HK | -| **韩语** | ko, ko-KR | -| **法语** | fr, fr-BE, fr-CA, fr-CH, fr-FR, fr-LU | - - -你可以在 [这里](https://kitian616.github.io/jekyll-TeXt-theme/samples.html#languages) 找到不同语言的示例。 diff --git a/docs/_docs/zh/3.1-writing-posts.md b/docs/_docs/zh/3.1-writing-posts.md deleted file mode 100644 index 491ef2a060c..00000000000 --- a/docs/_docs/zh/3.1-writing-posts.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: 撰写博客 -permalink: /docs/zh/writing-posts -key: docs-writing-posts-zh ---- - -在[目录结构](http://jekyllcn.com/docs/structure/)介绍中说明过,**所有的文章都在 */_posts* 文件夹中**。这些文件可以用 Markdown 或 HTML 编写。只要文件中有 YAML 头信息,它们就会从源格式转化成 HTML 页面,从而成为你的静态网站的一部分。 - - - -## 创建文章 - -发表一篇新文章,你所需要做的就是在 */_posts* 文件夹中创建一个新的文件。文件名的命名非常重要。Jekyll 要求一篇文章的文件名遵循下面的格式: - - 年-月-日-标题.MARKUP - -下面是一些合法的文件名的例子: - - 2011-12-31-new-years-eve-is-awesome.md - 2012-09-12-how-to-write-a-blog.markdown - -## 内容相关 - -所有博客文章顶部必须有一段 YAML 头信息(YAML front-matter)。 - -为了提高文章的阅读和书写体验,TeXt 在 Markdown 原有的基础上做了一些增强。 - -### YAML 头信息 - - --- - layout: article - title: Document - Writing Posts - mathjax: true - --- - -在 `---` 之间你可以设置属性的值,可以把它们看作页面的配置,这些配置会覆盖在 *_config.yml* 文件中设置的全局配置。 - -除去 Jekyll 自定义的变量外,TeXt 也定义了一些额外的变量,详情请戳[布局](https://kitian616.github.io/jekyll-TeXt-theme/docs/zh/layouts)。 diff --git a/docs/_docs/zh/3.2-markdown-enhancements.md b/docs/_docs/zh/3.2-markdown-enhancements.md deleted file mode 100644 index 5e149e0ad8e..00000000000 --- a/docs/_docs/zh/3.2-markdown-enhancements.md +++ /dev/null @@ -1,171 +0,0 @@ ---- -title: Markdown 增强 -permalink: /docs/zh/markdown-enhancements -key: docs-markdown-enhancements-zh ---- - -你需要在 *_config.yml* 或 YAML 头信息中设置相关的属性为 `true` 来开启对应的功能。 - -| 增强项 | 描述 | -| --------------- | ----------- | -| **Mathjax** | 在文章中方便的加入数学公式,使用 MathML、LaTeX 和 ASCIIMathML 语法 | [示例](https://kitian616.github.io/jekyll-TeXt-theme/post/2017/07/07/mathjax.html) | -| **Mermaid** | 在文章中方便的加入流程图 | [示例](https://kitian616.github.io/jekyll-TeXt-theme/post/2017/06/06/mermaid.html) | -| **Chart** | 在文章中方便的加入可交互的图表 | [示例](https://kitian616.github.io/jekyll-TeXt-theme/post/2017/05/05/chart.html) | - -## Mathjax - -When $$a \ne 0$$, there are two solutions to $$ax^2 + bx + c = 0$$ and they are - -$$x_1 = {-b + \sqrt{b^2-4ac} \over 2a}$$ - -$$x_2 = {-b - \sqrt{b^2-4ac} \over 2a} \notag$$ - -**markdown:** - -```tex -When $$a \ne 0$$, there are two solutions to $$ax^2 + bx + c = 0$$ and they are -$$x_1 = {-b + \sqrt{b^2-4ac} \over 2a}$$ -$$x_2 = {-b - \sqrt{b^2-4ac} \over 2a} \notag$$ -``` - -**当 MathJax 激活后**,你可以设置 `mathjax_autoNumber: true` 让公式自动编号,你可以使用 \notag 或者 \nonumber 阻止某条公式自动编号。 -{:.info} - -## Mermaid - -```mermaid -graph TB; - A[Do you have a problem in your life?] - B[Then don't worry] - C[Can you do something about it?] - A--no-->B; - A--yes-->C; - C--no-->B; - C--yes-->B; -``` - -**markdown:** - - ```mermaid - graph TB; - A[Do you have a problem in your life?] - B[Then don't worry] - C[Can you do something about it?] - A--no-->B; - A--yes-->C; - C--no-->B; - C--yes-->B; - ``` - -[Mermaid](https://mermaidjs.github.io/) 支持以下三种示意图: - -- [Flowchart](https://mermaidjs.github.io/flowchart.html) - -- [Sequence Diagram](https://mermaidjs.github.io/sequenceDiagram.html) - -- [Gant Diagram](https://mermaidjs.github.io/gantt.html) - -## Chart - -```chart -{ - "type": "line", - "data": { - "labels": [ - "January", - "February", - "March", - "April", - "May", - "June", - "July" - ], - "datasets": [ - { - "label": "# of bugs", - "fill": false, - "lineTension": 0.1, - "backgroundColor": "rgba(75,192,192,0.4)", - "borderColor": "rgba(75,192,192,1)", - "borderCapStyle": "butt", - "borderDash": [], - "borderDashOffset": 0, - "borderJoinStyle": "miter", - "pointBorderColor": "rgba(75,192,192,1)", - "pointBackgroundColor": "#fff", - "pointBorderWidth": 1, - "pointHoverRadius": 5, - "pointHoverBackgroundColor": "rgba(75,192,192,1)", - "pointHoverBorderColor": "rgba(220,220,220,1)", - "pointHoverBorderWidth": 2, - "pointRadius": 1, - "pointHitRadius": 10, - "data": [ - 65, - 59, - 80, - 81, - 56, - 55, - 40 - ], - "spanGaps": false - } - ] - }, - "options": {} -} -``` - -**markdown:** - - ```chart - { - "type": "polarArea", - "data": { - "datasets": [ - { - "data": [ - 11, - 16, - 7, - 3, - 14 - ], - "backgroundColor": [ - "#FF6384", - "#4BC0C0", - "#FFCE56", - "#E7E9ED", - "#36A2EB" - ], - "label": "My dataset" - } - ], - "labels": [ - "Red", - "Green", - "Yellow", - "Grey", - "Blue" - ] - }, - "options": {} - } - ``` - -[Chart.js](http://www.chartjs.org/docs/latest/) 支持以下 7 种图表: - -- [Line Chart](http://www.chartjs.org/docs/latest/charts/line.html) - -- [Bar Chart](http://www.chartjs.org/docs/latest/charts/bar.html) - -- [Radar Chart](http://www.chartjs.org/docs/latest/charts/radar.html) - -- [Polar Area Chart](http://www.chartjs.org/latest/charts/polar.html) - -- [Pie Chart](http://www.chartjs.org/docs/latest/charts/doughnut.html) - -- [Doughnut Chart](http://www.chartjs.org/docs/latest/charts/doughnut.html) - -- [Bubble Chart](http://www.chartjs.org/docs/latest/charts/bubble.html) diff --git a/docs/_docs/zh/3.3-additional-styles.md b/docs/_docs/zh/3.3-additional-styles.md deleted file mode 100644 index 367e42e0897..00000000000 --- a/docs/_docs/zh/3.3-additional-styles.md +++ /dev/null @@ -1,169 +0,0 @@ ---- -title: 附加样式 -permalink: /docs/zh/additional-styles -key: docs-additional-styles-zh ---- - -Jekyll 使用 kramdown 作为默认 Markdown 解释器。kramdown 可以通过 ALDs[^ALDs] 来设置块级元素或行内元素的属性。例如,可以通过 `{:.class-name1.class-name-2}` 来给元素定义样式类。 - -TeXt 定义了一些样式类,你可以在文章和页面的方便的使用,可以在 [这里](https://kitian616.github.io/jekyll-TeXt-theme/post/2017/08/08/additional-styles.html) 看到示例和详细的说明. - -[^ALDs]: [Attribute List Definitions](https://kramdown.gettalong.org/syntax.html#attribute-list-definitions) - -## 提示 - -| 样式名称 | -| ---- | -| **success** | -| **info** | -| **warning** | -| **error** | - -Success Text. -{:.success} - -Info Text. -{:.info} - -Warning Text. -{:.warning} - -Error Text. -{:.error} - -**markdown:** - - Success Text. - {:.success} -^ - Info Text. - {:.info} -^ - Warning Text. - {:.warning} -^ - Error Text. - {:.error} - -## 标签 - -| Class Names | -| ---- | -| **success** | -| **info** | -| **warning** | -| **error** | - -`success`{:.success} - -`info`{:.info} - -`warning`{:.warning} - -`error`{:.error} - -**markdown:** - - `success`{:.success} -^ - `info`{:.info} -^ - `warning`{:.warning} -^ - `error`{:.error} - -## 图片 - -| 样式名称 | -| ---- | -| **border** | -| **shadow** | -| **rounded** | -| **circle** | - -### Border - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_border"){:.border} -
      -
      - ![Image](path-to-image){:.border} -
      -
      -
      - -### Shadow - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_shadow"){:.shadow} -
      -
      - ![Image](path-to-image){:.shadow} -
      -
      -
      - -### Rounded - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_rounded"){:.rounded} -
      -
      - ![Image](path-to-image){:.rounded} -
      -
      -
      - -### Circle - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_circle"){:.circle} -
      -
      - ![Image](path-to-image){:.circle} -
      -
      -
      - -### Mixture - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_border+rounded"){:.border.rounded} -
      -
      - ![Image](path-to-image){:.border.rounded} -
      -
      -
      - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_circle+shadow"){:.circle.shadow} -
      -
      - ![Image](path-to-image){:.circle.shadow} -
      -
      -
      - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_circle+border+shadow"){:.circle.border.shadow} -
      -
      - ![Image](path-to-image){:.circle.border.shadow} -
      -
      -
      diff --git a/docs/_docs/zh/3.4-extensions.md b/docs/_docs/zh/3.4-extensions.md deleted file mode 100644 index d79f4b02f6a..00000000000 --- a/docs/_docs/zh/3.4-extensions.md +++ /dev/null @@ -1,172 +0,0 @@ ---- -title: 扩展 -permalink: /docs/zh/extensions -key: docs-extensions-zh ---- - -## 音频 - -| 扩展名称 | 最新版本 | -| --- | --- | -| SoundCloud | 2.2.2 | -| Netease Cloud Music | 2.2.2 | - -### SoundCloud - -**id:** - -![extensions-soundcloud](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/extensions-soundclound.jpg){:style="max-height:500px"}{:.border} - -**html:** - -{% raw %} -```html -{%- include extensions/soundcloud.html id='313627932' -%} -``` - -**markdown:** - -``` -
      {%- include extensions/soundcloud.html id='313627932' -%}
      -``` -{% endraw %} - -### 网易云音乐 - -**id:** - -![extensions-soundcloud](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/extensions-netease-cloud-music.jpg){:style="max-height:320px"}{:.border} - -**html:** - -{% raw %} -```html -{%- include extensions/netease-cloud-music.html id='413812448' -%} -``` - -**markdown:** - -``` -
      {%- include extensions/netease-cloud-music.html id='413812448' -%}
      -``` -{% endraw %} - -## 视频 - -| 扩展名称 | 最新版本 | -| --- | --- | -| YouTube | 2.2.2 | -| TED | 2.2.2 | -| bilibili | 2.2.2 | - -### YouTube - -**id:** - -![extensions-soundcloud](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/extensions-youtube.jpg){:style="max-height:250px"}{:.border} - -**html:** - -{% raw %} -```html -{%- include extensions/youtube.html id='wbY97-hdD5c' -%} -``` - -**markdown:** - -``` -
      {%- include extensions/youtube.html id='wbY97-hdD5c' -%}
      -``` -{% endraw %} - -### TED - -**id:** - -![extensions-soundcloud](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/extensions-ted.jpg){:style="max-height:83px"}{:.border} - -**html:** - -{% raw %} -```html -{%- include extensions/ted.html id='emily_esfahani_smith_there_s_more_to_life_than_being_happy' -%} -``` - -**markdown:** - -``` -
      {%- include extensions/ted.html id='emily_esfahani_smith_there_s_more_to_life_than_being_happy' -%}
      -``` -{% endraw %} - -### 哔哩哔哩 - -**id:** - -![extensions-bilibili](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/extensions-bilibili.jpg){:style="max-height:190px"}{:.border} - -**html:** - -{% raw %} -```html -{%- include extensions/bilibili.html id='11091080' -%} -``` - -**markdown:** - -``` -
      {%- include extensions/bilibili.html id='11091080' -%}
      -``` -{% endraw %} - -## 幻灯片 - -| 扩展名称 | 最新版本 | -| --- | --- | -| SlideShare | 2.2.2 | - -### SlideShare - -**id:** - -![extensions-slideshare](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/extensions-slideshare.jpg){:style="max-height:480px"}{:.border} - -**html:** - -{% raw %} -```html -{%- include extensions/slideshare.html id='u9L9zDsqEWNKE1' -%} -``` - -**markdown:** - -``` -
      {%- include extensions/slideshare.html id='u9L9zDsqEWNKE1' -%}
      -``` -{% endraw %} - -## 在线示例 - -| 扩展名称 | 最新版本 | -| --- | --- | -| CodePen | 2.2.3 | - -### CodePen - -**user & hash:** - -![extensions-codepen](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/extensions-codepen.jpg){:style="max-height:100px"}{:.border} - -**html:** - -{% raw %} -```html -{%- include extensions/codepen.html user='kitian616' hash='aQmWZG' default_tab='html,result' -%} -``` - -**markdown:** - -``` -
      {%- include extensions/codepen.html user='kitian616' hash='aQmWZG' default_tab='html,result' -%}
      -``` -{% endraw %} diff --git a/docs/_includes/article/footer/custom.html b/docs/_includes/article/footer/custom.html deleted file mode 100644 index 866459e74f7..00000000000 --- a/docs/_includes/article/footer/custom.html +++ /dev/null @@ -1,44 +0,0 @@ - -{% assign _root_path = page.path | slice: 0, 5 %} -{% assign _lang = page.lang | slice: 0, 2 %} -{%- if _root_path == '_docs' -%} - {%- if _lang == 'zh' -%} -
      -
      -

      你的支持是我的动力。你可以通过以下方式支持我:

      - - - - - - - - - - -
      微信支付支付宝
      微信支付二维码支付宝二维码
      -
      - - {%- else -%} -
      -
      - Tip Me via PayPal - - Tip Me via Bitcoin -
      BTC: 3Fkufxcw2xd8HnaRJBNK4ccdtkUDyyNu4V
      -
      - -
      - {%- endif -%} -{%- endif -%} - diff --git a/docs/_includes/main/bottom/custom.html b/docs/_includes/main/bottom/custom.html deleted file mode 100644 index 6da85c636d5..00000000000 --- a/docs/_includes/main/bottom/custom.html +++ /dev/null @@ -1,15 +0,0 @@ - -
      - - - - -
      - diff --git a/docs/_posts/2015-01-01-article-with-long-toc.md b/docs/_posts/2015-01-01-article-with-long-toc.md deleted file mode 100644 index 1448b6c6ac7..00000000000 --- a/docs/_posts/2015-01-01-article-with-long-toc.md +++ /dev/null @@ -1,67 +0,0 @@ ---- -title: Test - Article with Long TOC -key: 20150101 -tags: Test ---- - -Article with long TOC. - - - -## TeXt Heading - -### TeXt Heading - -### TeXt Heading - -#### TeXt Heading - -##### TeXt Heading - -###### TeXt Heading - -### TeXt Heading - -## Very Very Very Very Very Very Very Very Very Very Very Very Very Extremely Completely Extraordinary Long Long Long Long Title - -### TeXt Heading - -### TeXt Heading - -### TeXt Heading - -### TeXt Heading - -### TeXt Heading - -### TeXt Heading - -## TeXt Heading - -### TeXt Heading - -### Very Very Very Very Very Very Very Very Very Very Very Very Very Extremely Completely Extraordinary Long Long Long Long Title - -## TeXt Heading - -### TeXt Heading - -### TeXt Heading - -## TeXt Heading - -### TeXt Heading - -### TeXt Heading - -### TeXt Heading - -### TeXt Heading - -### TeXt Heading - -### Very Very Very Very Very Very Very Very Very Very Very Very Very Extremely Completely Extraordinary Long Long Long Long Title - -### TeXt Heading - -### TeXt Heading diff --git a/docs/_posts/2015-01-03-article-with-lots-images.md b/docs/_posts/2015-01-03-article-with-lots-images.md deleted file mode 100644 index 0bdecb41d7b..00000000000 --- a/docs/_posts/2015-01-03-article-with-lots-images.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Test - Article with Lots of Images -key: 20150103 -tags: Test ---- - -## TeXt Theme - Cover - -![TeXt Theme](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/TeXt-home.jpg) - - - -## TeXt Theme - Layouts - -![TeXt Theme Layouts](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/TeXt-layouts.png) - -## Skin: Default - -![default](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_default.jpg) - -## Skin: Dark - -![dark](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_dark.jpg) - -## Skin: Forest - -![forest](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_forest.jpg) - -## Skin: Ocean - -![ocean](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_ocean.jpg) - -## Skin: Chocolate - -![chocolate](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_chocolate.jpg) - -## Skin: Orange - -![orange](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/screenshots/skins_orange.jpg) diff --git a/docs/_posts/2015-01-06-punctuation-characters'.md b/docs/_posts/2015-01-06-punctuation-characters'.md deleted file mode 100644 index 0c6a60dda31..00000000000 --- a/docs/_posts/2015-01-06-punctuation-characters'.md +++ /dev/null @@ -1,70 +0,0 @@ ---- -title: 'Test - ~`!@ #$%^ &*() -=_+ []{} \|;: ,.<> ?/''" αβγδ ÁÀÂÄÃĄÆ ®☃︎⌘✉︎ 😂🤣👻👽' -key: 20150106 -tags: -- Test -- S P A C E -- '~`!@' -- '#$%^' -- '&*()' -- '-=_+' -- '[]{}' -- '\|;:' -- ',.<>' -- '?/''"' -- αβγδ -- ÁÀÂÄÃĄÆ -- ®☃︎⌘✉︎ -- 😂🤣👻👽 ---- - -Unicode characters - - - -## Basic Latin - - !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{\|}~ - -## Latin-1 Supplement - - ¡¢£¤¥¦§¨©ª«¬ ®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ - -## Latin Extended-A - -ĀāĂ㥹ĆćĈĉĊċČčĎďĐđĒēĔĕĖėĘęĚěĜĝĞğĠġĢģĤĥĦħĨĩĪīĬĭĮįİıIJijĴĵĶķĸĹĺĻļĽľĿŀŁłŃńŅņŇňʼnŊŋŌōŎŏŐőŒœŔŕŖŗŘřŚśŜŝŞşŠšŢţŤťŦŧŨũŪūŬŭŮůŰűŲųŴŵŶŷŸŹźŻżŽžſ - -## Latin Extended-B - -ƀƁƂƃƄƅƆƇƈƉƊƋƌƍƎƏƐƑƒƓƔƕƖƗƘƙƚƛƜƝƞƟƠơƢƣƤƥƦƧƨƩƪƫƬƭƮƯưƱƲƳƴƵƶƷƸƹƺƻƼƽƾƿǀǁǂǃDŽDždžLJLjljNJNjnjǍǎǏǐǑǒǓǔǕǖǗǘǙǚǛǜǝǞǟǠǡǢǣǤǥǦǧǨǩǪǫǬǭǮǯǰDZDzdzǴǵǶǷǸǹǺǻǼǽǾǿȀȁȂȃȄȅȆȇȈȉȊȋȌȍȎȏȐȑȒȓȔȕȖȗȘșȚțȜȝȞȟȠȡȢȣȤȥȦȧȨȩȪȫȬȭȮȯȰȱȲȳȴȵȶȷȸȹȺȻȼȽȾȿɀɁɂɃɄɅɆɇɈɉɊɋɌɍɎɏ - -## Latin Extended Additional - -ḂḃḊḋḞḟṀṁṖṗṠṡṪṫẀẁẂẃẄẅẛỲỳ - -## Greek and Coptic - -ͰͱͲͳʹ͵Ͷͷͺͻͼͽ;Ϳ΄΅Ά·ΈΉΊΌΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώϏϐϑϒϓϔϕϖϗϘϙϚϛϜϝϞϟϠϡϢϣϤϥϦϧϨϩϪϫϬϭϮϯϰϱϲϳϴϵ϶ϷϸϹϺϻϼϽϾϿ - -## Greek Extended - -ἀἁἂἃἄἅἆἇἈἉἊἋἌἍἎἏἐἑἒἓἔἕἘἙἚἛἜἝἠἡἢἣἤἥἦἧἨἩἪἫἬἭἮἯἰἱἲἳἴἵἶἷἸἹἺἻἼἽἾἿὀὁὂὃὄὅὈὉὊὋὌὍὐὑὒὓὔὕὖὗὙὛὝὟὠὡὢὣὤὥὦὧὨὩὪὫὬὭὮὯὰάὲέὴήὶίὸόὺύὼώᾀᾁᾂᾃᾄᾅᾆᾇᾈᾉᾊᾋᾌᾍᾎᾏᾐᾑᾒᾓᾔᾕᾖᾗᾘᾙᾚᾛᾜᾝᾞᾟᾠᾡᾢᾣᾤᾥᾦᾧᾨᾩᾪᾫᾬᾭᾮᾯᾰᾱᾲᾳᾴᾶᾷᾸᾹᾺΆᾼ᾽ι᾿῀῁ῂῃῄῆῇῈΈῊΉῌ῍῎῏ῐῑῒΐῖῗῘῙῚΊ῝῞῟ῠῡῢΰῤῥῦῧῨῩῪΎῬ῭΅`ῲῳῴῶῷῸΌῺΏῼ´῾ - -## Cyrillic -ЀЁЂЃЄЅІЇЈЉЊЋЌЍЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяѐёђѓєѕіїјљњћќѝўџѠѡѢѣѤѥѦѧѨѩѪѫѬѭѮѯѰѱѲѳѴѵѶѷѸѹѺѻѼѽѾѿҀҁ҂҃҄҅҆҇҈҉ҊҋҌҍҎҏҐґҒғҔҕҖҗҘҙҚқҜҝҞҟҠҡҢңҤҥҦҧҨҩҪҫҬҭҮүҰұҲҳҴҵҶҷҸҹҺһҼҽҾҿӀӁӂӃӄӅӆӇӈӉӊӋӌӍӎӏӐӑӒӓӔӕӖӗӘәӚӛӜӝӞӟӠӡӢӣӤӥӦӧӨөӪӫӬӭӮӯӰӱӲӳӴӵӶӷӸӹӺӻӼӽӾӿ - -## Unicode symbols - -–—―‗‘’‚‛“”„†‡•…‰′″‹›‼‾⁄⁊ - -## Others - -ㄅㄉㄓㄚㄞㄢㄦㄆㄊㄍㄐㄔㄗㄧㄛㄟㄣㄇㄋㄎㄑㄕㄘㄨㄜㄠㄤㄈㄏㄒㄖㄙㄩㄝㄡㄥ - -ぁぃぅぇぉかきくけこんさしすせそたちつってとゐなにぬねのはひふへほゑまみむめもゃゅょゎを - -ァィゥヴェォカヵキクケヶコサシスセソタチツッテトヰンナニヌネノハヒフヘホヱマミムメモャュョヮヲ - -®☃︎⌘✉︎ - -😂🤣👻👽 diff --git a/docs/_posts/2015-02-02-very-long-title.md b/docs/_posts/2015-02-02-very-long-title.md deleted file mode 100644 index b3cef0af2cd..00000000000 --- a/docs/_posts/2015-02-02-very-long-title.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Test - Very Very Very Very Very Very Very Very Very Very Very Very Very Extremely Completely Extraordinary Long Long Long Long Title -key: 20150202 -tags: Test ---- - -Article With Very Long Title. diff --git a/docs/_posts/2016-05-02-horizontal-rules.md b/docs/_posts/2016-05-02-horizontal-rules.md deleted file mode 100644 index 2ee8df7c433..00000000000 --- a/docs/_posts/2016-05-02-horizontal-rules.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Jekyll - Horizontal Rules -key: 20160502 -tags: Jekyll ---- - -* * * - - - - * * * - -*** - - *** - -***** - - ***** - -- - - - - - - - - ---------------------------------------- - - --------------------------------------- diff --git a/docs/_posts/2016-05-04-footnote.md b/docs/_posts/2016-05-04-footnote.md deleted file mode 100644 index db2f8c7b609..00000000000 --- a/docs/_posts/2016-05-04-footnote.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Jekyll - Footnote -key: 20160504 -tags: Jekyll ---- - -Here is a footnote reference,[^1] and another.[^longnote] - -[^1]: Here is the footnote. - -[^longnote]: Here’s one with multiple blocks. - - Subsequent paragraphs are indented to show that they -belong to the previous footnote. - - - -**markdown:** - - Here is a footnote reference,[^1] and another.[^longnote] - - [^1]: Here is the footnote. - - [^longnote]: Here’s one with multiple blocks. - - Subsequent paragraphs are indented to show that they - belong to the previous footnote. diff --git a/docs/_posts/2016-05-05-definition.md b/docs/_posts/2016-05-05-definition.md deleted file mode 100644 index b277bb20aae..00000000000 --- a/docs/_posts/2016-05-05-definition.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Jekyll - Definition -key: 20160505 -tags: Jekyll ---- - -kramdown -: A Markdown-superset converter - -Maruku -: Another Markdown-superset converter - - - -**markdown:** - - kramdown - : A Markdown-superset converter - - Maruku - : Another Markdown-superset converter diff --git a/docs/_posts/2016-05-08-blockquotes.md b/docs/_posts/2016-05-08-blockquotes.md deleted file mode 100755 index 5ee95ac0156..00000000000 --- a/docs/_posts/2016-05-08-blockquotes.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: Jekyll - Blockquotes -key: 20160508 -tags: Jekyll ---- - -> “There is nothing either good or bad, but thinking makes it so.” -> -> —Hamlet in *Hamlet* - - - -**markdown:** - - > “There is nothing either good or bad, but thinking makes it so.” - > - > —Hamlet in *Hamlet* - ---- - -> “From women’s eyes this doctrine I derive: -> -> They sparkle still the right Promethean fire; -> -> They are the books, the arts, the academes, -> -> That show, contain, and nourish all the world.” -> -> —Berowne in *Love’s Labor’s Lost* diff --git a/docs/_posts/2016-06-06-lists.md b/docs/_posts/2016-06-06-lists.md deleted file mode 100755 index d7f864ce35c..00000000000 --- a/docs/_posts/2016-06-06-lists.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Jekyll - Lists -key: 20160606 -tags: Jekyll ---- - -## Unordered list - -* Aenean -* vel - * libero - * eget -* ante - - - -**markdown:** - - * Aenean - * vel - * libero - * eget - * ante - -## Ordered list - -1. Aenean -2. vel -3. libero -4. eget -5. ante - -**markdown:** - - 1. Aenean - 2. vel - 3. libero - 4. eget - 5. ante - -## Task list - -- [ ] a bigger project - - [x] first subtask - - [x] follow up subtask - - [ ] final subtask -- [ ] a separate task diff --git a/docs/_posts/2016-06-10-tables.md b/docs/_posts/2016-06-10-tables.md deleted file mode 100755 index 105aaeb0637..00000000000 --- a/docs/_posts/2016-06-10-tables.md +++ /dev/null @@ -1,84 +0,0 @@ ---- -title: Jekyll - Tables -key: 20160610 -tags: Jekyll ---- - -## Align - -|-----------------+------------+-----------------+----------------| -| Default aligned |Left aligned| Center aligned | Right aligned | -|-----------------|:-----------|:---------------:|---------------:| -| First body part |Second cell | Third cell | fourth cell | -| Second line |foo | **strong** | baz | -| Third line |quux | baz | bar | -|-----------------+------------+-----------------+----------------| -| Second body | | | | -| 2 line | | | | -|=================+============+=================+================| -| Footer row | | | | -|-----------------+------------+-----------------+----------------| - - - -**markdown:** - - |-----------------+------------+-----------------+----------------| - | Default aligned |Left aligned| Center aligned | Right aligned | - |-----------------|:-----------|:---------------:|---------------:| - | First body part |Second cell | Third cell | fourth cell | - | Second line |foo | **strong** | baz | - | Third line |quux | baz | bar | - |-----------------+------------+-----------------+----------------| - | Second body | | | | - | 2 line | | | | - |=================+============+=================+================| - | Footer row | | | | - |-----------------+------------+-----------------+----------------| - ---- - -|--- -| Default aligned | Left aligned | Center aligned | Right aligned -|-|:-|:-:|-: -| First body part | Second cell | Third cell | fourth cell -| Second line |foo | **strong** | baz -| Third line |quux | baz | bar -|--- -| Second body -| 2 line -|=== -| Footer row - -**markdown:** - - |--- - | Default aligned | Left aligned | Center aligned | Right aligned - |-|:-|:-:|-: - | First body part | Second cell | Third cell | fourth cell - | Second line |foo | **strong** | baz - | Third line |quux | baz | bar - |--- - | Second body - | 2 line - |=== - | Footer row - -## Table With Images - -| Model | iPhone 6S | iPhone 6S Plus | iPhone SE | iPhone 7 | iPhone 7 Plus | iPhone 8 | iPhone 8 Plus | iPhone X | -| ----- | --------- | -------------- | --------- | -------- | ------------- | -------- | ------------- | -------- | -| Picture | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/IPhone_6s_vector.svg/210px-IPhone_6s_vector.svg.png) | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/IPhone_6s_Plus_vector.svg/250px-IPhone_6s_Plus_vector.svg.png) | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/IPhone_SE_in_silver.png/190px-IPhone_SE_in_silver.png) | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/IPhone_7_Jet_Black.svg/210px-IPhone_7_Jet_Black.svg.png) | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/IPhone_7_Plus_Jet_Black.svg/250px-IPhone_7_Plus_Jet_Black.svg.png) | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/IPhone_8_vector.svg/210px-IPhone_8_vector.svg.png) | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/7/70/IPhone_8_plus_vector.svg/250px-IPhone_8_plus_vector.svg.png) | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/IPhone_X_vector.svg/220px-IPhone_X_vector.svg.png) | -| Initial release operating system | iOS 9.0 | iOS 9.0 | iOS 9.3 | iOS 10.0 | iOS 10.0 | iOS 11.0 | iOS 11.0 | iOS 11.0.1 | -| Display | 4.7 in (120 mm), 4.1 in (100 mm) by 2.3 in (58 mm), 16:9 aspect ratio, aluminosilicate glass covered 16,777,216-color (24-bit), IPS LCD screen, 1,334 × 750 px screen resolution at 326 ppi, 1400:1 contrast ratio, 500 ​cd⁄m² max brightness, LED backlight and fingerprint-resistant oleophobic coating | 5.5 in (140 mm), 4.8 in (120 mm) by 2.7 in (69 mm), 16:9 aspect ratio, aluminosilicate glass covered 16,777,216-color (24-bit), IPS LCD screen, 1,920 × 1,080 px (Full HD) screen resolution at 401 ppi, 1300:1 contrast ratio, 500 ​cd⁄m² max brightness, LED backlight and fingerprint-resistant oleophobic coating | 4 in (100 mm), 3.5 in (89 mm) by 1.9 in (48 mm), 71:40 (~16:9) aspect ratio, aluminosilicate glass covered 16,777,216-color (24-bit), IPS LCD screen, 1,136 × 640 px (WSVGA) screen resolution at 326 ppi, pixel size 78 µm, 800:1 contrast ratio, 500 ​cd⁄m² max brightness, LED backlight and fingerprint-resistant oleophobic coating | In addition to 6S: 625 ​cd⁄m² max brightness | In addition to 6S Plus: 625 ​cd⁄m² max brightness | In addition to 7: True Tone display | In addition to 7 Plus: True Tone display | 5.8 in (150 mm), 5.31 in (135 mm) by 2.45 in (62 mm), ~19.5:9 aspect ratio, aluminosilicate glass covered 16,777,216-color (24-bit), AMOLED screen, 2,436 × 1,125 px screen resolution at 458 ppi, 1,000,000:1 contrast ratio, 625 ​cd⁄m² max brightness, fingerprint-resistant oleophobic coating, True Tone display, Dolby Vision and HDR10 support | - -> From Wikipedia, the free encyclopedia - -## Table With Long Text - -| Language | Demo | -| -------- | ---- | -| C | printf("hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!"); | -| C++ | std::cout<<"hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!hello,world!"<` tags for this. - -Here is a literal `` ` `` backtick. -And here is `` `some` `` text (note the two spaces so that one is left -in the output!). - -```javascript -(() => console.log('hello, world! hello, world! hello, world! hello, world! hello, world! hello, world! hello, world! hello, world!'))(); -``` - - - -**markdown:** - - Here is a literal `` ` `` backtick. - And here is `` `some` `` text (note the two spaces so that one is left - in the output!). - -## Standard Code Blocks - - Here comes some code - - This text belongs to the same code block. - -^ - This one is separate. - -**markdown:** - -``` - Here comes some code - - This text belongs to the same code block. - -^ - This one is separate. -``` - ---- - -``` -(() => console.log('hello, world! hello, world! hello, world! hello, world! hello, world! hello, world! hello, world! hello, world!'))(); -``` - -**markdown:** - - ``` - (() => console.log('hello, world! hello, world! hello, world! hello, world! hello, world! hello, world! hello, world! hello, world!'))(); - ``` - ---- - -```javascript -(() => console.log('hello, world!'))(); -``` - -**markdown:** - - ```javascript - (() => console.log('hello, world!'))(); - ``` - ---- - -```none -(() => console.log('hello, world! hello, world! hello, world! hello, world! hello, world! hello, world! hello, world! hello, world!'))(); -``` - -## Highlighting Code Snippets - -{% highlight javascript %} -(() => console.log('hello, world!'))(); -{% endhighlight %} - -**markdown:** - -``` -{%- raw -%} -{% highlight javascript %} -(() => console.log('hello, world!'))(); -{% endhighlight %} -{% endraw %} -``` - -### Line Numbers - -{% highlight javascript linenos %} -var hello = 'hello'; -var world = 'world'; -var space = ' '; -(() => console.log(hello + space + world + space + hello + space + world + space + hello + space + world + space + hello + space + world))(); -{% endhighlight %} - -**markdown:** - -``` -{%- raw -%} -{% highlight javascript linenos %} -var hello = 'hello'; -var world = 'world'; -var space = ' '; -(() => console.log(hello + space + world + space + hello + space + world + space + hello + space + world + space + hello + space + world))(); -{% endhighlight %} -{% endraw %} -``` - ---- - -{% highlight javascript %} -(() => console.log('hello, world! hello, world! hello, world! hello, world! hello, world! hello, world! hello, world! hello, world!'))(); -{% endhighlight %} - -{% highlight none %} -(() => console.log('hello, world! hello, world! hello, world! hello, world! hello, world! hello, world! hello, world! hello, world!'))(); -{% endhighlight %} - -## Fenced Code Blocks - -~~~ -Here comes some code. -~~~ - -**markdown:** - - ~~~ - Here comes some code. - ~~~ - ---- - -~~~~~~~~~~~~ -~~~~~~~ -code with tildes -~~~~~~~~ -~~~~~~~~~~~~~~~~~~ - -**markdown:** - - ~~~~~~~~~~~~ - ~~~~~~~ - code with tildes - ~~~~~~~~ - ~~~~~~~~~~~~~~~~~~ - -## Language of Code Blocks - -~~~ -def what? - 42 -end -~~~ -{: .language-ruby} - -**markdown:** - - ~~~ - def what? - 42 - end - ~~~ - {: .language-ruby} - ---- - -~~~ ruby -def what? - 42 -end -~~~ - -**markdown:** - - ~~~ ruby - def what? - 42 - end - ~~~ diff --git a/docs/_posts/2016-07-07-images.md b/docs/_posts/2016-07-07-images.md deleted file mode 100755 index 0d227e610c6..00000000000 --- a/docs/_posts/2016-07-07-images.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Jekyll - Images -key: 20160707 -tags: Jekyll ---- - -![](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg) - -An :apple: a day, keeps :woman_health_worker: :man_health_worker: away. - - - -**markdown:** - - ![](path-to-image) - -## With ALT - -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg) - -**markdown:** - - ![Image](path-to-image) - -## With Title - -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image") - -**markdown:** - - ![Image](path-to-image "Image") - -## Specify Width and Height - -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image@128x128"){:width="128px" height="128px"} - -**markdown:** - - ![Image](path-to-image){:width="128px" height="128px"} - ---- - -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image@64x64"){:width="64px" height="64px"} - -**markdown:** - - ![Image](path-to-image){:width="64px" height="64px"} diff --git a/docs/_posts/2016-09-01-links.md b/docs/_posts/2016-09-01-links.md deleted file mode 100755 index 38dcd9fc3c5..00000000000 --- a/docs/_posts/2016-09-01-links.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Jekyll - Links -key: 20160901 -tags: Jekyll ---- - -[TeXt](https://github.com/kitian616/jekyll-TeXt-theme/) - - - -**markdown:** - - [TeXt](https://github.com/kitian616/jekyll-TeXt-theme/) - -## With Title - -[TeXt](https://github.com/kitian616/jekyll-TeXt-theme/ "TeXt") - -**markdown:** - - [TeXt](https://github.com/kitian616/jekyll-TeXt-theme/ "TeXt") - -## Reference Links - -[TeXt][TeXt] is a super customizable Jekyll theme. - -[TeXt]: https://github.com/kitian616/jekyll-TeXt-theme/ "TeXt" - -**markdown:** - - [TeXt][TeXt] is a super customizable Jekyll theme. - - [TeXt]: https://github.com/kitian616/jekyll-TeXt-theme/ "TeXt" - -## Link Within A Paragraph - -[TeXt](https://github.com/kitian616/jekyll-TeXt-theme/) is a super customizable Jekyll theme for personal site, team site, blog, project, documentation, etc. Similar to iOS 11 style, it has large and prominent titles, round buttons and cards. - -**markdown:** - - [TeXt](https://github.com/kitian616/jekyll-TeXt-theme/) is a super customizable Jekyll theme for personal site, team site, blog, project, documentation, etc. Similar to iOS 11 style, it has large and prominent titles, round buttons and cards. diff --git a/docs/_posts/2016-09-09-emphasis.md b/docs/_posts/2016-09-09-emphasis.md deleted file mode 100755 index 6a852c0370b..00000000000 --- a/docs/_posts/2016-09-09-emphasis.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Jekyll - Emphasis -key: 20160909 -tags: Jekyll ---- - -*Should Old Acquaintance be forgot* - -_Should Old Acquaintance be forgot_ - -**Should Old Acquaintance be forgot** - -__Should Old Acquaintance be forgot__ - - - -**markdown:** - - *Should Old Acquaintance be forgot* - _Should Old Acquaintance be forgot_ - **Should Old Acquaintance be forgot** - __Should Old Acquaintance be forgot__ - ---- - -This is a ***text with light and strong emphasis***. - -This **is _emphasized_ as well**. - -This *does _not_ work*. - -This **does __not__ work either**. - -**markdown:** - -``` -This is a ***text with light and strong emphasis***. -This **is _emphasized_ as well**. -This *does _not_ work*. -This **does __not__ work either**. -``` diff --git a/docs/_posts/2016-09-19-headers.md b/docs/_posts/2016-09-19-headers.md deleted file mode 100755 index 384c9ee36ef..00000000000 --- a/docs/_posts/2016-09-19-headers.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Jekyll - Headers -key: 20160919 -tags: Jekyll ---- - -# H1. TeXt Heading - -## H2. TeXt Heading - -### H3. TeXt Heading - -#### H4. TeXt Heading - -##### H5. TeXt Heading - -###### H6. TeXt Heading - - - -**markdown:** - - # H1. TeXt Heading - ## H2. TeXt Heading - ### H3. TeXt Heading - #### H4. TeXt Heading - ##### H5. TeXt Heading - ###### H6. TeXt Heading - -H1. TeXt Heading -================== - -H2. TeXt Heading ------- - -**markdown:** - - H1. TeXt Heading - ================== - - H2. TeXt Heading - ------ diff --git a/docs/_posts/2016-10-10-paragraphs.md b/docs/_posts/2016-10-10-paragraphs.md deleted file mode 100755 index 8e59c8b49f7..00000000000 --- a/docs/_posts/2016-10-10-paragraphs.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: Jekyll - Paragraphs -key: 20161010 -tags: Jekyll ---- - -Electroencephalography (EEG) is an electrophysiological monitoring method to record electrical activity of the brain. It is typically noninvasive, with the electrodes placed along the scalp, although invasive electrodes are sometimes used such as in electrocorticography. EEG measures voltage fluctuations resulting from ionic current within the neurons of the brain. In clinical contexts, EEG refers to the recording of the brain’s spontaneous electrical activity over a period of time, as recorded from multiple electrodes placed on the scalp. Diagnostic applications generally focus either on event-related potentials or on the spectral content of EEG. The former investigates potential fluctuations time locked to an event like stimulus onset or button press. The latter analyses the type of neural oscillations (popularly called “brain waves”) that can be observed in EEG signals in the frequency domain. - - - -EEG is most often used to diagnose epilepsy, which causes abnormalities in EEG readings. It is also used to diagnose sleep disorders, depth of anesthesia, coma, encephalopathies, and brain death. EEG used to be a first-line method of diagnosis for tumors, stroke and other focal brain disorders, but this use has decreased with the advent of high-resolution anatomical imaging techniques such as magnetic resonance imaging (MRI) and computed tomography (CT). Despite limited spatial resolution, EEG continues to be a valuable tool for research and diagnosis. It is one of the few mobile techniques available and offers millisecond-range temporal resolution which is not possible with CT, PET or MRI. - -Derivatives of the EEG technique include evoked potentials (EP), which involves averaging the EEG activity time-locked to the presentation of a stimulus of some sort (visual, somatosensory, or auditory). Event-related potentials (ERPs) refer to averaged EEG responses that are time-locked to more complex processing of stimuli; this technique is used in cognitive science, cognitive psychology, and psychophysiological research. - -## Very Long Word - -MethionylglutaminylarginyltyrosylglutamylserylleucylphenylalanylalanylglutaminylleucyllysylglutamylarginyllysylglutamylglycylalanylphenylalanylvalylprolyphenylalanYlvalythreonylleucylglycylaspartylprolylglycylisoleucylglutamylglutaminylsErylleucyllysylisoleucylaspartylthreonylleucylIsoleucylglutamylalanylglycylalanylasparthlalanylleucylglutamylleucylglycylisoleucylprolylphenylalanylseRylaspartylprolylleucylalanylaspartylglycylpRolylthreOnylisoleucylglutaminylasPfraginylalanylthreonylleucylarfinylalanylphenylalanylalanylalanylglycylvalythreonylprolylalanylglutaminylcysteinylphenylalanylglutamylmethionylleucylalanylleuOylisoleucylarginylglutaminyllysyhistidylprolylthreonylisoleucylprolylisoleucylglycylleucylmethionyltyrosylalanylasparaginylleucylvalylphenylalanylasparaginyllysyglycylisoleucylaspartylglutamylphenylalanylthrosylalanylglutaminylcysteinylglutamyllysylvalylglycylvalylaspartylserylvalylleucylvalylalnylaspartylvalylprolylvalylglUtaminylglutamylserylalanylprolylphenylalanylarginylglutaminylalanylalanylleucylarginylhistidylasparaginyvalylalanylprolylisoleucylprolylisoleucylphenylalanylisoleucylphenylalanylisoleucylcysteinylprolylprolylaspartylalanylaspartylaspartylaspartylleucylleucylarginylglutaminylisoleucylalanylseryltyrosylglycylarginylglycyltyrosylthreonyltyrOsylleucylleucylserylarginylalanylglycylvalylthreonylglycylalanylglutamYlasparainylarginylalanylalanylleucylprolylleucylasparaginylhistidylleucylValylalanyllysylleucyllysylglutamyltyrosylasparaginylalanylalanylprolylprolylleucylglutaminylglgycylphenylalanylglycylisoleucylserylalanylprolylaspartylglutaminylvalyllysylalanylalanylisoleucylaspartylalanylglycylalanylalanylglycylalanylisoleucylserylglycylserylalanylisoleucylvalyllysylisoIeucylisoleucylglutamylglutaminylHistidylasparaginyliSoleucylglutamylprolylglutamyllysylmethionylleucylalanylalanylleucyllysylvalylphenylalanylcalylglutaminylprolylmethionlysylalanylalanylthreonylarginylserine - -> From Wikipedia, the free encyclopedia diff --git a/docs/_posts/2017-04-15-author.md b/docs/_posts/2017-04-15-author.md deleted file mode 100644 index e572486f0c9..00000000000 --- a/docs/_posts/2017-04-15-author.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: TeXt - Author -key: 20170419 -tags: TeXt -modify_date: 2017-09-09 -author: Tian Qi -show_author_profile: true ---- - -Article with specified author. - - - -Set `show_author_profile` as `true` to show author profile. - -**front matter:** - - --- - ... - author: Tian Qi - show_author_profile: true - --- diff --git a/docs/_posts/2017-04-19-modify-date.md b/docs/_posts/2017-04-19-modify-date.md deleted file mode 100644 index 317ae1b2782..00000000000 --- a/docs/_posts/2017-04-19-modify-date.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: TeXt - Modify Date -key: 20170419 -tags: TeXt -modify_date: 2017-09-09 ---- - -Article with modify date. - - - -**front matter:** - - --- - ... - modify_date: 2017-09-09 - --- diff --git a/docs/_posts/2017-05-05-chart.md b/docs/_posts/2017-05-05-chart.md deleted file mode 100644 index 0a870c8fc72..00000000000 --- a/docs/_posts/2017-05-05-chart.md +++ /dev/null @@ -1,655 +0,0 @@ ---- -title: TeXt - Chart -key: 20170505 -tags: TeXt -chart: true ---- - -```chart -{ - "type": "line", - "data": { - "labels": [ - "January", - "February", - "March", - "April", - "May", - "June", - "July" - ], - "datasets": [ - { - "label": "# of bugs", - "fill": false, - "lineTension": 0.1, - "backgroundColor": "rgba(75,192,192,0.4)", - "borderColor": "rgba(75,192,192,1)", - "borderCapStyle": "butt", - "borderDash": [], - "borderDashOffset": 0, - "borderJoinStyle": "miter", - "pointBorderColor": "rgba(75,192,192,1)", - "pointBackgroundColor": "#fff", - "pointBorderWidth": 1, - "pointHoverRadius": 5, - "pointHoverBackgroundColor": "rgba(75,192,192,1)", - "pointHoverBorderColor": "rgba(220,220,220,1)", - "pointHoverBorderWidth": 2, - "pointRadius": 1, - "pointHitRadius": 10, - "data": [ - 65, - 59, - 80, - 81, - 56, - 55, - 40 - ], - "spanGaps": false - } - ] - }, - "options": {} -} -``` - - - -You need set `chart: true` in the *_config.yml* or the markdown’s front matter to **enable** it. -{:.warning} - -[Documentation](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/markdown-enhancements#chart) - -## Line Chart - -```chart -{ - "type": "line", - "data": { - "labels": [ - "January", - "February", - "March", - "April", - "May", - "June", - "July" - ], - "datasets": [ - { - "label": "# of bugs", - "fill": false, - "lineTension": 0.1, - "backgroundColor": "rgba(75,192,192,0.4)", - "borderColor": "rgba(75,192,192,1)", - "borderCapStyle": "butt", - "borderDash": [], - "borderDashOffset": 0, - "borderJoinStyle": "miter", - "pointBorderColor": "rgba(75,192,192,1)", - "pointBackgroundColor": "#fff", - "pointBorderWidth": 1, - "pointHoverRadius": 5, - "pointHoverBackgroundColor": "rgba(75,192,192,1)", - "pointHoverBorderColor": "rgba(220,220,220,1)", - "pointHoverBorderWidth": 2, - "pointRadius": 1, - "pointHitRadius": 10, - "data": [ - 65, - 59, - 80, - 81, - 56, - 55, - 40 - ], - "spanGaps": false - } - ] - }, - "options": {} -} -``` - -**markdown:** - - ```chart - { - "type": "line", - "data": { - "labels": [ - "January", - "February", - "March", - "April", - "May", - "June", - "July" - ], - "datasets": [ - { - "label": "# of bugs", - "fill": false, - "lineTension": 0.1, - "backgroundColor": "rgba(75,192,192,0.4)", - "borderColor": "rgba(75,192,192,1)", - "borderCapStyle": "butt", - "borderDash": [], - "borderDashOffset": 0, - "borderJoinStyle": "miter", - "pointBorderColor": "rgba(75,192,192,1)", - "pointBackgroundColor": "#fff", - "pointBorderWidth": 1, - "pointHoverRadius": 5, - "pointHoverBackgroundColor": "rgba(75,192,192,1)", - "pointHoverBorderColor": "rgba(220,220,220,1)", - "pointHoverBorderWidth": 2, - "pointRadius": 1, - "pointHitRadius": 10, - "data": [ - 65, - 59, - 80, - 81, - 56, - 55, - 40 - ], - "spanGaps": false - } - ] - }, - "options": {} - } - ``` - -## Bar Chart - -```chart -{ - "type": "bar", - "data": { - "labels": [ - "Red", - "Blue", - "Yellow", - "Green", - "Purple", - "Orange" - ], - "datasets": [ - { - "label": "# of Votes", - "data": [ - 12, - 19, - 3, - 5, - 2, - 3 - ], - "backgroundColor": [ - "rgba(255, 99, 132, 0.2)", - "rgba(54, 162, 235, 0.2)", - "rgba(255, 206, 86, 0.2)", - "rgba(75, 192, 192, 0.2)", - "rgba(153, 102, 255, 0.2)", - "rgba(255, 159, 64, 0.2)" - ], - "borderColor": [ - "rgba(255,99,132,1)", - "rgba(54, 162, 235, 1)", - "rgba(255, 206, 86, 1)", - "rgba(75, 192, 192, 1)", - "rgba(153, 102, 255, 1)", - "rgba(255, 159, 64, 1)" - ], - "borderWidth": 1 - } - ] - }, - "options": {} -} -``` - -**markdown:** - - ```chart - { - "type": "bar", - "data": { - "labels": [ - "Red", - "Blue", - "Yellow", - "Green", - "Purple", - "Orange" - ], - "datasets": [ - { - "label": "# of Votes", - "data": [ - 12, - 19, - 3, - 5, - 2, - 3 - ], - "backgroundColor": [ - "rgba(255, 99, 132, 0.2)", - "rgba(54, 162, 235, 0.2)", - "rgba(255, 206, 86, 0.2)", - "rgba(75, 192, 192, 0.2)", - "rgba(153, 102, 255, 0.2)", - "rgba(255, 159, 64, 0.2)" - ], - "borderColor": [ - "rgba(255,99,132,1)", - "rgba(54, 162, 235, 1)", - "rgba(255, 206, 86, 1)", - "rgba(75, 192, 192, 1)", - "rgba(153, 102, 255, 1)", - "rgba(255, 159, 64, 1)" - ], - "borderWidth": 1 - } - ] - }, - "options": {} - } - ``` - -## Radar Chart - -```chart -{ - "type": "radar", - "data": { - "labels": [ - "Eating", - "Drinking", - "Sleeping", - "Designing", - "Coding", - "Cycling", - "Running" - ], - "datasets": [ - { - "label": "My First dataset", - "backgroundColor": "rgba(179,181,198,0.2)", - "borderColor": "rgba(179,181,198,1)", - "pointBackgroundColor": "rgba(179,181,198,1)", - "pointBorderColor": "#fff", - "pointHoverBackgroundColor": "#fff", - "pointHoverBorderColor": "rgba(179,181,198,1)", - "data": [ - 65, - 59, - 90, - 81, - 56, - 55, - 40 - ] - }, - { - "label": "My Second dataset", - "backgroundColor": "rgba(255,99,132,0.2)", - "borderColor": "rgba(255,99,132,1)", - "pointBackgroundColor": "rgba(255,99,132,1)", - "pointBorderColor": "#fff", - "pointHoverBackgroundColor": "#fff", - "pointHoverBorderColor": "rgba(255,99,132,1)", - "data": [ - 28, - 48, - 40, - 19, - 96, - 27, - 100 - ] - } - ] - }, - "options": {} -} -``` - -**markdown:** - - ```chart - { - "type": "radar", - "data": { - "labels": [ - "Eating", - "Drinking", - "Sleeping", - "Designing", - "Coding", - "Cycling", - "Running" - ], - "datasets": [ - { - "label": "My First dataset", - "backgroundColor": "rgba(179,181,198,0.2)", - "borderColor": "rgba(179,181,198,1)", - "pointBackgroundColor": "rgba(179,181,198,1)", - "pointBorderColor": "#fff", - "pointHoverBackgroundColor": "#fff", - "pointHoverBorderColor": "rgba(179,181,198,1)", - "data": [ - 65, - 59, - 90, - 81, - 56, - 55, - 40 - ] - }, - { - "label": "My Second dataset", - "backgroundColor": "rgba(255,99,132,0.2)", - "borderColor": "rgba(255,99,132,1)", - "pointBackgroundColor": "rgba(255,99,132,1)", - "pointBorderColor": "#fff", - "pointHoverBackgroundColor": "#fff", - "pointHoverBorderColor": "rgba(255,99,132,1)", - "data": [ - 28, - 48, - 40, - 19, - 96, - 27, - 100 - ] - } - ] - }, - "options": {} - } - ``` - -## Polar Area Chart - -```chart -{ - "type": "polarArea", - "data": { - "datasets": [ - { - "data": [ - 11, - 16, - 7, - 3, - 14 - ], - "backgroundColor": [ - "#FF6384", - "#4BC0C0", - "#FFCE56", - "#E7E9ED", - "#36A2EB" - ], - "label": "My dataset" - } - ], - "labels": [ - "Red", - "Green", - "Yellow", - "Grey", - "Blue" - ] - }, - "options": {} -} -``` - -**markdown:** - - ```chart - { - "type": "polarArea", - "data": { - "datasets": [ - { - "data": [ - 11, - 16, - 7, - 3, - 14 - ], - "backgroundColor": [ - "#FF6384", - "#4BC0C0", - "#FFCE56", - "#E7E9ED", - "#36A2EB" - ], - "label": "My dataset" - } - ], - "labels": [ - "Red", - "Green", - "Yellow", - "Grey", - "Blue" - ] - }, - "options": {} - } - ``` - -## Pie Chart - -```chart -{ - "type": "pie", - "data": { - "labels": [ - "Red", - "Blue", - "Yellow" - ], - "datasets": [ - { - "data": [ - 300, - 50, - 100 - ], - "backgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ], - "hoverBackgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ] - } - ] - }, - "options": {} -} -``` - -**markdown:** - - ```chart - { - "type": "pie", - "data": { - "labels": [ - "Red", - "Blue", - "Yellow" - ], - "datasets": [ - { - "data": [ - 300, - 50, - 100 - ], - "backgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ], - "hoverBackgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ] - } - ] - }, - "options": {} - } - ``` - -## Doughnut Chart - -```chart -{ - "type": "doughnut", - "data": { - "labels": [ - "Red", - "Blue", - "Yellow" - ], - "datasets": [ - { - "data": [ - 300, - 50, - 100 - ], - "backgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ], - "hoverBackgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ] - } - ] - }, - "options": {} -} -``` - -**markdown:** - - ```chart - { - "type": "doughnut", - "data": { - "labels": [ - "Red", - "Blue", - "Yellow" - ], - "datasets": [ - { - "data": [ - 300, - 50, - 100 - ], - "backgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ], - "hoverBackgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ] - } - ] - }, - "options": {} - } - ``` - -## Bubble Chart - -```chart -{ - "type": "bubble", - "data": { - "datasets": [ - { - "label": "First Dataset", - "data": [ - { - "x": 20, - "y": 30, - "r": 15 - }, - { - "x": 40, - "y": 10, - "r": 10 - } - ], - "backgroundColor": "#FF6384", - "hoverBackgroundColor": "#FF6384" - } - ] - }, - "options": {} -} -``` - -**markdown:** - - ```chart - { - "type": "bubble", - "data": { - "datasets": [ - { - "label": "First Dataset", - "data": [ - { - "x": 20, - "y": 30, - "r": 15 - }, - { - "x": 40, - "y": 10, - "r": 10 - } - ], - "backgroundColor": "#FF6384", - "hoverBackgroundColor": "#FF6384" - } - ] - }, - "options": {} - } - ``` diff --git a/docs/_posts/2017-06-06-mermaid.md b/docs/_posts/2017-06-06-mermaid.md deleted file mode 100644 index 22b5d478628..00000000000 --- a/docs/_posts/2017-06-06-mermaid.md +++ /dev/null @@ -1,122 +0,0 @@ ---- -title: TeXt - Mermaid -key: 20170606 -tags: TeXt -mermaid: true ---- - -```mermaid -graph TB; - A[Do you have a problem in your life?] - B[Then don't worry] - C[Can you do something about it?] - A--no-->B; - A--yes-->C; - C--no-->B; - C--yes-->B; -``` - - - -You need set `mermaid: true` in the *_config.yml* or the markdown’s front matter to **enable** it. -{:.warning} - -[Documentation](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/markdown-enhancements#mermaid) - -Generation of diagrams and flowcharts from text in a similar manner as markdown. - -Ever wanted to simplify documentation and avoid heavy tools like Visio when explaining your code? - -This is why [mermaid](https://mermaidjs.github.io/) was born, a simple markdown-like script language for generating charts from text via javascript. - -## Flowchart - -```mermaid -graph TD; - A-->B; - A-->C; - B-->D; - C-->D; -``` - -**markdown:** - - ```mermaid - graph TD; - A-->B; - A-->C; - B-->D; - C-->D; - ``` - -## Sequence Diagram - -```mermaid -sequenceDiagram - participant Alice - participant Bob - Alice->John: Hello John, how are you? - loop Healthcheck - John->John: Fight against hypochondria - end - Note right of John: Rational thoughts
      prevail... - John-->Alice: Great! - John->Bob: How about you? - Bob-->John: Jolly good! -``` - -**markdown:** - - ```mermaid - sequenceDiagram - participant Alice - participant Bob - Alice->John: Hello John, how are you? - loop Healthcheck - John->John: Fight against hypochondria - end - Note right of John: Rational thoughts
      prevail... - John-->Alice: Great! - John->Bob: How about you? - Bob-->John: Jolly good! - ``` - -## Gant Diagrams - -```mermaid -gantt - dateFormat YYYY-MM-DD - title Adding GANTT diagram functionality to mermaid - section A section - Completed task :done, des1, 2014-01-06,2014-01-08 - Active task :active, des2, 2014-01-09, 3d - Future task : des3, after des2, 5d - Future task2 : des4, after des3, 5d - section Critical tasks - Completed task in the critical line :crit, done, 2014-01-06,24h - Implement parser and jison :crit, done, after des1, 2d - Create tests for parser :crit, active, 3d - Future task in critical line :crit, 5d - Create tests for renderer :2d - Add to mermaid :1d -``` - -**markdown:** - - ```mermaid - gantt - dateFormat YYYY-MM-DD - title Adding GANTT diagram functionality to mermaid - section A section - Completed task :done, des1, 2014-01-06,2014-01-08 - Active task :active, des2, 2014-01-09, 3d - Future task : des3, after des2, 5d - Future task2 : des4, after des3, 5d - section Critical tasks - Completed task in the critical line :crit, done, 2014-01-06,24h - Implement parser and jison :crit, done, after des1, 2d - Create tests for parser :crit, active, 3d - Future task in critical line :crit, 5d - Create tests for renderer :2d - Add to mermaid - ``` diff --git a/docs/_posts/2017-07-07-mathjax.md b/docs/_posts/2017-07-07-mathjax.md deleted file mode 100644 index 5f8dcc29407..00000000000 --- a/docs/_posts/2017-07-07-mathjax.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: TeXt - MathJax -key: 20170707 -tags: TeXt -mathjax: true -mathjax_autoNumber: true ---- - -When $$a \ne 0$$, there are two solutions to $$ax^2 + bx + c = 0$$ and they are - -$$x_1 = {-b + \sqrt{b^2-4ac} \over 2a}$$ - -$$x_2 = {-b - \sqrt{b^2-4ac} \over 2a} \notag$$ - - - -You need set `mathjax: true` in the *_config.yml* or the markdown’s front matter to **enable** it. -{:.warning} - -**After MathJax enabled**, you can set `mathjax_autoNumber: true` to have equations be numbered automatically, You can use `\notag` or `\nonumber` to prevent individual equations from being numbered. -{:.info} - -[Documentation](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/markdown-enhancements#mathjax) - -**markdown:** - -```tex -When $$a \ne 0$$, there are two solutions to $$ax^2 + bx + c = 0$$ and they are -$$x_1 = {-b + \sqrt{b^2-4ac} \over 2a}$$ -$$x_2 = {-b - \sqrt{b^2-4ac} \over 2a} \notag$$ -``` - -**front matter:** - - --- - ... - mathjax: true - mathjax_autoNumber: true - --- diff --git a/docs/_posts/2017-08-02-extensions.md b/docs/_posts/2017-08-02-extensions.md deleted file mode 100644 index 23d0fe64018..00000000000 --- a/docs/_posts/2017-08-02-extensions.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: TeXt - Extensions -key: 20170802 -tags: TeXt ---- - -With the help of extensions, you can easily add **audios**, **videos**, **slides** and **demos** in your posts. - -
      {%- include extensions/ted.html id='emily_esfahani_smith_there_s_more_to_life_than_being_happy' -%}
      - - - -[Documentation](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/extensions) - -## Audio - -### SoundCloud - -
      {%- include extensions/soundcloud.html id='313627932' -%}
      - -### Netease Cloud Music (网易云音乐) - -Available in Chinese mainland. - -
      {%- include extensions/netease-cloud-music.html id='413812448' -%}
      - -## Video - -### YouTube - -
      {%- include extensions/youtube.html id='wbY97-hdD5c' -%}
      - -### TED - -
      {%- include extensions/ted.html id='emily_esfahani_smith_there_s_more_to_life_than_being_happy' -%}
      - -### bilibili (哔哩哔哩) - -
      {%- include extensions/bilibili.html id='11091080' -%}
      - - -## Slide - -### SlideShare - -
      {%- include extensions/slideshare.html id='u9L9zDsqEWNKE1' -%}
      - -## Demos - -### CodePen - -
      {%- include extensions/codepen.html user='kitian616' hash='aQmWZG' default_tab='html,result' -%}
      diff --git a/docs/_posts/2017-08-08-additional-styles.md b/docs/_posts/2017-08-08-additional-styles.md deleted file mode 100644 index 7527aa9eea0..00000000000 --- a/docs/_posts/2017-08-08-additional-styles.md +++ /dev/null @@ -1,100 +0,0 @@ ---- -title: TeXt - Additional Styles -key: 20170808 -tags: TeXt ---- - -Success! -{:.success} - -`success`{:.success} `info`{:.info} `warning`{:.warning} `error`{:.error} - -
      -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_rounded"){:.rounded} -
      -
      -![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_circle+shadow"){:.circle.shadow} -
      -
      -
      - -
      -
      -
      -
      CLICK ME
      -
      -
      -
      CLICK ME
      -
      -
      -
      CLICK ME
      -
      -
      -
      CLICK ME
      -
      -
      -
      - - - -[Documentation](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/additional-styles) - -## Alert - -Success Text. -{:.success} - -Info Text. -{:.info} - -Warning Text. -{:.warning} - -Error Text. -{:.error} - -## Tag - -`success`{:.success} - -`info`{:.info} - -`warning`{:.warning} - -`error`{:.error} - -## Image - -| `Border` | `Shadow` | -| ---- | ---- | -| ![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_border"){:.border} | ![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_shadow"){:.shadow} | - -| `Rounded` | `Circle` | -| ---- | ---- | -| ![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_rounded"){:.rounded} | ![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_circle"){:.circle} | - -### Mixture - -| `Border+Rounded` | `Circle+Shadow` | -| ---- | ---- | -| ![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_border+rounded"){:.border.rounded} | ![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_circle+shadow"){:.circle.shadow} | - -| `Rounded+Shadow` | `Circle+Border+Shadow` | -| ---- | ---- | -| ![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_rounded+shadow"){:.circle.rounded.shadow} | ![Image](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/image.jpg "Image_circle+border+shadow"){:.circle.border.shadow} - -## Extra - -| Name | Description | -| ---- | ---- | -| Spacing | [Doc](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/spacing) | -| Grid | [Doc](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/grid) | -| Icons | [Doc](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/icons) | -| Image | [Doc](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/image) | -| Button | [Doc](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/button) | -| Item | [Doc](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/item) | -| Card | [Doc](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/card) | -| Hero | [Doc](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/hero) | -| Swiper | [Doc](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/swiper) | diff --git a/docs/_posts/2019-10-09-what-next.md b/docs/_posts/2019-10-09-what-next.md deleted file mode 100644 index 9d300cd3c58..00000000000 --- a/docs/_posts/2019-10-09-what-next.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: Blog - What's NEXT -key: 20101009 -tags: Blog ---- - -Dark Mode is cool, and TeXt is supporting it. - -![Dark Mode](https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master/docs/assets/images/blog/dark-mode.gif) - - - -Trying to use [PostCSS](https://github.com/postcss/postcss) for CSS Variable Polyfill and Auto Prefix. -{:.info} - -It is developing on `dev` branch, you can run `git checkout dev` to switch to this branch. - -For now, ONLY `default` skin supports Dark Mode. diff --git a/docs/_sample_articles/1.1-brief.md b/docs/_sample_articles/1.1-brief.md deleted file mode 100644 index 455f13d6f7d..00000000000 --- a/docs/_sample_articles/1.1-brief.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: articles -title: Articles - Brief -permalink: /articles/brief.html -key: articles-brief -cover: /docs/assets/images/axure/articles-brief.jpg -articles: - data_source: site.sample_page - type: brief ---- - -
      - ---- - -Brief article list. - - - -**front matter:** - - --- - layout: articles - title: Articles - Brief - articles: - data_source: site.sample_page - type: brief - --- - -
      diff --git a/docs/_sample_articles/1.2-brief-info.md b/docs/_sample_articles/1.2-brief-info.md deleted file mode 100644 index 72966ca95ae..00000000000 --- a/docs/_sample_articles/1.2-brief-info.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -layout: articles -title: Articles - Brief (Info) -permalink: /articles/brief-info.html -key: articles-brief-info -cover: /docs/assets/images/axure/articles-brief-info.jpg -articles: - data_source: site.sample_page - type: brief - show_info: true ---- - -
      - ---- - -Brief article list with info. - - - -**front matter:** - - --- - layout: articles - title: Articles - Brief (Info) - articles: - data_source: site.sample_page - type: brief - show_info: true - --- - -
      diff --git a/docs/_sample_articles/2.1-item-excerpt-readmore-info.md b/docs/_sample_articles/2.1-item-excerpt-readmore-info.md deleted file mode 100644 index 52be54ad7b5..00000000000 --- a/docs/_sample_articles/2.1-item-excerpt-readmore-info.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -layout: articles -title: Articles - Item (Excerpt + Read More + Info) -permalink: /articles/item-excerpt-readmore-info.html -key: articles-item-excerpt-readmore-info -cover: /docs/assets/images/axure/articles-item-excerpt-readmore-info.jpg -articles: - data_source: site.sample_page - show_cover: false - show_excerpt: true - show_readmore: true - show_info: true ---- - -
      - ---- - -Article list with excerpt, read more link and info. - - - -**front matter:** - - --- - layout: articles - title: Articles - Item (Excerpt + Read More + Info) - articles: - data_source: site.sample_page - show_cover: false - show_excerpt: true - show_readmore: true - show_info: true - --- - -
      diff --git a/docs/_sample_articles/2.2-item-cover.md b/docs/_sample_articles/2.2-item-cover.md deleted file mode 100644 index f9c38e344cb..00000000000 --- a/docs/_sample_articles/2.2-item-cover.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -layout: articles -title: Articles - Item (Cover) -permalink: /articles/item-cover.html -key: articles-item-cover -cover: /docs/assets/images/axure/articles-item-cover.jpg -articles: - data_source: site.sample_page ---- - -
      - ---- - -Article list with cover. - - - -**front matter:** - - --- - layout: articles - title: Articles - Item (Cover) - articles: - data_source: site.sample_page - --- - -
      diff --git a/docs/_sample_articles/2.3-item-cover-excerpt.md b/docs/_sample_articles/2.3-item-cover-excerpt.md deleted file mode 100644 index b5bbe41c936..00000000000 --- a/docs/_sample_articles/2.3-item-cover-excerpt.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: articles -title: Articles - Item (Cover + Excerpt) -permalink: /articles/item-cover-excerpt.html -key: articles-item-cover-excerpt -cover: /docs/assets/images/axure/articles-item-cover-excerpt.jpg -articles: - data_source: site.sample_page - show_excerpt: true ---- - -
      - ---- - -Article list with cover and excerpt. - - - -**front matter:** - - --- - layout: articles - title: Articles - Item (Cover + Excerpt) - articles: - data_source: site.sample_page - show_excerpt: true - --- - -
      diff --git a/docs/_sample_articles/2.4-item-cover-excerpt-readmore.md b/docs/_sample_articles/2.4-item-cover-excerpt-readmore.md deleted file mode 100644 index 01bd47a2434..00000000000 --- a/docs/_sample_articles/2.4-item-cover-excerpt-readmore.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -layout: articles -title: Articles - Item (Cover + Excerpt + Read More) -permalink: /articles/item-cover-excerpt-readmore.html -key: articles-item-cover-excerpt-readmore -cover: /docs/assets/images/axure/articles-item-cover-excerpt-readmore.jpg -articles: - data_source: site.sample_page - show_excerpt: true - show_readmore: true ---- - -
      - ---- - -Article list with cover, excerpt and read more link. - - - -**front matter:** - - --- - layout: articles - title: Articles - Item (Cover + Excerpt + Read More) - articles: - data_source: site.sample_page - show_excerpt: true - show_readmore: true - --- - -
      diff --git a/docs/_sample_articles/2.5-item-cover-excerpt-readmore-info.md b/docs/_sample_articles/2.5-item-cover-excerpt-readmore-info.md deleted file mode 100644 index 54d8c528302..00000000000 --- a/docs/_sample_articles/2.5-item-cover-excerpt-readmore-info.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -layout: articles -title: Articles - Item (Cover + Excerpt + Read More + Info) -permalink: /articles/item-cover-excerpt-readmore-info.html -key: articles-item-cover-excerpt-readmore-info -cover: /docs/assets/images/axure/articles-item-cover-excerpt-readmore-info.jpg -articles: - data_source: site.sample_page - show_excerpt: true - show_readmore: true - show_info: true ---- - -
      - ---- - -Article list with cover, excerpt, read more link and info. - - - -**front matter:** - - --- - layout: articles - title: Articles - Item (Cover + Excerpt + Read More + Info) - articles: - data_source: site.sample_page - show_excerpt: true - show_readmore: true - show_info: true - --- - -
      diff --git a/docs/_sample_articles/3.1-grid.md b/docs/_sample_articles/3.1-grid.md deleted file mode 100644 index 3a4339f7bb3..00000000000 --- a/docs/_sample_articles/3.1-grid.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: articles -title: Articles - Grid -permalink: /articles/grid.html -key: articles-grid -cover: /docs/assets/images/axure/articles-grid.jpg -articles: - data_source: site.sample_page - type: grid ---- - -
      - ---- - -Article list with grid layout. - - - -**front matter:** - - --- - layout: articles - title: Articles - Grid - articles: - data_source: site.sample_page - type: grid - --- - -
      diff --git a/docs/_sample_articles/3.2-grid-small.md b/docs/_sample_articles/3.2-grid-small.md deleted file mode 100644 index af696936872..00000000000 --- a/docs/_sample_articles/3.2-grid-small.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -layout: articles -title: Articles - Grid (Small Size) -permalink: /articles/grid-small.html -key: articles-grid-small -cover: /docs/assets/images/axure/articles-grid-small.jpg -articles: - data_source: site.sample_page - type: grid - size: sm ---- - -
      - ---- - -Article list with grid layout in small size. - - - -**front matter:** - - --- - layout: articles - title: Articles - Grid (Small Size) - articles: - data_source: site.sample_page - type: grid - size: sm - --- - -
      diff --git a/docs/_sample_languages/1-english.md b/docs/_sample_languages/1-english.md deleted file mode 100644 index 8bf7f80c550..00000000000 --- a/docs/_sample_languages/1-english.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: English -key: lang-en -permalink: /languages/english.html -cover: /docs/assets/images/languages/lang-en.jpg -lang: en ---- - -English. - - - -*_config.yml* or front matter: - -```yml -lang: en -lang: en-GB -lang: en-US -lang: en-CA -lang: en-AU -``` diff --git a/docs/_sample_languages/2-chinese-simplified.md b/docs/_sample_languages/2-chinese-simplified.md deleted file mode 100644 index 583a4ab1af9..00000000000 --- a/docs/_sample_languages/2-chinese-simplified.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: 简体中文 (Simplified Chinese) -key: lang-zh-hans -permalink: /languages/chinese-simplified.html -cover: /docs/assets/images/languages/lang-zh.jpg -lang: zh-Hans -header: - theme: dark - background: '#612a1f' -article_header: - type: cover - image: - src: /docs/assets/images/languages/lang-image-zh-hans.jpg ---- - -简体中文。 - - - - - -*_config.yml* or front matter: - -```yml -lang: zh-Hans -lang: zh -lang: zh-CN -lang: zh-SG -```` - -
      -> 关关雎鸠,在河之洲。 -> -> 窈窕淑女,君子好逑。 -> -> ——《诗经·国风·周南·关雎》 -
      diff --git a/docs/_sample_languages/3-chinese-traditional.md b/docs/_sample_languages/3-chinese-traditional.md deleted file mode 100644 index 083ccc7b830..00000000000 --- a/docs/_sample_languages/3-chinese-traditional.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: 繁體中文 (Traditional Chinese) -key: lang-zh-hant -permalink: /languages/chinese-traditional.html -cover: /docs/assets/images/languages/lang-zh.jpg -lang: zh-Hant -header: - theme: dark - background: '#41555d' -article_header: - type: cover - image: - src: /docs/assets/images/languages/lang-image-zh-hant.jpg ---- - -繁體中文。 - - - - - -*_config.yml* or front matter: - -```yml -lang: zh-Hant -lang: zh-TW -lang: zh-HK -``` - -
      -> 關關雎鳩,在河之洲。 -> -> 窈窕淑女,君子好逑。 -> -> ——《詩經·國風·周南·關雎》 -
      diff --git a/docs/_sample_languages/4-korean.md b/docs/_sample_languages/4-korean.md deleted file mode 100644 index 79443171821..00000000000 --- a/docs/_sample_languages/4-korean.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: 한국어 (Korean) -key: lang-ko -permalink: /languages/korean.html -cover: /docs/assets/images/languages/lang-ko.jpg -lang: ko ---- - -한국어. - - - -*_config.yml* or front matter: - -```yml -lang: ko -lang: ko-KR -``` diff --git a/docs/_sample_languages/5-french.md b/docs/_sample_languages/5-french.md deleted file mode 100644 index 1cc8ab4768a..00000000000 --- a/docs/_sample_languages/5-french.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Français (French) -key: lang-fr -permalink: /languages/french.html -cover: /docs/assets/images/languages/lang-fr.jpg -lang: fr ---- - -Français. - - - -*_config.yml* or front matter: - -```yml -lang: fr -lang: fr-BE -lang: fr-CA -lang: fr-CH -lang: fr-FR -lang: fr-LU -``` diff --git a/docs/_sample_page/1.1-single.md b/docs/_sample_page/1.1-single.md deleted file mode 100644 index 1156df7b9df..00000000000 --- a/docs/_sample_page/1.1-single.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: article -title: Page - Single -permalink: /page/single.html -key: page-single -cover: /docs/assets/images/axure/page-single.jpg ---- - -A post with a single column. - - - -**front matter:** - - --- - layout: article - title: Page - Single - --- diff --git a/docs/_sample_page/1.2-aside.md b/docs/_sample_page/1.2-aside.md deleted file mode 100644 index a60ed29d562..00000000000 --- a/docs/_sample_page/1.2-aside.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -layout: article -title: Page - Aside -permalink: /page/aside.html -key: page-aside -cover: /docs/assets/images/axure/page-aside.jpg -aside: - toc: true ---- - -A post with aside on the right. - - - -**front matter:** - - --- - layout: article - title: Page - Aside - aside: - toc: true - --- - -## Header 1 - -### Header 1.1 - -### Header 1.2 - -## Header 2 - -### Header 2.1 - -## Header 3 diff --git a/docs/_sample_page/1.3-sidebar.md b/docs/_sample_page/1.3-sidebar.md deleted file mode 100644 index 6b118b27ff8..00000000000 --- a/docs/_sample_page/1.3-sidebar.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -layout: article -title: Page - Sidebar -permalink: /page/sidebar.html -key: page-sidebar -cover: /docs/assets/images/axure/page-sidebar.jpg -sidebar: - nav: layouts ---- - -A post with a left sidebar. - - - -**front matter:** - - --- - layout: article - title: Page - Sidebar - sidebar: - nav: layouts - --- - -## Header 1 - -### Header 1.1 - -### Header 1.2 - -## Header 2 - -### Header 2.1 - -## Header 3 diff --git a/docs/_sample_page/1.4-sidebar+asdie.md b/docs/_sample_page/1.4-sidebar+asdie.md deleted file mode 100644 index f29f49c5497..00000000000 --- a/docs/_sample_page/1.4-sidebar+asdie.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -layout: article -title: Page - Sidebar (Aside) -permalink: /page/sidebar-aside.html -key: page-sidebar-aside -cover: /docs/assets/images/axure/page-sidebar-aside.jpg -aside: - toc: true -sidebar: - nav: layouts ---- - -A post with a left sidebar. - - - -**front matter:** - - --- - layout: article - title: Page - Sidebar - aside: - toc: true - sidebar: - nav: layouts - --- - -## Header 1 - -### Header 1.1 - -### Header 1.2 - -## Header 2 - -### Header 2.1 - -## Header 3 diff --git a/docs/_sample_page/2.1-article-header-overlay-background-fill.md b/docs/_sample_page/2.1-article-header-overlay-background-fill.md deleted file mode 100644 index 2fc3777509e..00000000000 --- a/docs/_sample_page/2.1-article-header-overlay-background-fill.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -layout: article -title: Page - Article Header Overlay Background Fill -permalink: /page/article-header-overlay-background-fill.html -key: page-article-header-overlay-background-fill -cover: /docs/assets/images/axure/page-article-header-overlay-background-fill.jpg -article_header: - type: overlay - theme: dark - background_color: '#123' - background_image: false ---- - -A post has an article header overlay with a solid background color (#123). - - - -**front matter:** - - --- - layout: article - title: Page - Article Header Overlay Background Fill - article_header: - type: overlay - theme: dark - background_color: '#123' - background_image: false - --- diff --git a/docs/_sample_page/2.2-article-header-overlay-background-image.md b/docs/_sample_page/2.2-article-header-overlay-background-image.md deleted file mode 100644 index c1acac10186..00000000000 --- a/docs/_sample_page/2.2-article-header-overlay-background-image.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -layout: article -title: Page - Article Header Overlay Background Image -permalink: /page/article-header-overlay-background-image.html -key: page-article-header-overlay-background-image -cover: /docs/assets/images/axure/page-article-header-overlay-background-image.jpg -article_header: - type: overlay - theme: dark - background_color: '#203028' - background_image: - gradient: 'linear-gradient(135deg, rgba(34, 139, 87, .4), rgba(139, 34, 139, .4))' - src: /docs/assets/images/cover3.jpg ---- - -A post has an article header overlay with a background image. - - - -**front matter:** - - --- - layout: article - title: Page - Article Header Overlay Background Image - article_header: - type: overlay - theme: dark - background_color: '#203028' - background_image: - gradient: 'linear-gradient(135deg, rgba(34, 139, 87 , .4), rgba(139, 34, 139, .4))' - src: /docs/assets/images/cover3.jpg - --- diff --git a/docs/_sample_page/2.5-article-header-cover-image.md b/docs/_sample_page/2.5-article-header-cover-image.md deleted file mode 100644 index 3ceaabc38e5..00000000000 --- a/docs/_sample_page/2.5-article-header-cover-image.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -layout: article -title: Page - Article Header Image -permalink: /page/article-header-cover-image.html -key: page-article-header-cover-image -cover: /docs/assets/images/axure/page-article-header-cover-image.jpg -article_header: - type: cover - image: - src: /docs/assets/images/cover2.jpg ---- - -A post has an image article header. - - - -**front matter:** - - --- - layout: article - title: Page - Article Header Image - article_header: - type: cover - image: - src: /docs/assets/images/cover2.jpg - --- diff --git a/docs/_sample_page/2.7-article-header-overlay-background-image-header-background.md b/docs/_sample_page/2.7-article-header-overlay-background-image-header-background.md deleted file mode 100644 index 079dcc66d29..00000000000 --- a/docs/_sample_page/2.7-article-header-overlay-background-image-header-background.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -layout: article -title: Page - Article Header Overlay Background Image (Customized Header Background) -permalink: /page/article-header-overlay-background-image-header-background.html -key: page-article-header-overlay-background-image-HB -cover: /docs/assets/images/axure/page-article-header-overlay-background-image-header-background.jpg -header: - theme: dark - background: 'linear-gradient(135deg, rgb(34, 139, 87), rgb(139, 34, 139))' -article_header: - type: overlay - theme: dark - background_color: '#203028' - background_image: - gradient: 'linear-gradient(135deg, rgba(34, 139, 87, .4), rgba(139, 34, 139, .4))' - src: /docs/assets/images/cover3.jpg ---- - -A post has an article header overlay with a background image width customized header background. - - - - - -**front matter:** - - --- - layout: article - title: Page - Article Header Overlay Background Image (Customized Header Background) - header: - theme: dark - background: 'linear-gradient(135deg, rgb(34, 139, 87), rgb(139, 34, 139))' - article_header: - type: overlay - theme: dark - background_color: '#203028' - background_image: - gradient: 'linear-gradient(135deg, rgba(34, 139, 87 , .4), rgba(139, 34, 139, .4))' - src: /docs/assets/images/cover3.jpg - --- diff --git a/docs/_sample_page/2.8-article-header-cover-image-header-background.md b/docs/_sample_page/2.8-article-header-cover-image-header-background.md deleted file mode 100644 index 72c5cb5fbe0..00000000000 --- a/docs/_sample_page/2.8-article-header-cover-image-header-background.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -layout: article -title: Page - Article Header Image (Customized Header Background) -permalink: /page/article-header-cover-image-header-background.html -key: page-article-header-cover-image-HB -cover: /docs/assets/images/axure/page-article-header-cover-image-header-background.jpg -header: - theme: dark - background: '#333' -article_header: - type: cover - image: - src: /docs/assets/images/cover2.jpg ---- - -A post has an image article header width customized header background. - - - - - -**front matter:** - - --- - layout: article - title: Page - Article Header Image (Customized Header Background) - header: - theme: dark - background: '#333' - article_header: - type: cover - image: - src: /docs/assets/images/cover2.jpg - --- diff --git a/docs/_sample_page/3.1-article-header-overlay-background-fill-immersive-translucent-header.md b/docs/_sample_page/3.1-article-header-overlay-background-fill-immersive-translucent-header.md deleted file mode 100644 index db2716494a1..00000000000 --- a/docs/_sample_page/3.1-article-header-overlay-background-fill-immersive-translucent-header.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -layout: article -title: Page - Article Header Overlay Background Fill (Immersive + Translucent Header) -permalink: /page/article-header-overlay-background-fill-immersive-translucent-header.html -key: page-article-header-overlay-background-fill-ITH -cover: /docs/assets/images/axure/page-article-header-overlay-background-fill-immersive-translucent-header.jpg -mode: immersive -header: - theme: dark -article_header: - type: overlay - theme: dark - background_color: '#123' - background_image: false ---- - -A post has an article header overlay with a solid background color (#123) in immersive mode with a translucent header. - - - - - -**front matter:** - - --- - layout: article - title: Page - Article Header Overlay Background Fill (Immersive + Translucent Header) - mode: immersive - header: - theme: dark - article_header: - type: overlay - theme: dark - background_color: '#123' - background_image: false - --- diff --git a/docs/_sample_page/3.2-article-header-overlay-background-image-immersive-translucent-header.md b/docs/_sample_page/3.2-article-header-overlay-background-image-immersive-translucent-header.md deleted file mode 100644 index 00dcc7e5d01..00000000000 --- a/docs/_sample_page/3.2-article-header-overlay-background-image-immersive-translucent-header.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -layout: article -title: Page - Article Header Overlay Background Image (Immersive + Translucent Header) -permalink: /page/article-header-overlay-background-image-immersive-translucent-header.html -key: page-article-header-overlay-background-image-ITH -cover: /docs/assets/images/axure/page-article-header-overlay-background-image-immersive-translucent-header.jpg -mode: immersive -header: - theme: dark -article_header: - type: overlay - theme: dark - background_color: '#203028' - background_image: - gradient: 'linear-gradient(135deg, rgba(34, 139,87 , .4), rgba(139, 34, 139, .4))' - src: /docs/assets/images/cover3.jpg ---- - -A post has an article header overlay with a background image in immersive mode with a translucent header. - - - - - -**front matter:** - - --- - layout: article - title: Page - Article Header Overlay Background Image (Immersive + Translucent Header) - mode: immersive - header: - theme: dark - article_header: - type: overlay - theme: dark - background_color: '#203028' - background_image: - gradient: 'linear-gradient(135deg, rgba(34, 139, 87 , .4), rgba(139, 34, 139, .4))' - src: /docs/assets/images/cover3.jpg - --- diff --git a/docs/_sample_page/3.5-article-header-cover-image-immersive-translucent-header.md b/docs/_sample_page/3.5-article-header-cover-image-immersive-translucent-header.md deleted file mode 100644 index 32440ab2fd8..00000000000 --- a/docs/_sample_page/3.5-article-header-cover-image-immersive-translucent-header.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -layout: article -title: Page - Article Header Image (Immersive + Translucent Header) -permalink: /page/article-header-cover-image-immersive-translucent-header.html -key: page-article-header-cover-image-ITH -cover: /docs/assets/images/axure/page-article-header-cover-image-immersive-translucent-header.jpg -mode: immersive -header: - theme: dark -article_header: - type: cover - image: - src: /docs/assets/images/cover2.jpg ---- - -A post has an image article header in immersive mode with a translucent header. - - - - - -**front matter:** - - --- - layout: article - title: Page - Article Header Image (Immersive + Translucent Header) - mode: immersive - header: - theme: dark - article_header: - type: cover - image: - src: /docs/assets/images/cover2.jpg - --- diff --git a/docs/assets/images/3Fkufxcw2xd8HnaRJBNK4ccdtkUDyyNu4V.jpg b/docs/assets/images/3Fkufxcw2xd8HnaRJBNK4ccdtkUDyyNu4V.jpg deleted file mode 100644 index b6c421d9a59..00000000000 Binary files a/docs/assets/images/3Fkufxcw2xd8HnaRJBNK4ccdtkUDyyNu4V.jpg and /dev/null differ diff --git a/docs/assets/images/axure/articles-brief-info.jpg b/docs/assets/images/axure/articles-brief-info.jpg deleted file mode 100644 index 50be77ca7db..00000000000 Binary files a/docs/assets/images/axure/articles-brief-info.jpg and /dev/null differ diff --git a/docs/assets/images/axure/articles-brief.jpg b/docs/assets/images/axure/articles-brief.jpg deleted file mode 100644 index abb29d160d2..00000000000 Binary files a/docs/assets/images/axure/articles-brief.jpg and /dev/null differ diff --git a/docs/assets/images/axure/articles-grid-small.jpg b/docs/assets/images/axure/articles-grid-small.jpg deleted file mode 100644 index 8596ea17a1a..00000000000 Binary files a/docs/assets/images/axure/articles-grid-small.jpg and /dev/null differ diff --git a/docs/assets/images/axure/articles-grid.jpg b/docs/assets/images/axure/articles-grid.jpg deleted file mode 100644 index 87d346f6e26..00000000000 Binary files a/docs/assets/images/axure/articles-grid.jpg and /dev/null differ diff --git a/docs/assets/images/axure/articles-item-cover-excerpt-readmore-info.jpg b/docs/assets/images/axure/articles-item-cover-excerpt-readmore-info.jpg deleted file mode 100644 index 2db0e75b3ac..00000000000 Binary files a/docs/assets/images/axure/articles-item-cover-excerpt-readmore-info.jpg and /dev/null differ diff --git a/docs/assets/images/axure/articles-item-cover-excerpt-readmore.jpg b/docs/assets/images/axure/articles-item-cover-excerpt-readmore.jpg deleted file mode 100644 index 383ea3aba50..00000000000 Binary files a/docs/assets/images/axure/articles-item-cover-excerpt-readmore.jpg and /dev/null differ diff --git a/docs/assets/images/axure/articles-item-cover-excerpt.jpg b/docs/assets/images/axure/articles-item-cover-excerpt.jpg deleted file mode 100644 index 618e3a7e6e4..00000000000 Binary files a/docs/assets/images/axure/articles-item-cover-excerpt.jpg and /dev/null differ diff --git a/docs/assets/images/axure/articles-item-cover.jpg b/docs/assets/images/axure/articles-item-cover.jpg deleted file mode 100644 index 27438af944d..00000000000 Binary files a/docs/assets/images/axure/articles-item-cover.jpg and /dev/null differ diff --git a/docs/assets/images/axure/articles-item-excerpt-readmore-info.jpg b/docs/assets/images/axure/articles-item-excerpt-readmore-info.jpg deleted file mode 100644 index a4397adb083..00000000000 Binary files a/docs/assets/images/axure/articles-item-excerpt-readmore-info.jpg and /dev/null differ diff --git a/docs/assets/images/axure/page-article-header-cover-image-header-background.jpg b/docs/assets/images/axure/page-article-header-cover-image-header-background.jpg deleted file mode 100644 index ea8a5c3b025..00000000000 Binary files a/docs/assets/images/axure/page-article-header-cover-image-header-background.jpg and /dev/null differ diff --git a/docs/assets/images/axure/page-article-header-cover-image-immersive-translucent-header.jpg b/docs/assets/images/axure/page-article-header-cover-image-immersive-translucent-header.jpg deleted file mode 100644 index 7ee82ceae0b..00000000000 Binary files a/docs/assets/images/axure/page-article-header-cover-image-immersive-translucent-header.jpg and /dev/null differ diff --git a/docs/assets/images/axure/page-article-header-cover-image.jpg b/docs/assets/images/axure/page-article-header-cover-image.jpg deleted file mode 100644 index 6df747e81c6..00000000000 Binary files a/docs/assets/images/axure/page-article-header-cover-image.jpg and /dev/null differ diff --git a/docs/assets/images/axure/page-article-header-overlay-background-fill-immersive-translucent-header.jpg b/docs/assets/images/axure/page-article-header-overlay-background-fill-immersive-translucent-header.jpg deleted file mode 100644 index 1e4801f0b34..00000000000 Binary files a/docs/assets/images/axure/page-article-header-overlay-background-fill-immersive-translucent-header.jpg and /dev/null differ diff --git a/docs/assets/images/axure/page-article-header-overlay-background-fill.jpg b/docs/assets/images/axure/page-article-header-overlay-background-fill.jpg deleted file mode 100644 index 41a12f277d0..00000000000 Binary files a/docs/assets/images/axure/page-article-header-overlay-background-fill.jpg and /dev/null differ diff --git a/docs/assets/images/axure/page-article-header-overlay-background-image-header-background.jpg b/docs/assets/images/axure/page-article-header-overlay-background-image-header-background.jpg deleted file mode 100644 index b6c51386cbd..00000000000 Binary files a/docs/assets/images/axure/page-article-header-overlay-background-image-header-background.jpg and /dev/null differ diff --git a/docs/assets/images/axure/page-article-header-overlay-background-image-immersive-translucent-header.jpg b/docs/assets/images/axure/page-article-header-overlay-background-image-immersive-translucent-header.jpg deleted file mode 100644 index f624d3b23b3..00000000000 Binary files a/docs/assets/images/axure/page-article-header-overlay-background-image-immersive-translucent-header.jpg and /dev/null differ diff --git a/docs/assets/images/axure/page-article-header-overlay-background-image.jpg b/docs/assets/images/axure/page-article-header-overlay-background-image.jpg deleted file mode 100644 index 724af9b30fd..00000000000 Binary files a/docs/assets/images/axure/page-article-header-overlay-background-image.jpg and /dev/null differ diff --git a/docs/assets/images/axure/page-aside.jpg b/docs/assets/images/axure/page-aside.jpg deleted file mode 100644 index a63a9a1666e..00000000000 Binary files a/docs/assets/images/axure/page-aside.jpg and /dev/null differ diff --git a/docs/assets/images/axure/page-sidebar-aside.jpg b/docs/assets/images/axure/page-sidebar-aside.jpg deleted file mode 100644 index e84fa09bd95..00000000000 Binary files a/docs/assets/images/axure/page-sidebar-aside.jpg and /dev/null differ diff --git a/docs/assets/images/axure/page-sidebar.jpg b/docs/assets/images/axure/page-sidebar.jpg deleted file mode 100644 index 668dad4df86..00000000000 Binary files a/docs/assets/images/axure/page-sidebar.jpg and /dev/null differ diff --git a/docs/assets/images/axure/page-single.jpg b/docs/assets/images/axure/page-single.jpg deleted file mode 100644 index aec72d4592a..00000000000 Binary files a/docs/assets/images/axure/page-single.jpg and /dev/null differ diff --git a/docs/assets/images/blog/dark-mode.gif b/docs/assets/images/blog/dark-mode.gif deleted file mode 100644 index 71916e5acbd..00000000000 Binary files a/docs/assets/images/blog/dark-mode.gif and /dev/null differ diff --git a/docs/assets/images/cover1.jpg b/docs/assets/images/cover1.jpg deleted file mode 100644 index d1d5683d480..00000000000 Binary files a/docs/assets/images/cover1.jpg and /dev/null differ diff --git a/docs/assets/images/cover2.jpg b/docs/assets/images/cover2.jpg deleted file mode 100644 index 4b492d62fdf..00000000000 Binary files a/docs/assets/images/cover2.jpg and /dev/null differ diff --git a/docs/assets/images/cover3.jpg b/docs/assets/images/cover3.jpg deleted file mode 100644 index 3f80ee0f5da..00000000000 Binary files a/docs/assets/images/cover3.jpg and /dev/null differ diff --git a/docs/assets/images/cover4.jpg b/docs/assets/images/cover4.jpg deleted file mode 100644 index fe4e30c599c..00000000000 Binary files a/docs/assets/images/cover4.jpg and /dev/null differ diff --git a/docs/assets/images/docker.jpg b/docs/assets/images/docker.jpg deleted file mode 100644 index aee161ffac2..00000000000 Binary files a/docs/assets/images/docker.jpg and /dev/null differ diff --git a/docs/assets/images/extensions-bilibili.jpg b/docs/assets/images/extensions-bilibili.jpg deleted file mode 100644 index 85af410bbe4..00000000000 Binary files a/docs/assets/images/extensions-bilibili.jpg and /dev/null differ diff --git a/docs/assets/images/extensions-codepen.jpg b/docs/assets/images/extensions-codepen.jpg deleted file mode 100644 index 7f714f8dc2c..00000000000 Binary files a/docs/assets/images/extensions-codepen.jpg and /dev/null differ diff --git a/docs/assets/images/extensions-netease-cloud-music.jpg b/docs/assets/images/extensions-netease-cloud-music.jpg deleted file mode 100644 index 0298a01f8b0..00000000000 Binary files a/docs/assets/images/extensions-netease-cloud-music.jpg and /dev/null differ diff --git a/docs/assets/images/extensions-slideshare.jpg b/docs/assets/images/extensions-slideshare.jpg deleted file mode 100644 index d3e92c6dce5..00000000000 Binary files a/docs/assets/images/extensions-slideshare.jpg and /dev/null differ diff --git a/docs/assets/images/extensions-soundclound.jpg b/docs/assets/images/extensions-soundclound.jpg deleted file mode 100644 index 125db88858d..00000000000 Binary files a/docs/assets/images/extensions-soundclound.jpg and /dev/null differ diff --git a/docs/assets/images/extensions-ted.jpg b/docs/assets/images/extensions-ted.jpg deleted file mode 100644 index 25f18333cdb..00000000000 Binary files a/docs/assets/images/extensions-ted.jpg and /dev/null differ diff --git a/docs/assets/images/extensions-youtube.jpg b/docs/assets/images/extensions-youtube.jpg deleted file mode 100644 index e205c140616..00000000000 Binary files a/docs/assets/images/extensions-youtube.jpg and /dev/null differ diff --git a/docs/assets/images/github-fork.jpg b/docs/assets/images/github-fork.jpg deleted file mode 100644 index 045d69a0a19..00000000000 Binary files a/docs/assets/images/github-fork.jpg and /dev/null differ diff --git a/docs/assets/images/github-rename-repo.jpg b/docs/assets/images/github-rename-repo.jpg deleted file mode 100644 index a4a84e97714..00000000000 Binary files a/docs/assets/images/github-rename-repo.jpg and /dev/null differ diff --git a/docs/assets/images/image.jpg b/docs/assets/images/image.jpg deleted file mode 100644 index 3635bccdc63..00000000000 Binary files a/docs/assets/images/image.jpg and /dev/null differ diff --git a/docs/assets/images/languages/lang-en.jpg b/docs/assets/images/languages/lang-en.jpg deleted file mode 100644 index 6144192da89..00000000000 Binary files a/docs/assets/images/languages/lang-en.jpg and /dev/null differ diff --git a/docs/assets/images/languages/lang-fr.jpg b/docs/assets/images/languages/lang-fr.jpg deleted file mode 100644 index 0120960dd0b..00000000000 Binary files a/docs/assets/images/languages/lang-fr.jpg and /dev/null differ diff --git a/docs/assets/images/languages/lang-image-zh-hans.jpg b/docs/assets/images/languages/lang-image-zh-hans.jpg deleted file mode 100644 index e7ae74ce220..00000000000 Binary files a/docs/assets/images/languages/lang-image-zh-hans.jpg and /dev/null differ diff --git a/docs/assets/images/languages/lang-image-zh-hant.jpg b/docs/assets/images/languages/lang-image-zh-hant.jpg deleted file mode 100644 index 7b7911fdd92..00000000000 Binary files a/docs/assets/images/languages/lang-image-zh-hant.jpg and /dev/null differ diff --git a/docs/assets/images/languages/lang-ko.jpg b/docs/assets/images/languages/lang-ko.jpg deleted file mode 100644 index 80fbba1ac93..00000000000 Binary files a/docs/assets/images/languages/lang-ko.jpg and /dev/null differ diff --git a/docs/assets/images/languages/lang-zh.jpg b/docs/assets/images/languages/lang-zh.jpg deleted file mode 100644 index 06f5d3112a9..00000000000 Binary files a/docs/assets/images/languages/lang-zh.jpg and /dev/null differ diff --git a/docs/assets/images/leancloud-app-info.jpg b/docs/assets/images/leancloud-app-info.jpg deleted file mode 100644 index 2f04541f46a..00000000000 Binary files a/docs/assets/images/leancloud-app-info.jpg and /dev/null differ diff --git a/docs/assets/images/leancloud-authorization.jpg b/docs/assets/images/leancloud-authorization.jpg deleted file mode 100644 index d7d655808c3..00000000000 Binary files a/docs/assets/images/leancloud-authorization.jpg and /dev/null differ diff --git a/docs/assets/images/leancloud-create-class-0.jpg b/docs/assets/images/leancloud-create-class-0.jpg deleted file mode 100644 index 4e65b6d6d17..00000000000 Binary files a/docs/assets/images/leancloud-create-class-0.jpg and /dev/null differ diff --git a/docs/assets/images/leancloud-create-class-1.jpg b/docs/assets/images/leancloud-create-class-1.jpg deleted file mode 100644 index d28993782f2..00000000000 Binary files a/docs/assets/images/leancloud-create-class-1.jpg and /dev/null differ diff --git a/docs/assets/images/realfavicongenerator-path.jpg b/docs/assets/images/realfavicongenerator-path.jpg deleted file mode 100644 index 91f2956244e..00000000000 Binary files a/docs/assets/images/realfavicongenerator-path.jpg and /dev/null differ diff --git a/docs/assets/images/realfavicongenerator-result.jpg b/docs/assets/images/realfavicongenerator-result.jpg deleted file mode 100644 index 1f9da00a3ca..00000000000 Binary files a/docs/assets/images/realfavicongenerator-result.jpg and /dev/null differ diff --git a/docs/assets/images/realfavicongenerator-select-favicon-picture.jpg b/docs/assets/images/realfavicongenerator-select-favicon-picture.jpg deleted file mode 100644 index 36fe7715b92..00000000000 Binary files a/docs/assets/images/realfavicongenerator-select-favicon-picture.jpg and /dev/null differ diff --git a/docs/assets/images/tip_alipay.jpg b/docs/assets/images/tip_alipay.jpg deleted file mode 100644 index 7c5c7bd4b71..00000000000 Binary files a/docs/assets/images/tip_alipay.jpg and /dev/null differ diff --git a/docs/assets/images/tip_paypal.jpg b/docs/assets/images/tip_paypal.jpg deleted file mode 100644 index 0d357739093..00000000000 Binary files a/docs/assets/images/tip_paypal.jpg and /dev/null differ diff --git a/docs/assets/images/tip_wechat.jpg b/docs/assets/images/tip_wechat.jpg deleted file mode 100644 index d9831e1989b..00000000000 Binary files a/docs/assets/images/tip_wechat.jpg and /dev/null differ diff --git a/docs/landing.html b/docs/landing.html deleted file mode 100644 index 544e653d3eb..00000000000 --- a/docs/landing.html +++ /dev/null @@ -1,97 +0,0 @@ ---- -layout: landing -title: TeXt Theme -excerpt: > - A super customizable Jekyll theme for personal site, team site, blog, project, documentation, etc. -permalink: /index.html - -article_header: - actions: - - text: Getting Started - type: error - url: /docs/en/quick-start - - text: Demo - type: outline-theme-dark - url: /test/ - height: 100vh - theme: dark - background_color: "#367a9a" - background_image: - gradient: "linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .6))" - src: /docs/assets/images/cover4.jpg -data: - sections: - - title: Fully Responsive - excerpt: This theme will look great on any device, no matter the size! - theme: dark - image: - src: /screenshots/TeXt-responsive.png - background_color: "#515151" - - title: Super Customizable - excerpt: Everything from the menus, sidebars, comments, and more can be configured or set with YAML Front Matter. - actions: - - text: See Examples - url: /samples.html - - text: Learn More - url: /docs/en/configuration - image: - src: /screenshots/TeXt-layouts.png - is_row: true - full_width: true - style: "max-width: 1200px;" - - title: Skins - excerpt: TeXt has 6 built-in skins, you can also set up your own skin. - image: - src: /screenshots/TeXt-skins.png - is_row: true - full_width: true - style: "max-width: 1000px;" - - title: Enhanced User Experience - children: - - title: Additional Styles - excerpt: TeXt offer some CSS classes for your page, including alert, tag, image, button, etc. - actions: - - text: Learn More - url: /docs/en/additional-styles - - title: Extensions - excerpt: Adding audios, videos, slides and demos to your page. - actions: - - text: Learn More - url: /docs/en/extensions - - title: Markdown Enhancements - excerpt: Using Mathjax, Mermaid and Charts in your page. - actions: - - text: Learn More - url: /docs/en/markdown-enhancements - - title: 100% Free - theme: dark - excerpt: Free to use however you want under the MIT License. Clone it, fork it, customize it, whatever! - actions: - - text: ' GitHub' - type: outline-theme-dark - url: https://github.com/kitian616/jekyll-TeXt-theme - background_color: "#515151" - - title: Tip Me - children: - - title: 'PayPal ' - image: - src: /docs/assets/images/tip_paypal.jpg - url: https://www.paypal.me/kitian616 - style: "max-width: 200px; max-height: 200px" - is_row: true - - title: 'WeChat ' - image: - src: /docs/assets/images/tip_wechat.jpg - style: "max-width: 200px; max-height: 200px" - is_row: true - - title: 'Alipay ' - image: - src: /docs/assets/images/tip_alipay.jpg - style: "max-width: 200px; max-height: 200px" - is_row: true - - title: 'Bitcoin ' - image: - src: /docs/assets/images/3Fkufxcw2xd8HnaRJBNK4ccdtkUDyyNu4V.jpg - style: "max-width: 200px; max-height: 200px" - content: '3Fkufxcw2xd8HnaRJBNK4ccdtkUDyyNu4V' ---- diff --git a/docs/samples.html b/docs/samples.html deleted file mode 100644 index 438e1e36811..00000000000 --- a/docs/samples.html +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: page -title: Samples -permalink: /samples.html ---- -
      -
      -

      Page Layout

      - {%- include article-list.html articles=site.sample_page type='grid' -%} -
      - -
      -

      Articles(Home) Layout

      - {%- include article-list.html articles=site.sample_articles type='grid' -%} -
      - -
      -

      Languages

      - {%- include article-list.html articles=site.sample_languages type='grid' size='sm' -%} -
      -
      diff --git a/favicon.ico b/favicon.ico deleted file mode 100644 index 03bfa7dabd0..00000000000 Binary files a/favicon.ico and /dev/null differ diff --git a/index.html b/index.html deleted file mode 100644 index 989857ffdce..00000000000 --- a/index.html +++ /dev/null @@ -1,5 +0,0 @@ ---- -layout: home -# articles: -# excerpt_type: html ---- diff --git a/iosjb/index.html b/iosjb/index.html deleted file mode 100644 index a44d0d160fd..00000000000 --- a/iosjb/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - -

      You will be redirected to iosre soon!

      - - \ No newline at end of file diff --git a/iosre/CydiaIcon.png b/iosre/CydiaIcon.png deleted file mode 100644 index e467c8b8c13..00000000000 Binary files a/iosre/CydiaIcon.png and /dev/null differ diff --git a/iosre/Packages b/iosre/Packages deleted file mode 100644 index 730eb2c3320..00000000000 --- a/iosre/Packages +++ /dev/null @@ -1,20 +0,0 @@ -Package: com.codwam.surgetweak -Architecture: iphoneos-arm -Version: 0.1 -Section: Tweaks -Maintainer: codwam -Installed-Size: 368 -Depends: mobilesubstrate (>= 0.9.5000) -Filename: ./debfiles/com.codwam.surgetweak_0.1_iphoneos-arm.deb -Size: 80244 -MD5sum: 15e0d749f15d170272571f960c934b66 -SHA1: 03a6c16bec41f4e19d84b6e199ce41a5a6d4e45a -SHA256: f2032dd00959433f51b73064b613442be649522ad8e1d836c1b966c2560fe481 -SHA512: 301fd66c7271308531872c64c95b39bb2ec7dc27483b5208dc775ff2f578952efe3c3765633563238caf4625da01540a1d69526936c529c08c897af413291362 -Description: Surge Cracked! -Name: surgetweak -Author: codwam -Depiction: https://julioverne.github.io/description.html?id=com.julioverne.adblock -Homepage: https://twitter.com/ijulioverne - - diff --git a/iosre/Packages.bz2 b/iosre/Packages.bz2 deleted file mode 100644 index c7a782d2dfe..00000000000 Binary files a/iosre/Packages.bz2 and /dev/null differ diff --git a/iosre/README.md b/iosre/README.md deleted file mode 100644 index a6b0eb95b6d..00000000000 --- a/iosre/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Codwam's Repo - -https://codwam.github.io/iosre/ - -## Thanks - -https://github.com/julioverne/julioverne.github.io diff --git a/iosre/Release b/iosre/Release deleted file mode 100644 index 0d371d855df..00000000000 --- a/iosre/Release +++ /dev/null @@ -1,11 +0,0 @@ -Origin: codwam's Repo -Label: codwam -Suite: stable -Version: 1.0 -Codename: codwam -Architecture: iphoneos-arm -Components: main -Description: codwam's Tweaks -MD5Sum: - 758fec898e648d54dd53ea41e9157eb5 601 Packages - a575f0ca9a663cc3f36f776c313a0e3e 445 Packages.bz2 diff --git a/iosre/all.packages b/iosre/all.packages deleted file mode 100644 index d104a9ade07..00000000000 --- a/iosre/all.packages +++ /dev/null @@ -1 +0,0 @@ -[{"package":"com.codwam.surgetweak","name":"surgetweak","size":80244,"time":1703080432,"version":"0.1","section":"Tweaks"}] diff --git a/iosre/apt-ftparchive b/iosre/apt-ftparchive deleted file mode 100755 index b8ddb7bb7ea..00000000000 Binary files a/iosre/apt-ftparchive and /dev/null differ diff --git a/iosre/debfiles/com.codwam.surgetweak_0.1_iphoneos-arm.deb b/iosre/debfiles/com.codwam.surgetweak_0.1_iphoneos-arm.deb deleted file mode 100644 index 761ef997bb3..00000000000 Binary files a/iosre/debfiles/com.codwam.surgetweak_0.1_iphoneos-arm.deb and /dev/null differ diff --git a/iosre/debimages/Surge.PNG b/iosre/debimages/Surge.PNG deleted file mode 100644 index acd0e82dde0..00000000000 Binary files a/iosre/debimages/Surge.PNG and /dev/null differ diff --git a/iosre/description.html b/iosre/description.html deleted file mode 100644 index 17513b937de..00000000000 --- a/iosre/description.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - codwam's Repo - - - - - - - - - - -
      - - -

      • Loading Description...

      - - - - - - - - - - - - -

      Donate / Help

      -
        -
      • -
        -
        -
        - -
        - -
        -
        - -
        -
        - -
        - -
        -
        -
        -
      • -
      - - - - - - - - -

      -
      - - - -

      codwam © 2022

      - - \ No newline at end of file diff --git a/iosre/donate/css/asProgress.min.css b/iosre/donate/css/asProgress.min.css deleted file mode 100644 index ea6fbda7897..00000000000 --- a/iosre/donate/css/asProgress.min.css +++ /dev/null @@ -1,9 +0,0 @@ -/** -* jQuery asProgress v0.2.4 -* https://github.com/amazingSurge/jquery-asProgress -* -* Copyright (c) amazingSurge -* Released under the LGPL-3.0 license -*/ -.progress{height:20px;padding:1px;margin-bottom:20px;overflow:hidden;background-color:#f7f7f7; border-radius:5px;border:1px solid #eee}.progress__bar{display:block;height:100%;background:#5bc0de;border-radius:5px;}.progress__label{float:right;padding:4px 2px;font-size:12px;color:#fff}.progress--radius{border-radius:2px}.progress--round{border-radius:1000px}.progress--radius .progress__bar,.progress--round .progress__bar{border-radius:inherit}.progress--small{height:15px}.progress--large{height:10px}.progress--success .progress__bar{background-color:#43ac6a}.progress--alert .progress__bar{background-color:#f04124}.progress--striped .progress__bar{-webkit-background-size:40px 40px;background-size:40px 40px} -/*# sourceMappingURL=asProgress.min.css.map */ diff --git a/iosre/donate/css/normalize.css b/iosre/donate/css/normalize.css deleted file mode 100644 index 8710595d3e4..00000000000 --- a/iosre/donate/css/normalize.css +++ /dev/null @@ -1,422 +0,0 @@ -/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */ - -/** - * 1. Change the default font family in all browsers (opinionated). - * 2. Correct the line height in all browsers. - * 3. Prevent adjustments of font size after orientation changes in IE and iOS. - */ - -html { - font-family: sans-serif; /* 1 */ - line-height: 1.15; /* 2 */ - -ms-text-size-adjust: 100%; /* 3 */ - -webkit-text-size-adjust: 100%; /* 3 */ -} - -/** - * Remove the margin in all browsers (opinionated). - */ - -body { - margin: 0; -} - -/* HTML5 display definitions - ========================================================================== */ - -/** - * Add the correct display in IE 9-. - * 1. Add the correct display in Edge, IE, and Firefox. - * 2. Add the correct display in IE. - */ - -article, -aside, -details, /* 1 */ -figcaption, -figure, -footer, -header, -main, /* 2 */ -menu, -nav, -section, -summary { /* 1 */ - display: block; -} - -/** - * Add the correct display in IE 9-. - */ - -audio, -canvas, -progress, -video { - display: inline-block; -} - -/** - * Add the correct display in iOS 4-7. - */ - -audio:not([controls]) { - display: none; - height: 0; -} - -/** - * Add the correct vertical alignment in Chrome, Firefox, and Opera. - */ - -progress { - vertical-align: baseline; -} - -/** - * Add the correct display in IE 10-. - * 1. Add the correct display in IE. - */ - -template, /* 1 */ -[hidden] { - display: none; -} - -/* Links - ========================================================================== */ - -/** - * 1. Remove the gray background on active links in IE 10. - * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. - */ - -a { - background-color: transparent; /* 1 */ - -webkit-text-decoration-skip: objects; /* 2 */ -} - -/** - * Remove the outline on focused links when they are also active or hovered - * in all browsers (opinionated). - */ - -a:active, -a:hover { - outline-width: 0; -} - -/* Text-level semantics - ========================================================================== */ - -/** - * 1. Remove the bottom border in Firefox 39-. - * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. - */ - -abbr[title] { - border-bottom: none; /* 1 */ - text-decoration: underline; /* 2 */ - text-decoration: underline dotted; /* 2 */ -} - -/** - * Prevent the duplicate application of `bolder` by the next rule in Safari 6. - */ - -b, -strong { - font-weight: inherit; -} - -/** - * Add the correct font weight in Chrome, Edge, and Safari. - */ - -b, -strong { - font-weight: bolder; -} - -/** - * Add the correct font style in Android 4.3-. - */ - -dfn { - font-style: italic; -} - -/** - * Correct the font size and margin on `h1` elements within `section` and - * `article` contexts in Chrome, Firefox, and Safari. - */ - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -/** - * Add the correct background and color in IE 9-. - */ - -mark { - background-color: #ff0; - color: #000; -} - -/** - * Add the correct font size in all browsers. - */ - -small { - font-size: 80%; -} - -/** - * Prevent `sub` and `sup` elements from affecting the line height in - * all browsers. - */ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -/* Embedded content - ========================================================================== */ - -/** - * Remove the border on images inside links in IE 10-. - */ - -img { - border-style: none; -} - -/** - * Hide the overflow in IE. - */ - -svg:not(:root) { - overflow: hidden; -} - -/* Grouping content - ========================================================================== */ - -/** - * 1. Correct the inheritance and scaling of font size in all browsers. - * 2. Correct the odd `em` font sizing in all browsers. - */ - -code, -kbd, -pre, -samp { - font-family: monospace, monospace; /* 1 */ - font-size: 1em; /* 2 */ -} - -/** - * Add the correct margin in IE 8. - */ - -figure { - margin: 1em 40px; -} - -/** - * 1. Add the correct box sizing in Firefox. - * 2. Show the overflow in Edge and IE. - */ - -hr { - box-sizing: content-box; /* 1 */ - height: 0; /* 1 */ - overflow: visible; /* 2 */ -} - -/* Forms - ========================================================================== */ - -/** - * 1. Change font properties to `inherit` in all browsers (opinionated). - * 2. Remove the margin in Firefox and Safari. - */ - -button, -input, -optgroup, -select, -textarea { - font: inherit; /* 1 */ - margin: 0; /* 2 */ -} - -/** - * Restore the font weight unset by the previous rule. - */ - -optgroup { - font-weight: bold; -} - -/** - * Show the overflow in IE. - * 1. Show the overflow in Edge. - */ - -button, -input { /* 1 */ - overflow: visible; -} - -/** - * Remove the inheritance of text transform in Edge, Firefox, and IE. - * 1. Remove the inheritance of text transform in Firefox. - */ - -button, -select { /* 1 */ - text-transform: none; -} - -/** - * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` - * controls in Android 4. - * 2. Correct the inability to style clickable types in iOS and Safari. - */ - -button, -html [type="button"], /* 1 */ -[type="reset"], -[type="submit"] { - -webkit-appearance: button; /* 2 */ -} - -/** - * Remove the inner border and padding in Firefox. - */ - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - border-style: none; - padding: 0; -} - -/** - * Restore the focus styles unset by the previous rule. - */ - -button:-moz-focusring, -[type="button"]:-moz-focusring, -[type="reset"]:-moz-focusring, -[type="submit"]:-moz-focusring { - outline: 1px dotted ButtonText; -} - -/** - * Change the border, margin, and padding in all browsers (opinionated). - */ - -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} - -/** - * 1. Correct the text wrapping in Edge and IE. - * 2. Correct the color inheritance from `fieldset` elements in IE. - * 3. Remove the padding so developers are not caught out when they zero out - * `fieldset` elements in all browsers. - */ - -legend { - box-sizing: border-box; /* 1 */ - color: inherit; /* 2 */ - display: table; /* 1 */ - max-width: 100%; /* 1 */ - padding: 0; /* 3 */ - white-space: normal; /* 1 */ -} - -/** - * Remove the default vertical scrollbar in IE. - */ - -textarea { - overflow: auto; -} - -/** - * 1. Add the correct box sizing in IE 10-. - * 2. Remove the padding in IE 10-. - */ - -[type="checkbox"], -[type="radio"] { - box-sizing: border-box; /* 1 */ - padding: 0; /* 2 */ -} - -/** - * Correct the cursor style of increment and decrement buttons in Chrome. - */ - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -/** - * 1. Correct the odd appearance in Chrome and Safari. - * 2. Correct the outline style in Safari. - */ - -[type="search"] { - -webkit-appearance: textfield; /* 1 */ - outline-offset: -2px; /* 2 */ -} - -/** - * Remove the inner padding and cancel buttons in Chrome and Safari on OS X. - */ - -[type="search"]::-webkit-search-cancel-button, -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -/** - * Correct the text style of placeholders in Chrome, Edge, and Safari. - */ - -::-webkit-input-placeholder { - color: inherit; - opacity: 0.54; -} - -/** - * 1. Correct the inability to style clickable types in iOS and Safari. - * 2. Change font properties to `inherit` in Safari. - */ - -::-webkit-file-upload-button { - -webkit-appearance: button; /* 1 */ - font: inherit; /* 2 */ -} diff --git a/iosre/donate/index_.html b/iosre/donate/index_.html deleted file mode 100644 index 2aa5efd4e7f..00000000000 --- a/iosre/donate/index_.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - codwam's Donate - - - - - - - - - - - -
      -

      codwam's Donate Page

      -
      -
      -
      -

      If you want to support development, Donations can be done in button bellow.

      -
      -
      -
      - -
      -

      -
      -

      codwam

      -
      -
      - - - - - diff --git a/iosre/donate/index_progress.html b/iosre/donate/index_progress.html deleted file mode 100644 index 612753fe795..00000000000 --- a/iosre/donate/index_progress.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - codwam's Donate - - - - - - - - - - - -
      -

      codwam's Donate Page

      -
      -
      -
      -

      Help me,
      For a long time, I have been using only one device, iPhone 5S, that i got help buying. Sadly, I broke it a few weeks ago. While i'm currently away, I decided to create a donation page to help my getting a new iPhone. Also, I hope we will get many years of cool stuff comes in our JB Comunity.

      -
      -
      -
      -
      -
      Progress Status For A New Device:
      -
      -
      -
      -
      -
      - -
      -

      -

      (03/11/19) Status: ordered iPhone XR 128GB

      -
      -

      Today, we have Collected ~$1500, thats is equivalent to buy a new iPhone XR 128GB on my country(BR), the initial meta is for device iPhone XS 64GB, but for long time away i decided to order XR. And its done one more time, with help of comunity. Thanks again JB Comunity!

      -
      -
      - -
      -

      codwam

      -
      -
      - - - - - diff --git a/iosre/donate/js/jquery-asProgress.min.js b/iosre/donate/js/jquery-asProgress.min.js deleted file mode 100644 index 82dc3357f45..00000000000 --- a/iosre/donate/js/jquery-asProgress.min.js +++ /dev/null @@ -1,9 +0,0 @@ -/** -* jQuery asProgress v0.2.4 -* https://github.com/amazingSurge/jquery-asProgress -* -* Copyright (c) amazingSurge -* Released under the LGPL-3.0 license -*/ -!function(t,e){if("function"==typeof define&&define.amd)define(["jquery"],e);else if("undefined"!=typeof exports)e(require("jquery"));else{var i={exports:{}};e(t.jQuery),t.jqueryAsProgressEs=i.exports}}(this,function(t){"use strict";function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t){return"string"==typeof t&&t.includes("%")}function n(){return void 0!==window.performance&&window.performance.now?window.performance.now():Date.now()}var s=function(t){return t&&t.__esModule?t:{default:t}}(t),a=function(){function t(t,e){for(var i=0;i1?e-1:0),n=1;n0}},{key:"getPercentage",value:function(t){return Math.round(100*(t-this.min)/(this.max-this.min))}},{key:"go",value:function(t){if(!this.is("disabled")){var e=this;this._clear(),i(t)&&(t=parseInt(t.replace("%",""),10),t=Math.round(this.min+t/100*(this.max-this.min))),void 0===t&&(t=this.goal),t>this.max?t=this.max:ts?(o=s+o)>t&&(o=t):(o=s-o)0&&"function"==typeof this.options.labelCallback&&this.$label.html(this.options.labelCallback.call(this,[this.now])),this._trigger("update",t)}},{key:"_clear",value:function(){this._frameId&&(window.cancelAnimationFrame(this._frameId),this._frameId=null)}},{key:"get",value:function(){return this.now}},{key:"start",value:function(){this.is("disabled")||(this._clear(),this._trigger("start"),this.go(this.goal))}},{key:"reset",value:function(){this.is("disabled")||(this._clear(),this._update(this.first),this._trigger("reset"))}},{key:"stop",value:function(){this._clear(),this._trigger("stop")}},{key:"finish",value:function(){this.is("disabled")||(this._clear(),this._update(this.goal),this._trigger("finish"))}},{key:"destroy",value:function(){this.$element.data("asProgress",null),this._trigger("destroy")}},{key:"enable",value:function(){this._states.disabled=0,this.$element.removeClass(this.classes.disabled)}},{key:"disable",value:function(){this._states.disabled=1,this.$element.addClass(this.classes.disabled)}}],[{key:"registerEasing",value:function(t){for(var e=arguments.length,i=Array(e>1?e-1:0),n=1;n1?e-1:0),n=1;n 1) { - return match[1].split(' ')[0].split('_').join('.'); - } - return false; -} -var theme = localStorage.Theme; -if(!theme) { - theme = "ios7.min"; - localStorage.setItem('Theme', theme); -} -$('head').append(''); - -$(document).ready(function () { - if(theme==="ios7dark") { - $("#toggleDark").attr({ "src": "./files/DarkMode-Dark.png" }); - } -}); - -function toogleTheme() -{ - var themeNew = "ios7.min"; - if(localStorage.Theme === themeNew) { - themeNew = "ios7dark"; - } - localStorage.setItem('Theme', themeNew); - window.location.reload(false); -} -$(function() { - $("li").on("click",function() { - if(this.id=="dnt") { - $("#dnt_txt").html("You can donate USD via PayPal mail: codwam"+"@"+"icloud.com"); - } - }); -}); -function loadPackageInfo() { - var urlSelfParts = window.location.href.split('description.html?id='); - var current_url_path = window.location.href.slice(0, window.location.href.lastIndexOf('/')); - var form_url = current_url_path+"/packageInfo/"+urlSelfParts[1]; - if (navigator.userAgent.search(/Cydia/) == -1) { - $("#showAddRepo_").show(); - $("#open_cydia").attr("href","cydia://url/https://cydia.saurik.com/api/share#?source=https://codwam.github.io/iosre/&package="+urlSelfParts[1]); - } - $.ajax({ - url: form_url, - type: "GET", - cache: false, - crossDomain: true, - success: function (returnhtml) { - $("#tweakStatusInfo").hide(); - var decodeResp = eval('('+returnhtml+')'); - if(decodeResp.name) { - document.title = decodeResp.name; - $("#name").html(decodeResp.name); - $("#name").show(); - } - if(decodeResp.desc_short) { - $("#desc_short").html(decodeResp.desc_short); - $("#desc_short_").show(); - } - if(decodeResp.warning) { - $("#warning").html(decodeResp.warning); - $("#warning_").show(); - } - if(decodeResp.desc_long) { - $("#desc_long").html(decodeResp.desc_long); - $("#desc_long_").show(); - } - if(decodeResp.compatitle) { - $("#compatitle_").show(); - $("#compatitle").html(decodeResp.compatitle); - var ios_ver = iOSVersion(); - if(ios_ver) { - $(".cur_ios").html("Current iOS: "+ios_ver); - } - } - if(decodeResp.changelog) { - $("#changelog").html(decodeResp.changelog); - $("#changelog_").show(); - } - if(decodeResp.screenshot) { - $("#screenshot").html(decodeResp.screenshot); - $("#screenshot_").show(); - } - if(decodeResp.open == true) { - $("#is_open_source_").show(); - } - - }, - error: function (err) { - $("#errorInfo").html("Description unavailable for "+urlSelfParts[1]); - } - }); -} - - -var allPackages = null; -var packagesSection = {}; -function openSection(sectionName) -{ - var sectionContent = ""; - sectionContent += "
    • \"\"
    • "; - for (var keyNow in packagesSection[sectionName]) { - var dicNow = packagesSection[sectionName][keyNow]; - var urlOpen = "cydia://package/"+dicNow.package; - if (navigator.userAgent.search(/Cydia/) == -1) { - var current_url_path = window.location.href.slice(0, window.location.href.lastIndexOf('/')); - urlOpen = current_url_path+"/description.html?id="+dicNow.package; - } - sectionContent += "
    • \"\"
    • "; - } - - $("#browser").html(sectionContent); -} -function loadMainSection() -{ - var sectionContent = ""; - for (var section in packagesSection) { - sectionContent += "
    • \"\"
    • "; - } - $("#browser").html(sectionContent); -} -function getPackageWithID(pkg_id) -{ - for (var dicNow in allPackages) { - if(allPackages[dicNow].package == pkg_id) { - return allPackages[dicNow]; - } - } - return null; -} -function loadPackageDetail() -{ - var packageID = window.location.href.split('description.html?id=')[1]; - var packageInfo = getPackageWithID(packageID); - if(packageInfo!=null) { - $("#pkg_").show(); - $("#pkg_name").html(packageInfo.name); - $("#pkg_id").html(packageInfo.package); - $("#pkg_section").html(packageInfo.section); - $("#pkg_version").html(packageInfo.version); - $("#pkg_size").html(filesize(packageInfo.size)); - $("#pkg_time").html(timeago.format(packageInfo.time*1000)); - } -} -function loadRecentUpdates() -{ - var htmlnews = ""; - var count = 0; - for (var dicNow in allPackages) { - count++; - if(count > 5) { - break; - } - var urlOpen = "cydia://package/"+allPackages[dicNow].package; - if (navigator.userAgent.search(/Cydia/) == -1) { - var current_url_path = window.location.href.slice(0, window.location.href.lastIndexOf('/')); - urlOpen = current_url_path+"/description.html?id="+allPackages[dicNow].package; - } - htmlnews += "
    • \"\"
    • "; - } - $("#updates").html(htmlnews); -} -function loadPackages() { - var current_url_path = window.location.href.slice(0, window.location.href.lastIndexOf('/')); - var form_url = current_url_path+"/all.packages"; - $.ajax({ - url: form_url, - type: "GET", - cache: false, - crossDomain: true, - success: function (returnhtml) { - allPackages = eval('('+returnhtml+')'); - var htmlnews = ""; - for (var dicNow in allPackages) { - var section = allPackages[dicNow].section; - if(section==null) { - section = "Unknown"; - } - if(packagesSection[section] == null) { - packagesSection[section] = []; - } - packagesSection[section].push(allPackages[dicNow]); - } - loadRecentUpdates(); - $("#browser_").show(); - $("#updates_").show(); - - loadPackageDetail(); - }, - error: function (err) { - $("#browser_").hide(); - $("#updates_").hide(); - } - }); -} - -// File Size Format -!function(e,i){"object"==typeof exports&&"undefined"!=typeof module?module.exports=i():"function"==typeof define&&define.amd?define(i):(e=e||self).filesize=i()}(this,(function(){"use strict";const e=/^(b|B)$/,i={iec:{bits:["b","Kib","Mib","Gib","Tib","Pib","Eib","Zib","Yib"],bytes:["B","KiB","MiB","GiB","TiB","PiB","EiB","ZiB","YiB"]},jedec:{bits:["b","Kb","Mb","Gb","Tb","Pb","Eb","Zb","Yb"],bytes:["B","KB","MB","GB","TB","PB","EB","ZB","YB"]}},b={iec:["","kibi","mebi","gibi","tebi","pebi","exbi","zebi","yobi"],jedec:["","kilo","mega","giga","tera","peta","exa","zetta","yotta"]};function t(t,o={}){if(isNaN(t))throw new TypeError("Invalid number");let n=[],a=0,B=!0===o.bits,r=!0===o.unix,d=o.base||2,s=void 0!==o.round?o.round:r?1:2,c=void 0!==o.locale?o.locale:"",f=o.localeOptions||{},u=void 0!==o.separator?o.separator:"",y=void 0!==o.spacer?o.spacer:r?"":" ",M=o.symbols||{},h=2===d&&o.standard||"jedec",l=o.output||"string",m=!0===o.fullform,p=o.fullforms instanceof Array?o.fullforms:[],v=void 0!==o.exponent?o.exponent:-1,j=Number(t),N=j<0,g=d>2?1e3:1024;return N&&(j=-j),(-1===v||isNaN(v))&&(v=Math.floor(Math.log(j)/Math.log(g)))<0&&(v=0),v>8&&(v=8),"exponent"===l?v:(0===j?(n[0]=0,n[1]=r?"":i[h][B?"bits":"bytes"][v]):(a=j/(2===d?Math.pow(2,10*v):Math.pow(1e3,v)),B&&(a*=8)>=g&&v<8&&(a/=g,v++),n[0]=Number(a.toFixed(v>0?s:0)),n[0]===g&&v<8&&void 0===o.exponent&&(n[0]=1,v++),n[1]=10===d&&1===v?B?"kb":"kB":i[h][B?"bits":"bytes"][v],r&&(n[1]="jedec"===h?n[1].charAt(0):v>0?n[1].replace(/B$/,""):n[1],e.test(n[1])&&(n[0]=Math.floor(n[0]),n[1]=""))),N&&(n[0]=-n[0]),n[1]=M[n[1]]||n[1],!0===c?n[0]=n[0].toLocaleString():c.length>0?n[0]=n[0].toLocaleString(c,f):u.length>0&&(n[0]=n[0].toString().replace(".",u)),"array"===l?n:(m&&(n[1]=p[v]?p[v]:b[h][v]+(B?"bit":"byte")+(1===n[0]?"":"s")),"object"===l?{value:n[0],symbol:n[1]}:n.join(y)))}return t.partial=e=>i=>t(i,e),t})); - -// Time Ago Format -!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e=e||self).timeago={})}(this,function(e){"use strict";var c=[60,60,24,7,365/7/12,12];function n(e){return e instanceof Date?e:!isNaN(e)||/^\d+$/.test(e)?new Date(parseInt(e)):(e=(e||"").trim().replace(/\.\d+/,"").replace(/-/,"/").replace(/-/,"/").replace(/(\d)T(\d)/,"$1 $2").replace(/Z/," UTC").replace(/([+-]\d\d):?(\d\d)/," $1$2"),new Date(e))}function f(e,t){for(var n=e<0?1:0,r=e=Math.abs(e),a=0;e>=c[a]&&a=c[n]&&nheader:after,ul li:after,ul:after,ul:before{content:""}html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,footer,header,menu,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline dotted}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;white-space:normal}progress{}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none} - -.font-body,body{font:14px -apple-system-font,".Helvetica NeueUI","Helvetica Neue",sans-serif;}.font-subtitle,[role=footer],body>p,h2{font-size:14px;font-weight:400}.font-bold,b,strong{font-weight:600}.font-heading,body>header h1{font:-apple-system-headline}a,button{color:#000000;text-decoration:none}button{background:0 0;margin:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.subpixel-line,body>header:after,hr,ul li:after,ul:after,ul:before{display:block;width:100%;height:1px;background:#c8c7cc}.has-subpixel .subpixel-line,.has-subpixel body>header:after,.has-subpixel hr,.has-subpixel ul li:after,.has-subpixel ul:after,.has-subpixel ul:before,ul .has-subpixel li:after{height:.5px}.has-subpixel-3x .subpixel-line,.has-subpixel-3x body>header:after,.has-subpixel-3x hr,.has-subpixel-3x ul li:after,.has-subpixel-3x ul:after,.has-subpixel-3x ul:before,ul .has-subpixel-3x li:after{height:.33px}html{background:#efeff4}html .depiction{background:0 0}body{margin:20px 0 35px}.cydia body{margin-top:35px}.depiction body{margin-top:0;margin-bottom:0}@media (min-width:708px){#content{width:708px;margin:0 auto}}@media (min-width:964px){#content{width:964px}}[role=footer],body>p,h2{margin:15px;color:#6d6d72}@media (min-width:708px){[role=footer],body>p,h2{margin-left:0;margin-right:0}ul{border-radius:4px}}h2{text-transform:uppercase;margin-bottom:5px}h2 a{color:inherit}body>header{position:fixed;top:0;left:0;width:100%;height:44px;z-index:10;background:rgba(246,246,248,.85);-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px)}body>header:after{position:absolute;left:0;bottom:0}ul,ul li{position:relative}.cydia body>header{display:none}.cydia body>header+p{margin-top:-20px}body>header h1{margin:0;text-align:center;font-size:18px;line-height:44px}ul{margin:5px 0 35px;list-style:none;background:#fff}ul:after,ul:before{position:absolute;left:0}ul:before{top:0}ul:after{bottom:0}ul li{margin-left:15px;margin-bottom:-1px;padding:12px 15px 12px 0}ul li:after{position:absolute;top:0;left:0}ul li:first-child:after{background:0 0}@media (min-width:708px){ul:after,ul:before{display:none}ul li:first-child,ul li:first-child [role=button],ul li:first-child [role=link],ul li:first-child p{border-top-left-radius:4px;border-top-right-radius:4px}ul li:last-child,ul li:last-child [role=button],ul li:last-child [role=link],ul li:last-child p{border-bottom-left-radius:4px;border-bottom-right-radius:4px}}ul li [role=button],ul li [role=link],ul li p{padding:12px 15px;margin:-12px -15px}ul li.has-icon{margin-left:59px}ul li.has-icon [role=button],ul li.has-icon [role=link],ul li.has-icon p{margin-left:-59px;padding-left:59px}ul li .icon{position:absolute;top:10px;left:15px;width:29px;height:29px}ul li [role=button],ul li [role=link]{display:block;padding-right:30px;-webkit-tap-highlight-color:transparent;position:relative;z-index:2}ul li [role=button]:active,ul li [role=button]:focus,ul li [role=link]:active,ul li [role=link]:focus{background-color:#d9d9d9}ul li [role=button]:after,ul li [role=link]:after{content:"";display:block;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDU2IDU2Ij48cGF0aCBkPSJNIDE4LjY5NTMgNDguMzY3MiBDIDE5LjI4MTMgNDguMzY3MiAxOS43OTY5IDQ4LjEzMjggMjAuMjE4NyA0Ny43MzQ0IEwgMzguNzgxMyAyOS41NzAzIEMgMzkuMjI2NiAyOS4xMjUwIDM5LjQ2MDkgMjguNTg1OSAzOS40NjA5IDI4LjAwMDAgQyAzOS40NjA5IDI3LjM5MDYgMzkuMjI2NiAyNi44MjgxIDM4Ljc4MTMgMjYuNDI5NyBMIDIwLjIxODcgOC4yODkwIEMgMTkuODIwMyA3Ljg2NzIgMTkuMjgxMyA3LjYzMjggMTguNjk1MyA3LjYzMjggQyAxNy40NzY2IDcuNjMyOCAxNi41MzkxIDguNTcwMyAxNi41MzkxIDkuNzg5MCBDIDE2LjUzOTEgMTAuMzUxNSAxNi43OTY5IDEwLjkxNDEgMTcuMTcxOCAxMS4zMTI1IEwgMzQuMjEwOSAyOC4wMDAwIEwgMTcuMTcxOCA0NC42ODc1IEMgMTYuNzk2OSA0NS4wODU5IDE2LjUzOTEgNDUuNjI1MCAxNi41MzkxIDQ2LjIxMDkgQyAxNi41MzkxIDQ3LjQyOTcgMTcuNDc2NiA0OC4zNjcyIDE4LjY5NTMgNDguMzY3MiBaIi8+PC9zdmc+);position:absolute;top:50%;right:15px;width:14px;height:14px;margin-top:-7px;background-size:100% 100%}ul li>button{font:inherit;width:100%;text-align:left}ul li .pull-in{vertical-align:top}@media (max-width:321px){ul li .pull-in{margin:-11px -15px}}ul+[role=footer],ul+p{margin-top:-25px}#credits{color:black;} - -#screenshot img { - display: inline-block; - max-width: 100%; - max-height: 100%; - width: auto; - height: 320px; -} -#screenshot { - -webkit-overflow-scrolling:touch; - overflow-x: scroll; - overflow-y: hidden; - white-space: nowrap; - height:350px; -} -span .value { - color: #777; - float: right; - text-align: right; - margin-left: 8px; -} - -.column { - float: left; - width:22%; -} -.row div + div { - border-left: solid black 1px; - border-left-color: #777; -} -.row:after { - content: ""; - display: table; - clear: both; -} -.row { - margin: auto; - -} \ No newline at end of file diff --git a/iosre/files/ios7dark.css b/iosre/files/ios7dark.css deleted file mode 100644 index 0be63080e27..00000000000 --- a/iosre/files/ios7dark.css +++ /dev/null @@ -1,601 +0,0 @@ - -button, -hr, -input { - overflow: visible -} - -audio, -canvas, -progress, -video { - display: inline-block -} - -progress, -sub, -sup { - vertical-align: baseline -} - -button, -hr, -iframe { - border: 0 -} - -abbr[title], -h2 a:active, -h2 a:focus, -h2 a:hover { - text-decoration: underline -} - -button, -legend, -ul { - padding: 0 -} - -body>header:after, -ul li:after, -ul:after, -ul:before { - content: "" -} - -html { - line-height: 1.15; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100% -} - -article, -aside, -details, -footer, -header, -menu, -nav, -section { - display: block -} - -h1 { - font-size: 2em; - margin: .67em 0 -} - -figcaption, -figure, -main { - display: block -} - -figure { - margin: 1em 40px -} - -hr { - box-sizing: content-box -} - -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em -} - -a { - background-color: transparent; - -webkit-text-decoration-skip: objects -} - -abbr[title] { - border-bottom: none; - text-decoration: underline dotted -} - -dfn { - font-style: italic -} - -mark { - background-color: #ff0; - color: #000 -} - -small { - font-size: 80% -} - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative -} - -sub { - bottom: -.25em -} - -sup { - top: -.5em -} - -audio:not([controls]) { - display: none; - height: 0 -} - -img { - border-style: none -} - -svg:not(:root) { - overflow: hidden -} - -button, -input, -optgroup, -select, -textarea { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0 -} - -textarea { - color: white; -} - -button, -input {} - -button, -select { - text-transform: none -} - -[type=reset], -[type=submit], -button, -html [type=button] { - -webkit-appearance: button -} - -[type=button]::-moz-focus-inner, -[type=reset]::-moz-focus-inner, -[type=submit]::-moz-focus-inner, -button::-moz-focus-inner { - border-style: none; - padding: 0 -} - -[type=button]:-moz-focusring, -[type=reset]:-moz-focusring, -[type=submit]:-moz-focusring, -button:-moz-focusring { - outline: ButtonText dotted 1px -} - -fieldset { - padding: .35em .75em .625em -} - -legend { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - white-space: normal -} - -progress {} - -textarea { - overflow: auto -} - -[type=checkbox], -[type=radio] { - box-sizing: border-box; - padding: 0 -} - -[type=number]::-webkit-inner-spin-button, -[type=number]::-webkit-outer-spin-button { - height: auto -} - -[type=search] { - -webkit-appearance: textfield; - outline-offset: -2px -} - -[type=search]::-webkit-search-cancel-button, -[type=search]::-webkit-search-decoration { - -webkit-appearance: none -} - -::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit -} - -summary { - display: list-item -} - -[hidden], -template { - display: none -} - - -.font-body, -body { - font:14px -apple-system-font,".Helvetica NeueUI","Helvetica Neue",sans-serif; -} - -.font-subtitle, -[role=footer], -body>p, -h2 { - font-size: 14px; - font-weight: 400 -} - -.font-bold, -b, -strong { - font-weight: 600 -} - -.font-heading, -body>header h1 { - font: -apple-system-headline -} - -a, -button { - color:#ff9400; - text-decoration: none -} - -button { - background: 0 0; - margin: 0; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none -} - -.subpixel-line, -body>header:after, -hr, -ul li:after, -ul:after, -ul:before { - display: block; - width: 100%; - height: 1px; - background: hsla(0,0%,100%,0.25) -} - -.has-subpixel .subpixel-line, -.has-subpixel body>header:after, -.has-subpixel hr, -.has-subpixel ul li:after, -.has-subpixel ul:after, -.has-subpixel ul:before, -ul .has-subpixel li:after { - height: .5px -} - -.has-subpixel-3x .subpixel-line, -.has-subpixel-3x body>header:after, -.has-subpixel-3x hr, -.has-subpixel-3x ul li:after, -.has-subpixel-3x ul:after, -.has-subpixel-3x ul:before, -ul .has-subpixel-3x li:after { - height: .33px -} - -html { - /*! Dark Color */ - background: #161616 -} - -html .depiction { - background: 0 0 -} - -body { - margin: 20px 0 35px -} - -.cydia body { - margin-top: 35px -} - -.depiction body { - margin-top: 0; - margin-bottom: 0 -} - -@media (min-width:708px) { - #content { - width: 708px; - margin: 0 auto - } -} - -@media (min-width:964px) { - #content { - width: 964px - } -} - -[role=footer], -body>p, -h2 { - margin: 15px; - color: #FFFFFF -} - -@media (min-width:708px) { - - [role=footer], - body>p, - h2 { - margin-left: 0; - margin-right: 0 - } - - ul { - border-radius: 4px - } -} - -h2 { - text-transform: uppercase; - margin-bottom: 5px -} - -h2 a { - color: inherit -} - -body>header { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 44px; - z-index: 10; - background: rgba(246, 246, 248, .85); - -webkit-backdrop-filter: blur(20px); - backdrop-filter: blur(20px) -} - -body>header:after { - position: absolute; - left: 0; - bottom: 0 -} - -ul, -ul li { - position: relative -} - -.cydia body>header { - display: none -} - -.cydia body>header+p { - margin-top: -20px -} - -body>header h1 { - margin: 0; - text-align: center; - font-size: 18px; - line-height: 44px -} - -ul { - margin: 5px 0 35px; - list-style: none; - background: #1c1c1d !important -} - -ul:after, -ul:before { - position: absolute; - left: 0 -} - -ul:before { - top: 0 -} - -ul:after { - bottom: 0 -} - -ul li { - margin-left: 15px; - margin-bottom: -1px; - padding: 12px 15px 12px 0 -} - -ul li:after { - position: absolute; - top: 0; - left: 0 -} - -ul li:first-child:after { - background: 0 0 -} - -@media (min-width:708px) { - - ul:after, - ul:before { - display: none - } - - ul li:first-child, - ul li:first-child [role=button], - ul li:first-child [role=link], - ul li:first-child p { - border-top-left-radius: 4px; - border-top-right-radius: 4px - } - - ul li:last-child, - ul li:last-child [role=button], - ul li:last-child [role=link], - ul li:last-child p { - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px - } -} - -ul li [role=button], -ul li [role=link], -ul li p { - padding: 12px 15px; - margin: -12px -15px -} - -ul li.has-icon { - margin-left: 59px; - color: #FFFFFF; -} - -ul li.has-icon [role=button], -ul li.has-icon [role=link], -ul li.has-icon p { - margin-left: -59px; - padding-left: 59px -} - -ul li .icon { - position: absolute; - top: 10px; - left: 15px; - width: 29px; - height: 29px -} - -ul li [role=button], -ul li [role=link] { - display: block; - padding-right: 30px; - -webkit-tap-highlight-color: transparent; - position: relative; - z-index: 2 -} - -ul li [role=button]:active, -ul li [role=button]:focus, -ul li [role=link]:active, -ul li [role=link]:focus { - background-color: #000000 -} - -ul li [role=button]:after, -ul li [role=link]:after { - content: ""; - display: block; - background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTYgMTYiIHhtbDpzcGFjZT0icHJlc2VydmUiPiAgPGltYWdlIGlkPSJpbWFnZTAiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgeD0iMCIgeT0iMCIKICAgIGhyZWY9ImRhdGE6aW1hZ2UvcG5nO2Jhc2U2NCxpVkJPUncwS0dnb0FBQUFOU1VoRVVnQUFBQkFBQUFBUUNBUUFBQUMxK2pmcUFBQUFCR2RCVFVFQUFMR1BDL3hoQlFBQUFDQmpTRkpOCkFBQjZKZ0FBZ0lRQUFQb0FBQUNBNkFBQWRUQUFBT3BnQUFBNm1BQUFGM0NjdWxFOEFBQUFBbUpMUjBRQS80ZVB6TDhBQUFBSGRFbE4KUlFmbUJCY1hHZ3lVZFpqY0FBQUFVRWxFUVZRb3oyTmdvQnI0ci9CLy9YOEJUSEVtT09zRGd5TERmbXhLRUdZSS9ML3cvenlWbEJqZwpkKzZDLysvL0syQTZFaGt3NHJQaS9QOExDUDNZcFFXb0s0MXdwQUREUXdZSHhnOE1WQWNBbmc4MTNuSEcySE1BQUFBbGRFVllkR1JoCmRHVTZZM0psWVhSbEFESXdNakl0TURRdE1qTlVNakE2TWpZNk1USXJNRE02TURETHpEWFhBQUFBSlhSRldIUmtZWFJsT20xdlpHbG0KZVFBeU1ESXlMVEEwTFRJelZESXdPakkyT2pFeUt6QXpPakF3dXBHTmF3QUFBQUJKUlU1RXJrSmdnZz09IiAvPgo8L3N2Zz4K); - position: absolute; - top: 50%; - right: 15px; - width: 14px; - height: 14px; - margin-top: -7px; - background-size: 100% 100% -} - -ul li>button { - font: inherit; - width: 100%; - text-align: left -} - -ul li .pull-in { - vertical-align: top -} - -@media (max-width:321px) { - ul li .pull-in { - margin: -11px -15px - } -} - -ul+[role=footer], -ul+p { - margin-top: -25px -} -p{ - color: #FFFFFF; -} - -#credits { - color: white; -} - -#content ul li.has-icon a { - /*margin-left: 59px;*/ - color: #FFFFFF !important; -} - -#screenshot img { - display: inline-block; - max-width: 100%; - max-height: 100%; - width: auto; - height: 320px; -} -#screenshot { - -webkit-overflow-scrolling:touch; - overflow-x: scroll; - overflow-y: hidden; - white-space: nowrap; - height:350px; -} -span .value { - color: #777; - float: right; - text-align: right; - margin-left: 8px; -} - -.column { - float: left; - width:22%; -} -.row div + div { - border-left: solid black 1px; - border-left-color: #777; -} -.row:after { - content: ""; - display: table; - clear: both; -} -.row { - margin: auto; - -} \ No newline at end of file diff --git a/iosre/files/ipawind.png b/iosre/files/ipawind.png deleted file mode 100644 index bfc733917f2..00000000000 Binary files a/iosre/files/ipawind.png and /dev/null differ diff --git a/iosre/files/ltc.png b/iosre/files/ltc.png deleted file mode 100644 index 1ffeb5626ec..00000000000 Binary files a/iosre/files/ltc.png and /dev/null differ diff --git a/iosre/files/main.css b/iosre/files/main.css deleted file mode 100644 index 93d7d8e76af..00000000000 --- a/iosre/files/main.css +++ /dev/null @@ -1,118 +0,0 @@ -*,*:before,*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - -ms-box-sizing: border-box; - box-sizing: border-box -} - -.reward { - padding: 5px 0 -} - -.reward .reward-notice { - font-size: 14px; - line-height: 14px; - margin: 15px auto; - text-align: center -} - -.reward .reward-button { - font-size: 28px; - line-height: 58px; - position: relative; - display: block; - width: 60px; - height: 60px; - margin: 0 auto; - padding: 0; - -webkit-user-select: none; - text-align: center; - vertical-align: middle; - color: #fff; - border: 1px solid #f1b60e; - border-radius: 50%; - background: #fccd60; - background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#fccd60),color-stop(100%,#fbae12),color-stop(100%,#2989d8),color-stop(100%,#207cca)); - background: -webkit-linear-gradient(top,#fccd60 0,#fbae12 100%,#2989d8 100%,#207cca 100%); - background: linear-gradient(to bottom,#fccd60 0,#fbae12 100%,#2989d8 100%,#207cca 100%) -} - -.reward .reward-code { - position: absolute; - top: -220px; - left: 50%; - display: none; - width: 350px; - height: 200px; - margin-left: -175px; - padding: 15px; - border: 1px solid #e6e6e6; - background: #fff; - box-shadow: 0 1px 1px 1px #efefef -} - -.reward .reward-button:hover .reward-code { - display: block -} - -.reward .reward-code span { - display: inline-block; - width: 150px; - height: 150px -} - -.reward .reward-code span.alipay-code { - float: left -} - -.reward .reward-code span.alipay-code a { - padding: 0 -} - -.reward .reward-code span.wechat-code { - float: right -} - -.reward .reward-code img { - display: inline-block; - float: left; - width: 150px; - height: 150px; - margin: 0 auto; - border: 0 -} - -.reward .reward-code b { - font-size: 14px; - line-height: 26px; - display: block; - margin: 0; - text-align: center; - color: #666 -} - -.reward .reward-code b.notice { - line-height: 2rem; - margin-top: -1rem; - color: #999 -} - -.reward .reward-code:after,.reward .reward-code:before { - position: absolute; - content: ''; - border: 10px solid transparent -} - -.reward .reward-code:after { - bottom: -19px; - left: 50%; - margin-left: -10px; - border-top-color: #fff -} - -.reward .reward-code:before { - bottom: -20px; - left: 50%; - margin-left: -10px; - border-top-color: #e6e6e6 -} \ No newline at end of file diff --git a/iosre/files/package.png b/iosre/files/package.png deleted file mode 100644 index 5659db0347c..00000000000 Binary files a/iosre/files/package.png and /dev/null differ diff --git a/iosre/files/patreon.png b/iosre/files/patreon.png deleted file mode 100644 index f9ddb26d92a..00000000000 Binary files a/iosre/files/patreon.png and /dev/null differ diff --git a/iosre/files/pp.png b/iosre/files/pp.png deleted file mode 100644 index c9fe2c28aff..00000000000 Binary files a/iosre/files/pp.png and /dev/null differ diff --git a/iosre/files/reddit.png b/iosre/files/reddit.png deleted file mode 100644 index 9191a1a75ff..00000000000 Binary files a/iosre/files/reddit.png and /dev/null differ diff --git a/iosre/files/saily.png b/iosre/files/saily.png deleted file mode 100644 index 1a465d7c10a..00000000000 Binary files a/iosre/files/saily.png and /dev/null differ diff --git a/iosre/files/sileo.png b/iosre/files/sileo.png deleted file mode 100644 index 190239ccd87..00000000000 Binary files a/iosre/files/sileo.png and /dev/null differ diff --git a/iosre/files/twitter.png b/iosre/files/twitter.png deleted file mode 100644 index 95acd604b8f..00000000000 Binary files a/iosre/files/twitter.png and /dev/null differ diff --git a/iosre/files/wechatpay.png b/iosre/files/wechatpay.png deleted file mode 100644 index 0f9fc0f038b..00000000000 Binary files a/iosre/files/wechatpay.png and /dev/null differ diff --git a/iosre/files/zebra.png b/iosre/files/zebra.png deleted file mode 100644 index f6a847515e1..00000000000 Binary files a/iosre/files/zebra.png and /dev/null differ diff --git a/iosre/index.html b/iosre/index.html deleted file mode 100644 index 3f6b6bcd667..00000000000 --- a/iosre/index.html +++ /dev/null @@ -1,336 +0,0 @@ - - - - codwam's Repo - - - - - - - - - - -
      -

      codwam's Repo

      - -

      - Repo: https://codwam.github.io/iosre/ -

      - - - -

      Social

      - - - - -

      Donate / Help

      -
        -
      • -
        -
        -
        - -
        - -
        -
        - -
        -
        - -
        - -
        -
        -
        -
      • -
      - - - - - - - - -

      -
      - - - - - - - diff --git a/iosre/packageInfo/com.codwam.surgetweak b/iosre/packageInfo/com.codwam.surgetweak deleted file mode 100644 index 6d202eba568..00000000000 --- a/iosre/packageInfo/com.codwam.surgetweak +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Surge", - "desc_short": "Surge Crack", - "desc_long": "", - "compatitle": null, - "changelog": "0.1
      - Surge 5.2.3 Crack;
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/iosre/update.bat b/iosre/update.bat deleted file mode 100644 index e4e28c31c62..00000000000 --- a/iosre/update.bat +++ /dev/null @@ -1 +0,0 @@ -bash -c "cd /mnt/d/Documents/GitHub/codwam.github.io; ./update.sh" \ No newline at end of file diff --git a/iosre/update.sh b/iosre/update.sh deleted file mode 100755 index b25bee2567f..00000000000 --- a/iosre/update.sh +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh - -uNames=`uname -s` -echo "OS: $uNames" -osName=${uNames:0:4} # Linux 需要用 bash update.sh 否则会报错: ./update.sh: 5: Bad substitution -if [ "$osName" == "Darw" ] # Darwin -then - # echo "Mac OS X" - - ./apt-ftparchive packages ./debfiles/ > ./Packages; # macOS 修改版的会报错,但是也可以执行 - # sed -i '' -e 's/.\/debfiles\//.\/iosre\/debfiles\//g' ./Packages; - # perl -e 'print"HelloWorld\n"' # perl test - bzip2 -c9k ./Packages > ./Packages.bz2; - printf "Origin: codwam's Repo\n\ - Label: codwam\n\ - Suite: stable\n\ - Version: 1.0\n\ - Codename: codwam\n\ - Architecture: iphoneos-arm\n\ - Components: main\n\ - Description: codwam's Tweaks\n\ - MD5Sum:\n \ - "$(cat ./Packages | md5 | cut -d ' ' -f 1)" \ - "$(stat -f "%z" ./Packages)" Packages\n \ - "$(cat ./Packages.bz2 | md5 | cut -d ' ' -f 1)" \ - "$(stat -f "%z" ./Packages.bz2)" Packages.bz2\n"\ - sed "s/ //g"\ - > Release; - ls -t ./debfiles/ | \ - grep '.deb' | \ - perl -e 'use JSON; @in=grep(s/\n$//, <>); $count=0; foreach $fileNow (@in) { $fileNow = "./debfiles/$fileNow"; $size = -s $fileNow; $debInfo = `dpkg -f $fileNow`; $section = `echo "$debInfo" | grep "Section: " | cut -c 10- | tr -d "\n\r"`; $name= `echo "$debInfo" | grep "Name: " | cut -c 7- | tr -d "\n\r"`; $version= `echo "$debInfo" | grep "Version: " | cut -c 10- | tr -d "\n\r"`; $package= `echo "$debInfo" | grep "Package: " | cut -c 10- | tr -d "\n\r"`; $time= `date -r $fileNow +%s | tr -d "\n\r"`; @in[$count] = {section=>$section, package=>$package, version=>$version, size=>$size+0, time=>$time+0, name=>$name}; $count++; } print encode_json(\@in)."\n";' > all.packages; -elif [ "$osName" == "Linu" ] # Linux -then - # echo "GNU/Linux" - - apt-ftparchive packages ./debfiles/ > ./Packages; - #sed -i -e '/^SHA/d' ./Packages; - # sed -i -e 's/.\/debfiles\//.\/iosre\/debfiles\//g' ./Packages - bzip2 -c9k ./Packages > ./Packages.bz2; - printf "Origin: codwam's Repo\nLabel: codwam\nSuite: stable\nVersion: 1.0\nCodename: codwam\nArchitecture: iphoneos-arm\nComponents: main\nDescription: codwam's Tweaks\nMD5Sum:\n "$(cat ./Packages | md5sum | cut -d ' ' -f 1)" "$(stat ./Packages --printf="%s")" Packages\n "$(cat ./Packages.bz2 | md5sum | cut -d ' ' -f 1)" "$(stat ./Packages.bz2 --printf="%s")" Packages.bz2\n" >Release; - ls ./debfiles/ -t | grep '.deb' | perl -e 'use JSON; @in=grep(s/\n$//, <>); $count=0; foreach $fileNow (@in) { $fileNow = "./debfiles/$fileNow"; $size = -s $fileNow; $debInfo = `dpkg -f $fileNow`; $section = `echo "$debInfo" | grep "Section: " | cut -c 10- | tr -d "\n\r"`; $name= `echo "$debInfo" | grep "Name: " | cut -c 7- | tr -d "\n\r"`; $version= `echo "$debInfo" | grep "Version: " | cut -c 10- | tr -d "\n\r"`; $package= `echo "$debInfo" | grep "Package: " | cut -c 10- | tr -d "\n\r"`; $time= `date -r $fileNow +%s | tr -d "\n\r"`; @in[$count] = {section=>$section, package=>$package, version=>$version, size=>$size+0, time=>$time+0, name=>$name}; $count++; } print encode_json(\@in)."\n";' > all.packages; -elif [ "$osName" == "MING" ] # MINGW, windows, git-bash -then - echo "Windows, git-bash" -else - echo "unknown os" -fi - -exit 0; diff --git a/jekyll-text-theme.gemspec b/jekyll-text-theme.gemspec deleted file mode 100644 index cc47579e11f..00000000000 --- a/jekyll-text-theme.gemspec +++ /dev/null @@ -1,27 +0,0 @@ -# coding: utf-8 - -Gem::Specification.new do |spec| - spec.name = "jekyll-text-theme" - spec.version = "2.2.6" - spec.authors = ["Tian Qi"] - spec.email = ["kitian616@outlook.com"] - - spec.summary = %q{A super customizable Jekyll theme for personal site, team site, blog, project, documentation, etc.} - spec.homepage = "https://github.com/kitian616/jekyll-TeXt-theme" - spec.license = "MIT" - - spec.metadata["plugin_type"] = "theme" - - spec.files = `git ls-files -z`.split("\x0").select do |f| - f.match(%r{^((_data|_includes|_layouts|_sass|assets)/|(LICENSE|README|CHANGELOG)((\.(txt|md|markdown)|$)))}i) - end - - spec.add_runtime_dependency "jekyll", ">= 3.6", "< 5.0" - spec.add_runtime_dependency "jekyll-paginate", "~> 1.1" - spec.add_runtime_dependency "jekyll-sitemap", "~> 1.0" - spec.add_runtime_dependency "jekyll-feed", "~> 0.1" - spec.add_runtime_dependency "jemoji", "~> 0.8" - - spec.add_development_dependency "bundler" - spec.add_development_dependency "rake", "~> 10.0" -end diff --git a/package.json b/package.json deleted file mode 100644 index 468502f3a0f..00000000000 --- a/package.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "name": "jekyll-text-theme", - "version": "2.2.6", - "author": "Tian Qi", - "license": "MIT", - "keywords": [ - "jekyll", - "jekyll-theme", - "jekyll-template" - ], - "homepage": "https://github.com/kitian616/jekyll-TeXt-theme", - "description": "A super customizable Jekyll theme for personal site, team site, blog, project, documentation, etc.", - "repository": { - "type": "git", - "url": "git+https://github.com/kitian616/jekyll-TeXt-theme.git" - }, - "bugs": { - "url": "https://github.com/kitian616/jekyll-TeXt-theme/issues" - }, - "scripts": { - "build": "cross-env JEKYLL_ENV=production bundle exec jekyll build", - "serve": "bundle exec jekyll serve -H 0.0.0.0", - "Gemfile.lock": "docker run --rm -v \"$PWD\":/usr/src/app -w /usr/src/app ruby:2.6 bundle install", - "docker-dev:build-image": "docker-compose -f ./docker/docker-compose.build-image.yml build", - "docker-dev:default": "docker-compose -f ./docker/docker-compose.default.yml up", - "docker-dev:dev": "docker-compose -f ./docker/docker-compose.dev.yml up", - "docker-dev:demo-dev": "docker-compose -f ./docker/docker-compose.demo.yml up", - "docker-dev:demo-beta": "cross-env JEKYLL_ENV=beta docker-compose -f ./docker/docker-compose.demo.yml up", - "docker-dev:demo-prod": "cross-env JEKYLL_ENV=production docker-compose -f ./docker/docker-compose.demo.yml up", - "docker-prod:build": "cross-env JEKYLL_ENV=production docker-compose -f ./docker/docker-compose.prod.yml build", - "docker-prod:serve": "cross-env JEKYLL_ENV=production docker-compose -f ./docker/docker-compose.prod.yml up", - "default": "bundle exec jekyll serve -H 0.0.0.0 -t", - "dev": "bundle exec jekyll serve -H 0.0.0.0 -t --config ./docs/_config.dev.yml", - "demo-dev": "bundle exec jekyll serve -H 0.0.0.0 -t --config ./docs/_config.yml", - "demo-beta": "cross-env JEKYLL_ENV=beta bundle exec jekyll serve -H 0.0.0.0 -t --config ./docs/_config.yml", - "demo-prod": "cross-env JEKYLL_ENV=production bundle exec jekyll serve -H 0.0.0.0 -t --config ./docs/_config.yml", - "eslint": "eslint \"_includes/**/*.js\"", - "eslint-fix": "eslint \"_includes/**/*.js\" --fix", - "stylelint": "stylelint --syntax scss \"_sass/**/*.scss\"", - "stylelint-fix": "stylelint --syntax scss \"_sass/**/*.scss\" --fix", - "gem-build": "rm -fv jekyll-text-theme-*.gem && gem build jekyll-text-theme.gemspec", - "gem-push": "gem push jekyll-text-theme-*.gem" - }, - "devDependencies": { - "@commitlint/cli": "^8.3.5", - "@commitlint/config-conventional": "^8.3.4", - "cross-env": "^7.0.0", - "eslint": "^6.8.0", - "husky": "^4.2.1", - "stylelint": "^13.0.0", - "stylelint-config-recommended-scss": "^4.2.0", - "stylelint-config-standard": "^19.0.0", - "stylelint-order": "^4.0.0", - "stylelint-scss": "^3.14.2" - }, - "husky": { - "hooks": { - "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" - } - } -} diff --git a/packageInfo/com.julioverne.albumhider b/packageInfo/com.julioverne.albumhider deleted file mode 100644 index d55ea71a24a..00000000000 --- a/packageInfo/com.julioverne.albumhider +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "AlbumHider", - "desc_short": "Hide Album's On Photo App", - "desc_long": "On Album Section Tap Edit and Tap on Bookmark Icon and Hide/Show Any Album's.

      No Options To Configure.", - "compatitle": "iOS 11 through 14", - "changelog": "0.0~beta3
      + Support all Album's.
      0.0~beta2
      + Support iOS 12, 13.
      + Support arm64e.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.albumpref b/packageInfo/com.julioverne.albumpref deleted file mode 100644 index df857ef6ed8..00000000000 --- a/packageInfo/com.julioverne.albumpref +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "AlbumPref", - "desc_short": "Choose Preferred Album in Messages", - "desc_long": "Lets you choose a preferred Album instead of Recent Photos when you send image in Messages App.


      Configure Options from Settings.", - "compatitle": "iOS 12, 13", - "changelog": "0.0~beta2
      + Select Preferred Album from Messages in Heart Button.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.alt5tore b/packageInfo/com.julioverne.alt5tore deleted file mode 100644 index e2d285dc19f..00000000000 --- a/packageInfo/com.julioverne.alt5tore +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Alt5tore", - "desc_short": "Extra Features For AltStore", - "desc_long": "Features:

      ✔️ unc0ver Updates From unc0ver.dev

      No Options To Configure.", - "compatitle": "AltStore", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": "


      ", - "open": false, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.appellancy11 b/packageInfo/com.julioverne.appellancy11 deleted file mode 100644 index fda4f745a79..00000000000 --- a/packageInfo/com.julioverne.appellancy11 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Appellancy (iOS 11)", - "desc_short": "Control your phone with your face!", - "desc_long": "Appellancy lets you unlock device with face recognition via camera.

      Open Source Code of Appellancy is on GitHub /efrederickson/Appellancy.", - "compatitle": "iOS 11 & arm64", - "changelog": "1.1-20
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.appssiripin b/packageInfo/com.julioverne.appssiripin deleted file mode 100644 index d5f053c0107..00000000000 --- a/packageInfo/com.julioverne.appssiripin +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "AppsSiriPin", - "desc_short": "Pin Apps In Siri Suggestion Widget", - "desc_long": "Configure Options From Settings.

      ", - "compatitle": "iOS 11", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.appstorenohistory b/packageInfo/com.julioverne.appstorenohistory deleted file mode 100644 index 692f6440937..00000000000 --- a/packageInfo/com.julioverne.appstorenohistory +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Appstore No History", - "desc_short": "Clean Updated Apps History", - "desc_long": "Features:

      - Update Hider;
      - History List Remove;

      Configure Options From Settings.", - "compatitle": "iOS 10, 11", - "changelog": "0.0~beta8
      + Update Hider;
      0.0~beta1
      + Initial Release
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.appstoreunrestrict b/packageInfo/com.julioverne.appstoreunrestrict deleted file mode 100644 index fce22e53fb3..00000000000 --- a/packageInfo/com.julioverne.appstoreunrestrict +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Appstore Unrestrict", - "desc_short": "No Download Size Limit In AppStore Over Cellular", - "desc_long": "Download Large App Size In AppStore Over Cellular Data", - "compatitle": "iOS 10, 11", - "changelog": "0.0~beta1
      + Initial Release
      ", - "screenshot": "


      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.artworkify b/packageInfo/com.julioverne.artworkify deleted file mode 100644 index c2170e61848..00000000000 --- a/packageInfo/com.julioverne.artworkify +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "Artworkify", - "desc_short": "Spotify Artwork In Playlist", - "desc_long": null, - "compatitle": "Spotify From AppStore", - "changelog": "0.0~beta2
      + Cached Artwork.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.autolockx b/packageInfo/com.julioverne.autolockx deleted file mode 100644 index c1b74c2430d..00000000000 --- a/packageInfo/com.julioverne.autolockx +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "AutoLockX", - "desc_short": "Force Auto Lock Device", - "desc_long": "Lets your force auto lock if not interact to device when given timeout in any case even when playing media (like YouTube).


      Configure Options from Settings.", - "compatitle": "iOS 8 through 14", - "changelog": "0.0~beta2
      + Fix Lock For iOS 8 and Lower.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.autoshiftfix b/packageInfo/com.julioverne.autoshiftfix deleted file mode 100644 index ffbcb66523c..00000000000 --- a/packageInfo/com.julioverne.autoshiftfix +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "AutoShiftFix", - "desc_short": "No shift when delete capitalized letter", - "desc_long": "No Options To Configure.", - "compatitle": null, - "changelog": "0.1
      + Initial Release.
      ", - "screenshot": null, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.autowall b/packageInfo/com.julioverne.autowall deleted file mode 100644 index 605eda0ecd2..00000000000 --- a/packageInfo/com.julioverne.autowall +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "AutoWall", - "desc_short": "Scheduled Wallpapers", - "desc_long": "Configure Options From Settings.", - "compatitle": "iOS 11 through 14", - "changelog": "0.0~beta3
      + Support iOS 14
      + Modify Current Saved Wallpapers
      0.0~beta2
      + Support arm64e
      0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.avcache b/packageInfo/com.julioverne.avcache deleted file mode 100644 index f31e1242f71..00000000000 --- a/packageInfo/com.julioverne.avcache +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "AVCache", - "desc_short": "Video Buffer System for AVPlayer", - "desc_long": "Enhancer Buffer of Online Video in AVPlayer part of AVFoundation.framework

      Compatible with Some Apps that's use AVPlayer.", - "compatitle": null, - "changelog": "0.0~beta2
      + Fix Airplay After Buffer Complete.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.battrate b/packageInfo/com.julioverne.battrate deleted file mode 100644 index c3359cad85a..00000000000 --- a/packageInfo/com.julioverne.battrate +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "BattRate", - "desc_short": "Battery Discharge Rate Monitor", - "desc_long": "See Active Battery Informations, Current Charge/Discharge, Percentage, Cycle Count, Voltage, Current Battery Capacity...

      Configure Options From Settings.", - "compatitle": "iOS 11 through 14", - "changelog": "0.0~beta2
      + Only In AC.
      + Time Remain To Full Dis/Charge.
      + Battery Temperature.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.bigshotjb11 b/packageInfo/com.julioverne.bigshotjb11 deleted file mode 100644 index 2a3679419a4..00000000000 --- a/packageInfo/com.julioverne.bigshotjb11 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "BigShotJb (iOS 11)", - "desc_short": "take screenshots of full vertical scrollable area", - "desc_long": "Configure Action From Activator.

      Open Source Code of BigShotJb is on GitHub /tapthaker/BigShotJb.", - "compatitle": "iOS 11", - "changelog": "0.0.2-2a
      + Fix Some Apps Crash.
      + Fix Apps That Not Have Permission To Save Image.
      0.0.2-2
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.blightalert b/packageInfo/com.julioverne.blightalert deleted file mode 100644 index f9adaa543f6..00000000000 --- a/packageInfo/com.julioverne.blightalert +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "BLightAlert", - "desc_short": "Use Brightness As Alert", - "desc_long": "Use Brightness Level As Alert.

      Configure Options from Settings.", - "compatitle": "iOS 7, 8, 9, 10", - "changelog": "0.0~beta4
      + Support iOS 10.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.bumbleverifyroll b/packageInfo/com.julioverne.bumbleverifyroll deleted file mode 100644 index 32303aab22a..00000000000 --- a/packageInfo/com.julioverne.bumbleverifyroll +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "BumbleVerifyRoll", - "desc_short": "Verify Account Photo via Camera Roll", - "warning": "This Project Is Continued In Private Way", - "desc_long": "You have broken camera and when verify account show black image when you need to take image, Just tap on mini image in located in down left where man show gesture and will show camera roll.

      No Options To Configure.", - "compatitle": "Bumble App", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.cacheclearer11 b/packageInfo/com.julioverne.cacheclearer11 deleted file mode 100644 index 8219b172e20..00000000000 --- a/packageInfo/com.julioverne.cacheclearer11 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "CacheClearer (iOS 11)", - "desc_short": "Clear app caches from the Usage section in Settings", - "desc_long": "No Options To Configure.

      Open Source Code of CacheClearer is on GitHub /rpetrich/CacheClearer.", - "compatitle": "iOS 11", - "changelog": "0.1a
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.cachewipe b/packageInfo/com.julioverne.cachewipe deleted file mode 100644 index 8db645270d0..00000000000 --- a/packageInfo/com.julioverne.cachewipe +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "CacheWipe", - "desc_short": "Clear Apps Caches Switch", - "desc_long": "iOS has auto wipe apps cache only when device not has space left, CacheWipe will let you Wipe All Caches Apps via Switch or Activator Action any time.", - "compatitle": "iOS 10, 11, 12, 13", - "changelog": "0.0~beta1a
      + Support arm64e
      0.0~beta1
      + Initial Release.
      ", - "screenshot": "


      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.caixatemfast b/packageInfo/com.julioverne.caixatemfast deleted file mode 100644 index 885105647a9..00000000000 --- a/packageInfo/com.julioverne.caixatemfast +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "CaixaTemFast", - "desc_short": "Brazilian Caixa Tem App No Queue Wait, JB Detection Bypass", - "desc_long": "Brazilian Caixa Tem App No Go To Every Time Wait Queue Anymore, Disable Jailbreak Detection.

      No Options To Configure.
      ", - "compatitle": "Caixa Tem App", - "changelog": "0.0~beta2
      + Jailbreak Detection Bypass.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": false, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.celldia b/packageInfo/com.julioverne.celldia deleted file mode 100644 index 3b7eb5faad5..00000000000 --- a/packageInfo/com.julioverne.celldia +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "CellDia", - "desc_short": "Redesigned Cell Cydia", - "desc_long": null, - "compatitle": "iOS 6 through 11", - "changelog": "0.0~beta5
      + Support iOS 11.
      0.0~beta4
      - BugFix.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.cirdock11 b/packageInfo/com.julioverne.cirdock11 deleted file mode 100644 index 29457606ced..00000000000 --- a/packageInfo/com.julioverne.cirdock11 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "CirDock (iOS 11)", - "desc_short": "evolutionizes the device's dock!", - "desc_long": "Configure Options From Settings.

      Open Source Code of CirDock is on GitHub /BraveHeartDev/CirDock.", - "compatitle": "iOS 11", - "changelog": "1.3.0
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.closecam b/packageInfo/com.julioverne.closecam deleted file mode 100644 index cad48259290..00000000000 --- a/packageInfo/com.julioverne.closecam +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "CloseCam", - "desc_short": "Close/Kill Camera App When Exit", - "desc_long": "Some Users Report Background in Camera App, This Simply Lets You Auto Kill Camera App When You Dismiss Camera Application.", - "compatitle": "iOS 11", - "changelog": "0.0~beta2
      + Now Close From Switcher.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.cmdsapp b/packageInfo/com.julioverne.cmdsapp deleted file mode 100644 index f565b34a5df..00000000000 --- a/packageInfo/com.julioverne.cmdsapp +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "cmdsapp", - "desc_short": "bash command list installed apps..", - "desc_long": "\"getapplist\" or \"getapplist -id\" to show only id, \"getappdir com.something.something\" to get path of this app.", - "compatitle": null, - "changelog": "0.1
      + Initial Release.
      ", - "screenshot": null, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.coverflowm b/packageInfo/com.julioverne.coverflowm deleted file mode 100644 index 522b566e1b8..00000000000 --- a/packageInfo/com.julioverne.coverflowm +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "CoverflowM", - "desc_short": "Landscape Music Styles for Music App", - "desc_long": "Configure Options From Settings.", - "compatitle": "iOS 10 through 13 with Music.app", - "changelog": "0.2
      + Support iOS 12, 13;
      + Support arm64e;
      0.1b
      + iOS 6 Style and more.
      0.1
      + Initial Release.
      ", - "screenshot": "", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.cypush b/packageInfo/com.julioverne.cypush deleted file mode 100644 index fe357cb3859..00000000000 --- a/packageInfo/com.julioverne.cypush +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "CyPush", - "desc_short": "Cydia Push Notifications In Background", - "desc_long": "✔️ Receive Push Notifications from Cydia.
      ✔️ Configure to receive in New/Updates/Changes Packages.
      ✔️ Flipswitch Toggle for Manual Cydia Refresh.
      ✔️ Option to use in WiFi only.

      Configure Options from Settings.", - "compatitle": "iOS 7 through 10", - "changelog": "0.5
      + iOS 10 Support.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.cypush2 b/packageInfo/com.julioverne.cypush2 deleted file mode 100644 index aa0a0345971..00000000000 --- a/packageInfo/com.julioverne.cypush2 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "CyPush2", - "desc_short": "Cydia Push Notifications In Background", - "desc_long": "For You That's Loving CyPush, CyPush2 has rewrite with Improvements In Battery Performance.

      ✔️ Receive Push Notifications from Cydia.
      ✔️ Configure to receive in New/Updates/Changes Packages.
      ✔️ Flipswitch Toggle for Manual Cydia Refresh.
      ✔️ Option to use in WiFi only.

      Configure Options from Settings.", - "compatitle": "iOS 7 through 12", - "changelog": "1.2
      + Support iOS 12.
      + Support arm64e
      1.1
      + Support iOS 11.
      1.0
      + Initial Release.
      ", - "screenshot": " ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.debrepack b/packageInfo/com.julioverne.debrepack deleted file mode 100644 index 5906b0b59b8..00000000000 --- a/packageInfo/com.julioverne.debrepack +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "deb Repack", - "desc_short": "bash command to repack deb file", - "desc_long": "bash command to repack deb file Easy Repack deb files. type debextract/debmount on terminal to unmount/mount deb file on /var/mobile/deb/", - "compatitle": null, - "changelog": "1.0-1a
      + Adjust Compression Type to gzip.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.dropbearalert b/packageInfo/com.julioverne.dropbearalert deleted file mode 100644 index 75c0bc5082c..00000000000 --- a/packageInfo/com.julioverne.dropbearalert +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "DropbearAlert", - "desc_short": "Dropbear System Login Alert", - "desc_long": "Notify your for Connections via Dropbear SSH.
      Configure Options In DropbearAlert App from HomeScreen.", - "compatitle": "iOS 10", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": "


      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.dropbearswith b/packageInfo/com.julioverne.dropbearswith deleted file mode 100644 index 8353f90f754..00000000000 --- a/packageInfo/com.julioverne.dropbearswith +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "DropbearSwitch", - "desc_short": "SSH Toogle for Dropbear via Flipswitch in iOS 10", - "desc_long": "Enable/Disable SSH over Wi-Fi easy via Flipswitch.
      iOS 10 have dropbear that's by default is only allowed SSH via usb cable, this allow you toggle between Wi-Fi & usb cable.", - "compatitle": "iOS 10", - "changelog": "0.3
      + Remember Settings When you Reboot & Re-Jailbreak.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.edgealert b/packageInfo/com.julioverne.edgealert deleted file mode 100644 index 759a05fb85e..00000000000 --- a/packageInfo/com.julioverne.edgealert +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "EdgeAlert", - "desc_short": "S8 Edge Alert", - "desc_long": "Configure Options From Settings.", - "compatitle": "iOS 7, 8, 9, 10", - "changelog": "0.0~beta2
      + Add Settings.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.epicentre11 b/packageInfo/com.julioverne.epicentre11 deleted file mode 100644 index f04a4b905fe..00000000000 --- a/packageInfo/com.julioverne.epicentre11 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Epicentre (iOS 11)", - "desc_short": "A gorgeous passcode replacement", - "desc_long": "Configure Options From Settings.

      Open Source Code of Epicentre is on GitHub /codyd51/Epicentre.", - "compatitle": "iOS 11, 12", - "changelog": "2.0-2b
      + Support arm64e
      2.0-2
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.exchangent2 b/packageInfo/com.julioverne.exchangent2 deleted file mode 100644 index 1150efffed5..00000000000 --- a/packageInfo/com.julioverne.exchangent2 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Exchangent2", - "desc_short": "Spoof Exchange/ActiveSync User-Agent", - "desc_long": "An Exchangent Alternative.

      Exchangent is open source and developed by derv82.

      Configure Options from Settings.", - "compatitle": "iOS 14", - "changelog": "0.0~beta4
      + BugFix.
      0.0~beta3
      + Correct Order Lists Of iOS Builds.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": "


      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.exsto11 b/packageInfo/com.julioverne.exsto11 deleted file mode 100644 index 7d37d41750e..00000000000 --- a/packageInfo/com.julioverne.exsto11 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Exsto (iOS 11)", - "desc_short": "Unleash your folders", - "desc_long": "Configure Options From Settings.

      Open Source Code of Exsto is on GitHub /zachatrocity/exsto.", - "compatitle": "iOS 11, 12", - "changelog": "0.0.1.2-2
      + Support arm64e
      0.0.1.2-1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.ext3nder-installer b/packageInfo/com.julioverne.ext3nder-installer deleted file mode 100644 index fa4fc4ef070..00000000000 --- a/packageInfo/com.julioverne.ext3nder-installer +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Ext3nder Installer", - "desc_short": "Cydia Extender Installer With Extra Features", - "desc_long": "✔️ Auto-Sign Apps
      ✔️ Install .ipa Files with Apple Private API
      ✔️ Documents Manager
      ✔️ Revoke Certificates
      ✔️ WiFi Sharing
      ✔️ Manage Installed Apps
      ✔️ Rebuild Apps To .ipa

      Configure Options from Ext3nder Settings.
      ", - "compatitle": "iOS 9 through 12 in arm64", - "warning": "Non arm64 Users, Cydia Extender is currently compiled on arm64, needs to be compiled to support armv7, u need wait a possible update from saurik.", - "changelog": "022b
      + Temp Fix for Extender xCode 7.3 requirements, Apple Authentication Tokens(find by TrungNguyen1909 in ReProvision Github issues).
      022
      + Support iOS 12.
      + Support arm64e (Cydia Extender still in arm64).
      021
      + Fix AutoSign in iOS 11 when device passcode is enabled.
      018 - 019
      + Support iOS 11.
      017
      + Fix Entitlements.
      016
      + Option To Select TeamID (if more than one) When Setup Account To Library.
      + Add '127.0.0.1 ocsp.apple.com' to /etc/hosts.
      015
      + Option For Manage App ID by Account.
      + Block Cydia Substrate.
      ", - "screenshot": "


      ", -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.fastuprepo b/packageInfo/com.julioverne.fastuprepo deleted file mode 100644 index 34938b0e7b0..00000000000 --- a/packageInfo/com.julioverne.fastuprepo +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "fastUpRepo", - "desc_short": "SpeedUp Cydia Update Sources by blocking download translation.", - "desc_long": "Fast Up Cydia Refresh Repo by blocking Translation & /InRelase Requests.

      If you have a lot of Sources speed up will drastically notable.", - "compatitle": "iOS 5 through 10", - "changelog": "0.0~beta4a
      - Install Allowed in iOS (<< 11.0).
      0.0~beta4
      + Better Detection.
      ", - "screenshot": null, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.fastuprepo2 b/packageInfo/com.julioverne.fastuprepo2 deleted file mode 100644 index c8aa6a695cb..00000000000 --- a/packageInfo/com.julioverne.fastuprepo2 +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "fastUpRepo2", - "desc_short": "SpeedUp Cydia Update Sources by blocking download translation.", - "desc_long": "Fast Up Cydia Refresh Repo by blocking:
      - /InRelase Requests
      - Not Found .gpg
      - Not Found /Packages in others compressions (.xz, .lzma, .bz2)
      - Failed URL's Requests.

      If you have a lot of Sources speed up will drastically notable.

      Note: If having error in refresh sources try reset cache state or disable in Settings.

      Configure Options From Settings.", - "compatitle": "iOS 12", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": null, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.fiona b/packageInfo/com.julioverne.fiona deleted file mode 100644 index a5e34be9b67..00000000000 --- a/packageInfo/com.julioverne.fiona +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Fiona", - "desc_short": "Keep WiFi Always Connected", - "desc_long": "When device is locked WiFi goes disconnected. Fiona will allow device to keep WiFi always connected.

      Configure Options from Settings.", - "compatitle": null, - "changelog": "0.1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.flipconvert b/packageInfo/com.julioverne.flipconvert deleted file mode 100644 index e037fd9dfeb..00000000000 --- a/packageInfo/com.julioverne.flipconvert +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "FlipConvert", - "desc_short": "Port Flipswitch Toggles With CCSupport", - "desc_long": "Convert Flipswitch Toggles for CCSupport

      Configure Options From Control Center Settings.", - "compatitle": "iOS 11, 12", - "changelog": "0.0~beta6
      + Support arm64e
      0.0~beta5
      + Status Text.
      0.0~beta4
      + Modern Icon Flipswitch.
      0.0~beta3
      + Long Press Handle Flipswitch.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": "


      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.flipstatus b/packageInfo/com.julioverne.flipstatus deleted file mode 100644 index 485b82408c0..00000000000 --- a/packageInfo/com.julioverne.flipstatus +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "FlipStatus", - "desc_short": "FlipControlCenter Status Switch in iOS 10", - "desc_long": "Show Switch Status Text when toggle on/off in CC.. FlipControlCenter seems to hide in iOS 10

      No Options To Configure.", - "compatitle": "iOS 10", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.fmydblocker b/packageInfo/com.julioverne.fmydblocker deleted file mode 100644 index f07840a91b2..00000000000 --- a/packageInfo/com.julioverne.fmydblocker +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "fmydBlocker", - "desc_short": "Find My iPhone Block Remote Actions via iCloud", - "desc_long": "fmydBlocker will block actions from iCloud Server (https://www.icloud.com/)

      Can block:
      - Erease iPhone;
      - Play Sound;
      - Lost Mode;
      - Location;

      Reboot after install.

      Configure Options from Settings.", - "compatitle": "iOS 9, 10", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.goodwifi b/packageInfo/com.julioverne.goodwifi deleted file mode 100644 index 281d6f48f0f..00000000000 --- a/packageInfo/com.julioverne.goodwifi +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "GoodWiFi", - "desc_short": "Better WiFi Preferences", - "desc_long": "Features:
      - Remove RSSI Limit;
      - Show Know Networks;
      - Show Mac Address;


      Configure Options from Settings.", - "compatitle": "iOS 10 through 14", - "changelog": "0.0~beta6
      - Fix possible crash.
      0.0~beta5a
      - Fix possible crash.
      0.0~beta5
      + Support arm64e
      0.0~beta4
      + Support iOS 11.
      0.0~beta3
      + Copy Known WiFi Password.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.googleauthpro b/packageInfo/com.julioverne.googleauthpro deleted file mode 100644 index cd146d25a3a..00000000000 --- a/packageInfo/com.julioverne.googleauthpro +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "GoogleAuthPro", - "desc_short": "Features For Google Authenticator App", - "desc_long": "Features:
      + Change Font Size of Code, Compact Style;
      + Search Box;
      + Order Alphabetically, Alphabetical Section Index;
      + Detect Current Website in Safari When Open Google Authenticator;

      + Activator Action To Open Google Authenticator For Search;


      Configure Option From Google Authenticator App.", - "compatitle": "Google Authenticator App", - "changelog": "0.0~beta2
      + Enhanced Search By Keyword.
      + Fix Code Size With Compact Style Enabled.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.gravity b/packageInfo/com.julioverne.gravity deleted file mode 100644 index 9fe4ac4cc46..00000000000 --- a/packageInfo/com.julioverne.gravity +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Gravity", - "desc_short": "Graviboard alternative", - "desc_long": "Configure options from Settings.", - "compatitle": "iOS 7 through 13", - "changelog": "0.7
      + Support iOS 13.5
      0.6
      + Support arm64e
      0.5
      + Support iOS 9.3.x.
      0.3
      + Angular Resistance of Icon.
      0.2
      + Added a lot of customizable settings.
      + Anchor compatibility.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.heysiri b/packageInfo/com.julioverne.heysiri deleted file mode 100644 index 87d9e88218f..00000000000 --- a/packageInfo/com.julioverne.heysiri +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "HeySiri", - "desc_short": "Hey Siri While Not Charging", - "desc_long": "Hey Siri Feature is Only Available if device is plugged to external power source, HeySiri will allow you to use when your device is not connected to external power source.

      Configure Options from Settings.", - "compatitle": "iOS 10, 11", - "changelog": "0.0~beta6
      + Support iOS 11.
      0.0~beta5
      + Fix Freeze when Enable/Disable.
      0.0~beta2
      + Fix Crash when Enable/Disable.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.hold2speak11 b/packageInfo/com.julioverne.hold2speak11 deleted file mode 100644 index 1c506450f5b..00000000000 --- a/packageInfo/com.julioverne.hold2speak11 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Hold2Speak (iOS 11)", - "desc_short": "Answer your calls, while activating your speaker.", - "desc_long": "No Options To Configure.

      Hold2Speak on iDownloadBlog

      Open Source Code of Hold2Speak is on GitHub /isklikas/Hold2Speak.", - "compatitle": "iOS 11", - "changelog": "1.3a
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.hotspotting b/packageInfo/com.julioverne.hotspotting deleted file mode 100644 index dc4204410c5..00000000000 --- a/packageInfo/com.julioverne.hotspotting +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Hotspotting", - "desc_short": "Hotspot Switch Enhanced", - "desc_long": "WiFi hotspot to become discoverable When Device is Locked.

      Enable/Disable via Flipswitch Toggle or Activator Actions.", - "compatitle": "iOS 9, 10", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.hsbcbypass b/packageInfo/com.julioverne.hsbcbypass deleted file mode 100644 index 4ad1539c3c9..00000000000 --- a/packageInfo/com.julioverne.hsbcbypass +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "HSBC Bypass", - "desc_short": "Jailbreak Detection Bypass for HSBC HK/UK/France/Payme Banking App.", - "desc_long": "Bypass Jailbreak Detection HSBC Banking App.", - "compatitle": "iOS 10, 11 and HSBC App", - "changelog": "0.1
      + Initial Release.
      ", - "screenshot": null, - "open": false, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.igsaver b/packageInfo/com.julioverne.igsaver deleted file mode 100644 index f3bdf238e7a..00000000000 --- a/packageInfo/com.julioverne.igsaver +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "IGSaver", - "desc_short": "Instagram Media Saver", - "desc_long": "Save Media To Camera Roll.


      Configure Options From IGSaver In Instagram Settings.
      ", - "compatitle": "Instagram App", - "changelog": "0.1~beta2
      + Button Icon
      - BugFix
      0.1~beta1
      + Initial Release
      ", - "screenshot": "


      ", - "open": false, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.illlooklater11 b/packageInfo/com.julioverne.illlooklater11 deleted file mode 100644 index 71c57eaf72a..00000000000 --- a/packageInfo/com.julioverne.illlooklater11 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "IllLookLater (iOS 11)", - "desc_short": "Look at notifications when YOU want to!", - "desc_long": "Disable auto turn on screen when Notification is received.

      Configure Options From Settings.", - "compatitle": "iOS 11", - "changelog": "2.0-2
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.intejb b/packageInfo/com.julioverne.intejb deleted file mode 100644 index 2183b918bfa..00000000000 --- a/packageInfo/com.julioverne.intejb +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "InteJB", - "desc_short": "Bypass Inter Jailbreak Detection", - "desc_long": "Jailbreak Detection Bypass For Inter.

      No Options To Configure.", - "compatitle": "Inter from AppStore", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": "


      ", - "open": false, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.jailprotect b/packageInfo/com.julioverne.jailprotect deleted file mode 100644 index d1e50e7465c..00000000000 --- a/packageInfo/com.julioverne.jailprotect +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "JailProtect", - "desc_short": "No Substrate Mode Alternative", - "desc_long": "Disable Cydia Substrate In Selected User Apps For Trying Prevent Jailbreak Detect.

      Configure Options from Settings.", - "compatitle": "iOS 10", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": null, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.jbme10xwebclip b/packageInfo/com.julioverne.jbme10xwebclip deleted file mode 100644 index 72ad076c534..00000000000 --- a/packageInfo/com.julioverne.jbme10xwebclip +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "JBMe 10.x Webclip", - "desc_short": "Re-Active iOS 10.x Jailbreak Offline", - "desc_long": "Install totally-not.spyware.lol 10.x Webclip Profile 100% Offline via Safari.", - "compatitle": "iOS 10.x", - "changelog": "0.1
      + Initial Release.
      ", - "screenshot": null, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.jbme93xwebclip b/packageInfo/com.julioverne.jbme93xwebclip deleted file mode 100644 index 329c54bbe61..00000000000 --- a/packageInfo/com.julioverne.jbme93xwebclip +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "JBMe 9.3.x Webclip", - "desc_short": "Re-Active Pangu 9.3.x Jailbreak Offline", - "desc_long": "Install Profile Webclip Thats Allow you Re-Active Pangu Jailbreak 9.3.x via Safari.", - "compatitle": "iOS 9.3.x", - "changelog": "0.1
      + Initial Release.
      ", - "screenshot": null, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.kb2change b/packageInfo/com.julioverne.kb2change deleted file mode 100644 index 40fc885a643..00000000000 --- a/packageInfo/com.julioverne.kb2change +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "KB2Change", - "desc_short": "Switch Between First 2 Keyboards", - "desc_long": "No Options To Configure.", - "compatitle": "iOS 11", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.kbmover b/packageInfo/com.julioverne.kbmover deleted file mode 100644 index cb810d9469d..00000000000 --- a/packageInfo/com.julioverne.kbmover +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "KBMover", - "desc_short": "Move your Keyboard on Screen", - "desc_long": null, - "compatitle": "iOS 7, 8 and 9", - "changelog": "0.0~beta1
      - Fix reset frame KB when press key.
      0.0~beta
      + Initial Release
      ", - "screenshot": null, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.keyswipe11 b/packageInfo/com.julioverne.keyswipe11 deleted file mode 100644 index d821e138c1f..00000000000 --- a/packageInfo/com.julioverne.keyswipe11 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "KeySwipe (iOS 11)", - "desc_short": "change keyboard by swiping up/down", - "desc_long": "Configure Options From Settings.", - "compatitle": "iOS 11, 12, 13", - "changelog": "1.0.2-3b
      + Support arm64e
      1.0.2-3
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.liblinker b/packageInfo/com.julioverne.liblinker deleted file mode 100644 index fbd8873db17..00000000000 --- a/packageInfo/com.julioverne.liblinker +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "liblinker", - "desc_short": "link library in executable that's already compiled", - "desc_long": "link library in executable/library that's already compiled. type on terminal:

      liblinker [EXECUTABLE_PATH] [LIBRARY]


      [EXECUTABLE_PATH]: Target file.
      [LIBRARY]: Library to link in file.", - "compatitle": "armv6, armv7, armv7s, arm64, arm64e", - "changelog": "0.3
      + Removed ldid dependency (need re-sign manually).
      0.2
      + Support FAT file (archs), No need more to extract specific arch to make liblinker work.
      + Support arm64e.
      0.1
      + Initial Release.
      ", - "screenshot": null, - "open": false, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.lockanim b/packageInfo/com.julioverne.lockanim deleted file mode 100644 index d0a784996ce..00000000000 --- a/packageInfo/com.julioverne.lockanim +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "LockAnim", - "desc_short": "Lock Animations", - "desc_long": "Configure Options From Settings.", - "compatitle": "iOS 10, 11", - "changelog": "0.0~beta4
      + Added A Lot More Animations.
      0.0~beta3
      + Fade Blur Effect.
      0.0~beta2
      + Option For Speed.
      + Add Broken Effect.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.lockdroid b/packageInfo/com.julioverne.lockdroid deleted file mode 100644 index d5f89980edb..00000000000 --- a/packageInfo/com.julioverne.lockdroid +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "LockDroid", - "desc_short": "Android Lockscreen", - "desc_long": "Requires Device Passcode Enabled.

      Configure Options from Settings.", - "compatitle": "iOS 7 through 14", - "changelog": "0.0~beta8
      + Support iOS 14
      0.0~beta7
      + Support arm64e
      0.0~beta5
      + Support iOS 11.
      0.0~beta4
      + Color, Theme, Localizations, Matrix Size.
      0.0~beta3
      + Add Support iOS 7, 8, 9.
      + Option for Attempt Error.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": " ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.lockdroiddonuts b/packageInfo/com.julioverne.lockdroiddonuts deleted file mode 100644 index 0d50bfed354..00000000000 --- a/packageInfo/com.julioverne.lockdroiddonuts +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "Donuts LockDroid", - "desc_short": "Donuts Theme For LockDroid", - "desc_long": null, - "compatitle": "LockDroid", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.lowerinstall b/packageInfo/com.julioverne.lowerinstall deleted file mode 100644 index 0f6645f3e6b..00000000000 --- a/packageInfo/com.julioverne.lowerinstall +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "LowerInstall", - "desc_short": "Install Apps In Lower iOS Version", - "desc_long": "Allow Install Applications In Lower iOS Version.
      Will work on AppStore & installd.

      Configure Options From Settings.
      After Install Reboot your Device.", - "compatitle": null, - "changelog": "0.0~beta6
      - Bypass Plugins Extension checks;
      0.0~beta5
      - Bug Fix;
      0.0~beta4
      + Support arm64e;
      0.0~beta2
      + Fix iOS 8.
      + Change Device.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.luxyverifyroll b/packageInfo/com.julioverne.luxyverifyroll deleted file mode 100644 index 1dcaf9aebea..00000000000 --- a/packageInfo/com.julioverne.luxyverifyroll +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "LuxyVerifyRoll", - "desc_short": "Verify Account Photo via Camera Roll", - "desc_long": "You have broken camera and when verify account show black image when you need to take image, To activate long press button “Verify your photo now” and will show camera roll.

      No Options To Configure.", - "compatitle": "Luxy App", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.mcast b/packageInfo/com.julioverne.mcast deleted file mode 100644 index dc301ac0928..00000000000 --- a/packageInfo/com.julioverne.mcast +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "mCast", - "desc_short": "Chromecast from Music App", - "desc_long": "Cast Music from Now Playing View. tested in Chromecast model 2014", - "compatitle": "iOS 10 through 13", - "changelog": "0.0~beta6
      + Feature For Cast from Direct URL or Root File Path;
      0.0~beta5
      + Feature Auto Follow Current Media;
      0.0~beta4
      + Support iOS 12, 13;
      + Support arm64e;
      0.0~beta3
      + Better Detect Chromecast.
      0.0~beta1
      + Initial Release
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.messagefile b/packageInfo/com.julioverne.messagefile deleted file mode 100644 index 91f9a966361..00000000000 --- a/packageInfo/com.julioverne.messagefile +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "MessageFile", - "desc_short": "Message App Send Any Root Filesystem", - "desc_long": "In Message App on your Chat Conversation just tap on camera icon and one alert will show for select between Photo or Root Filesystem.

      No Options To Configure.", - "compatitle": "iOS 11 through 14", - "changelog": "0.0~beta3
      + Remember Last Path Location
      0.0~beta2b
      + Support iOS 13
      + Support arm64e
      0.0~beta2
      + Select Multiple Files.
      + Update Localization on Alert.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.mibandalert b/packageInfo/com.julioverne.mibandalert deleted file mode 100644 index 6f41f87ccf6..00000000000 --- a/packageInfo/com.julioverne.mibandalert +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "MiBand Alert", - "desc_short": "System Notification XiaoMi Mi Band for iOS.", - "desc_long": "✔️ When you receive a push notification on iPhone your XiaoMi Mi Band will vibrate.
      ✔️ Enable Notification for all apps or for selected apps.

      Guide Connection
      1. Install 'Mi Fit' on AppStore.
      2. Open 'Mi Fit' go to Settings MiBand on 'Mi Fit' and Enable Vibrate to Received Calls (to keep your Mi Band payred with BlueTooth).
      3. Test your Mi Band.

      Configure options from Settings.", - "compatitle": "iOS 7, 8 and 9
      Works on all Mi Band Models", - "changelog": "0.0.4
      - Activator Gestures;
      - Device Low Battery Alert;
      0.0.3
      - Option to vibrate without Led;
      ", - "screenshot": "


      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.mimport b/packageInfo/com.julioverne.mimport deleted file mode 100644 index 4f9b28610a3..00000000000 --- a/packageInfo/com.julioverne.mimport +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "MImport", - "desc_short": "Import Media Directly From Music App", - "desc_long": "✔️ Supported Audio files: mp3, m4a, m4r, aac, wav, aif, aiff, aifc, caf, amr
      ✔️ Supported Video files: mp4, m4v, mov, 3gp
      ✔️ Edit Tags before Import.
      ✔️ Select Multiples files to Import.
      ✔️ Import m4a/m4r as Ringtone.
      ✔️ Import Media Via Documents Share/Open In App
      ✔️ URL Schema to Import Media
      ✔️ One Click to Fetch Artwork, Metadatas

      URL Schema like this: music:///mimport?fetchTags&path=/var/mobile/music_to_import.mp3", - "compatitle": "iOS 6 through 14", - "changelog": "0.0~beta40
      + Option To Overwrite ID3 Tags To mp3 file;
      + Option To use flag 'fetchTags' in url scheme for auto search tags online;
      0.0~beta39
      - Fix 'Select All' Only Selecting First 10 items;
      0.0~beta38
      - Fix Alert's in iOS 13.5;
      0.0~beta37
      + Feature Convert Media (Online);
      + Better Compatibility iOS 13;
      0.0~beta36a
      - Improved MImport SharePlugin;
      - Disabled Open in Music on iOS > 11.0 (use MImport SharePlugin instead);
      0.0~beta36
      + Fix iOS 13
      0.0~beta35
      + Support arm64e
      0.0~beta34
      + Fix Crash iOS 11.
      0.0~beta33
      + Import From: Wi-Fi Sharing.
      0.0~beta32
      + Fix Metadata Search.
      0.0~beta31
      + Favorites section.
      0.0~beta30
      + Import from Dropbox.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.modernxinoblur b/packageInfo/com.julioverne.modernxinoblur deleted file mode 100644 index 6e15fdef361..00000000000 --- a/packageInfo/com.julioverne.modernxinoblur +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "ModernXINoBlur", - "desc_short": "Remove Blur in ModernXI", - "desc_long": "No Options To Configure.", - "compatitle": null, - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.mpscale b/packageInfo/com.julioverne.mpscale deleted file mode 100644 index 013b9c18d79..00000000000 --- a/packageInfo/com.julioverne.mpscale +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "MPScale", - "desc_short": "Show Scale On Maps", - "desc_long": "No Options To Configure.", - "compatitle": "iOS 5 through 11", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.mshuffle b/packageInfo/com.julioverne.mshuffle deleted file mode 100644 index be2e6c74678..00000000000 --- a/packageInfo/com.julioverne.mshuffle +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "MShuffle", - "desc_short": "Music Album End Playing Hit Play To Shuffle.. Music App", - "desc_long": "when an album finished playing, you could hit the play button on the lock screen or headset and it would play the rest of your music on shuffle. Apple seemed to have removed this functionality.", - "compatitle": "iOS 10", - "changelog": "0.0~beta4
      + Option Play Recent Added Order.
      0.0~beta3
      + Add Settings.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.musicsection b/packageInfo/com.julioverne.musicsection deleted file mode 100644 index dc48570f4f5..00000000000 --- a/packageInfo/com.julioverne.musicsection +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "MusicSection", - "desc_short": "Open Music App On Music List Section", - "desc_long": "No Options To Configure.", - "compatitle": "iOS 11", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.musicv b/packageInfo/com.julioverne.musicv deleted file mode 100644 index 052dd87860d..00000000000 --- a/packageInfo/com.julioverne.musicv +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "MusicV", - "desc_short": "Better Now Playing View in Music App", - "desc_long": "No Options to Configure.", - "compatitle": "iOS 9", - "changelog": "0.0~beta1
      + Initial Release
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.musilyric b/packageInfo/com.julioverne.musilyric deleted file mode 100644 index 40166a5fff1..00000000000 --- a/packageInfo/com.julioverne.musilyric +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "MusiLyric", - "desc_short": "Best Lyrics Music", - "desc_long": "✔️ Fetch Lyrics on Music, Spotify, TIDAL, Pandora & LockScreen.
      ✔️ Fetch in Background with best performance no Lags.
      ✔️ After Fetch Lyric will Available Offline.
      ✔️ Use Private API Musixmatch Database.

      No Options to Configure.
      ", - "compatitle": "iOS 6 through 13", - "changelog": "0.5~beta8
      - Fix Music App Native Lyrics not working for some devices.
      0.5~beta7a
      + Support LockScreen iOS 12 and 13
      0.5~beta7
      + Support Music App and iOS 13
      + Support arm64e
      0.5~beta6
      + iOS 11 LockScreen.
      0.5~beta5
      + Support TIDAL.
      0.5~beta4
      + Fix Lyrics.
      0.4
      + Now Support LockScreen.
      0.3
      + Now Support Spotify & Pandora.
      0.2-0
      + Some Bug Fix
      0.1
      + Initial Release
      ", - "screenshot": "
      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.nbkjb b/packageInfo/com.julioverne.nbkjb deleted file mode 100644 index 38d8540bd3e..00000000000 --- a/packageInfo/com.julioverne.nbkjb +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "NBKJB", - "desc_short": "Bypass NBK Jailbreak Detection", - "warning": "This Project Is Continued In Private Way", - "desc_long": "Jailbreak Detection Bypass For NBK Mobile Banking.

      No Options To Configure.", - "compatitle": "NBK from AppStore", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": false, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.ncgroup b/packageInfo/com.julioverne.ncgroup deleted file mode 100644 index fd39a768db6..00000000000 --- a/packageInfo/com.julioverne.ncgroup +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "NCGroup", - "desc_short": "Group Notification Center items", - "desc_long": null, - "compatitle": "iOS 7, 8 and 9", - "changelog": "0.0~beta
      + Initial Release
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.noexinsta b/packageInfo/com.julioverne.noexinsta deleted file mode 100644 index b3df573141a..00000000000 --- a/packageInfo/com.julioverne.noexinsta +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "NoExInsta", - "desc_short": "Hide Explore Section In Instagram", - "desc_long": "No Options To Configure.", - "compatitle": "Instagram", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.nonceset b/packageInfo/com.julioverne.nonceset deleted file mode 100644 index 7ac318ed4f3..00000000000 --- a/packageInfo/com.julioverne.nonceset +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "NonceSet", - "desc_short": "Manage boot-nonce easy.", - "desc_long": "✔️ Set/Change/Delete boot-nonce from an simple App.
      ✔️ Save/Restore boot-nonce from your Dropbox Account.
      ✔️ View device ECID in Decimal and Hexadecimal.", - "compatitle": "iOS 9 & 10", - "changelog": "0.4
      + Dropbox API v2 Support.
      0.3
      + Add Dropbox Save/Restore nonce.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.ntspeed b/packageInfo/com.julioverne.ntspeed deleted file mode 100644 index e89af199f5a..00000000000 --- a/packageInfo/com.julioverne.ntspeed +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "NtSpeed", - "desc_short": "See Active Traffic Network Speed", - "desc_long": "Configure Options From Settings.", - "compatitle": "iOS 6 through 14", - "changelog": "0.0~beta9
      - Fix Possible Crash
      0.0~beta8
      + Adjust Settings
      0.0~beta7
      + Support arm64e.
      0.0~beta6
      + Now Ignore Touch Inside NtSpeed view.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.otablocker b/packageInfo/com.julioverne.otablocker deleted file mode 100644 index fef6cba4923..00000000000 --- a/packageInfo/com.julioverne.otablocker +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "OTABlocker", - "desc_short": "Block iOS OTA Updates", - "desc_long": "Based in tvOS/WatchOS Beta profile, this will save to Settings Server thats check for updates... and will blocking any iOS OTA updates.", - "compatitle": "iOS 5 through 11", - "changelog": "0.2
      + Support iOS 11.
      0.1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.phonescroll b/packageInfo/com.julioverne.phonescroll deleted file mode 100644 index 235af095dd5..00000000000 --- a/packageInfo/com.julioverne.phonescroll +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "PhoneScroll", - "desc_short": "Tap In Selected Tap Bar For Scroll To Top", - "desc_long": "No Options To Configure.", - "compatitle": "iOS 11, 12, 13", - "changelog": "0.0~beta2a
      + Support arm64e.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.picjb b/packageInfo/com.julioverne.picjb deleted file mode 100644 index a65e7d7413d..00000000000 --- a/packageInfo/com.julioverne.picjb +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "PicJB", - "desc_short": "Bypass PicPay Jailbreak Detection", - "desc_long": "Jailbreak Detection Bypass For PicPay.

      No Options To Configure.", - "compatitle": "PicPay from AppStore", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": false, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.pimport b/packageInfo/com.julioverne.pimport deleted file mode 100644 index 0ae09098cf7..00000000000 --- a/packageInfo/com.julioverne.pimport +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "PImport", - "desc_short": "Photo Importer Directly From Photo App", - "desc_long": "✔️ Edit Location, Time, Exif, Tiff Meta Tags.
      ✔️ Import Photo From Direct URL.
      ✔️ Wi-Fi Sharing.
      An Power Full Photo Importer.
      ", - "compatitle": "iOS 11 through 14", - "changelog": "0.0~beta5
      + Support iOS 14
      0.0~beta4
      + Support arm64e
      0.0~beta3
      + New Web Server.
      + Fix Resolution Issue When Download Images from iPhone to PC via Wi-Fi.
      0.0~beta2
      + Multiple Uploads.
      + Better Cache Management.
      + Option For Silent Import.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.pipenabler b/packageInfo/com.julioverne.pipenabler deleted file mode 100644 index 06968e39d8d..00000000000 --- a/packageInfo/com.julioverne.pipenabler +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "PIPEnabler", - "desc_short": "Enabler Picture In Picture Feature", - "desc_long": "Enable Picture In Picture Videos in some Apps.", - "compatitle": "iOS 11, 12", - "changelog": "0.3
      + Support arm64e
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.pipsize b/packageInfo/com.julioverne.pipsize deleted file mode 100644 index 5019f25ef21..00000000000 --- a/packageInfo/com.julioverne.pipsize +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "PIPSize", - "desc_short": "Resize Picture In Picture in any size", - "desc_long": "Some Features for PIP:
      - Resize PIP in any size
      - Allow in Multitask


      No Options To Configure.
      ", - "compatitle": "iOS 13", - "changelog": "0.0~beta1
      + Initial Release
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.quickunlock11 b/packageInfo/com.julioverne.quickunlock11 deleted file mode 100644 index 7e223a75b60..00000000000 --- a/packageInfo/com.julioverne.quickunlock11 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "QuickUnlock (iOS 11)", - "desc_short": "Skip lockscreen if no notifications", - "desc_long": "No Options To Configure.

      Open Source Code of QuickUnlock is on GitHub /codyd51/QuickUnlock.", - "compatitle": "iOS 11", - "changelog": "1.0
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.raisetoanswer b/packageInfo/com.julioverne.raisetoanswer deleted file mode 100644 index 5195ca3c2e3..00000000000 --- a/packageInfo/com.julioverne.raisetoanswer +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "RaiseToAnswer (iOS 11)", - "desc_short": "Raise phone to answer phone calls", - "desc_long": "No Options To Configure.

      Open Source Code of RaiseToAnswer is on GitHub /MohammadAG/iOS-RaiseToAnswer.", - "compatitle": "iOS 8 through 12", - "changelog": "1.1
      + Support arm64e
      1.0-1c
      + CallBar Support.
      1.0-1a
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.sbcard b/packageInfo/com.julioverne.sbcard deleted file mode 100644 index 296d2bdc134..00000000000 --- a/packageInfo/com.julioverne.sbcard +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "SBCard", - "desc_short": "Add HomeScreen Card to Switcher, swipe up to close all apps.", - "desc_long": "No Options To Configure.", - "compatitle": "iOS 11", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": "


      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.scloudinfo b/packageInfo/com.julioverne.scloudinfo deleted file mode 100644 index 9c6d5035f6f..00000000000 --- a/packageInfo/com.julioverne.scloudinfo +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "SCloudInfo", - "desc_short": "SoundCloud Track Description Info", - "desc_long": "Add Track Description Info In More Menu.

      No Options To Configure.", - "compatitle": "SoundCloud App", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.screendump13 b/packageInfo/com.julioverne.screendump13 deleted file mode 100644 index 9cde834cb10..00000000000 --- a/packageInfo/com.julioverne.screendump13 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "screendump (iOS 13)", - "desc_short": "VNC for ios", - "desc_long": "Lets you run a VNC Server in iOS !

      Use any VNC Client to remote manage, default port is: 5900

      Links:
      VNC Viewer
      UltraVnc

      screendump is open source and developed by cosmosgenius.


      Configure Options From Settings.
      ", - "compatitle": "iOS 12, 13", - "changelog": "0.0.3d
      + Custom Resolution.
      - Less CPU Usage.
      0.0.3b
      - Improve CPU Usage When disabled.
      0.0.3a
      + Initial Release
      ", - "screenshot": "", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.signaldbm b/packageInfo/com.julioverne.signaldbm deleted file mode 100644 index 02a1b6fa6dc..00000000000 --- a/packageInfo/com.julioverne.signaldbm +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "SignaldBm", - "desc_short": "Replece Signal Bars with dBm level", - "desc_long": "Lets you replece Cell/WiFi Signal Bars with dBm levels in Statusbar.


      Configure Options From Settings.
      ", - "compatitle": "iOS 13, 14", - "changelog": "0.0~beta3
      + Text Size
      0.0~beta2
      + Text Color
      0.0~beta1
      + Initial Release
      ", - "screenshot": "


      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.signalplane b/packageInfo/com.julioverne.signalplane deleted file mode 100644 index 86c2940e29e..00000000000 --- a/packageInfo/com.julioverne.signalplane +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "SignalPlane", - "desc_short": "Plan For Low Signal", - "desc_long": "Turn Airplane On When Cell Signal Is Lower
      This is Alternative for tweak AirplaneSignal.

      Configure Options From Settings.", - "compatitle": "iOS 11", - "changelog": "0.0~beta2
      + Option For Enable Bluetooth.
      + Option For Vibrate When Enable Airplane Mode.
      + Implemented Battery Life Management by Wake/Sleep Device For Continuous 'Re-Check' Feature.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.simulatetouch b/packageInfo/com.julioverne.simulatetouch deleted file mode 100644 index d9b721a699f..00000000000 --- a/packageInfo/com.julioverne.simulatetouch +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "SimulateTouch", - "desc_short": "Simulate fake touch and swipe. Support multi-touch", - "desc_long": "This is unofficial beta, swipe currently unavailable.

      Type terminal command: \"stouch\".", - "compatitle": "iOS 11", - "changelog": "0.7-17~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.siriifpossible b/packageInfo/com.julioverne.siriifpossible deleted file mode 100644 index 2a4a6f9705a..00000000000 --- a/packageInfo/com.julioverne.siriifpossible +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "SiriIfPossible", - "desc_short": "If Siri Unavailable Use Voice Control", - "desc_long": "
      No Options To Configure.", - "compatitle": "iOS 10", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.slackhistory b/packageInfo/com.julioverne.slackhistory deleted file mode 100644 index 58c792edbc6..00000000000 --- a/packageInfo/com.julioverne.slackhistory +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "SlackHistory", - "desc_short": "Slack See Edited Message History", - "desc_long": "Add History button when message is edited to see full history.", - "compatitle": "Slack App", - "changelog": "0.1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.sslkillswitch2 b/packageInfo/com.julioverne.sslkillswitch2 deleted file mode 100644 index 33e8bd60c2c..00000000000 --- a/packageInfo/com.julioverne.sslkillswitch2 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "SSL Kill Switch 2 (iOS 13)", - "desc_short": "Blackbox tool to disable SSL certificate validation and pinning", - "desc_long": "Lets disable SSL certificate validation and certificate pinning, Helps for debugs SSL connections without install additional certificate.

      SSL Kill Switch is open source and developed by iSECPartners.

      Configure Options From Settings.
      ", - "compatitle": "iOS 13", - "changelog": "0.14a
      + Initial Release
      ", - "screenshot": "
      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.tb280 b/packageInfo/com.julioverne.tb280 deleted file mode 100644 index a175b296c9d..00000000000 --- a/packageInfo/com.julioverne.tb280 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "TB280", - "desc_short": "Tweetbot 280 Character Enabler", - "desc_long": "Tweet 280 Character in Tweetbot App.", - "compatitle": "Tweetbot App", - "changelog": "0.2
      + Tweetbot 2 Support.
      0.1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.trustdevalert b/packageInfo/com.julioverne.trustdevalert deleted file mode 100644 index b31c8c18605..00000000000 --- a/packageInfo/com.julioverne.trustdevalert +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "trustDevAlert", - "desc_short": "Add Trust Button In Alert Of Free Developer Profile Not Trusted.", - "desc_long": "No Options To Configure.", - "compatitle": "iOS 10, 11, 12", - "changelog": "0.2a
      - Fix Free Profile Crash;
      0.2
      + Support iOS 12
      + Support arm64e
      0.1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.tw280 b/packageInfo/com.julioverne.tw280 deleted file mode 100644 index fbd2ee2515e..00000000000 --- a/packageInfo/com.julioverne.tw280 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "TW280", - "desc_short": "Twitter 280 Character Enabler", - "desc_long": "Tweet 280 Character in Twitter App.", - "compatitle": "Twitter App", - "changelog": "0.2
      + Twitter v6.66.1 Support.
      0.1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.twslidetoblock b/packageInfo/com.julioverne.twslidetoblock deleted file mode 100644 index cebaa0883f7..00000000000 --- a/packageInfo/com.julioverne.twslidetoblock +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "TWSlideToBlock", - "desc_short": "Twitter Slide To Block/Mute in Liked/Retweeted Section", - "desc_long": "Lets You Slide To Block/Mute User from Liked/Retweeted Section from an Tweet.

      No Options to Configure.
      ", - "compatitle": "Twitter App", - "changelog": "0.0~beta1
      + Initial Release
      ", - "screenshot": "
      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.upscale b/packageInfo/com.julioverne.upscale deleted file mode 100644 index 81c9ae45e8f..00000000000 --- a/packageInfo/com.julioverne.upscale +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Upscale", - "desc_short": "Change Device Resolution", - "desc_long": "Configure Options From Settings.

      Open Source Code of Upscale is on GitHub /bd452/Upscale.", - "compatitle": null, - "changelog": "0.0.1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.vwallpaper2os11 b/packageInfo/com.julioverne.vwallpaper2os11 deleted file mode 100644 index f9451d3069a..00000000000 --- a/packageInfo/com.julioverne.vwallpaper2os11 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "vWallpaper 2 (iOS 11)", - "desc_short": "Add videos as Wallpaper", - "desc_long": "Add videos, video ringtones, cool effects (particles, 3D objects), HTML Widgets (...) on your Springboard and / or Away view. Bring your iPhone to life ! (Beta stage)

      Configure Options From vWallpaper2 App.", - "compatitle": "iOS 11", - "changelog": "0.5.0-3
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.whilelotus b/packageInfo/com.julioverne.whilelotus deleted file mode 100644 index aabb715034e..00000000000 --- a/packageInfo/com.julioverne.whilelotus +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "WhileLotus", - "desc_short": "Lotus Dark For Unthemed Icons", - "desc_long": "No Options To Configure.", - "compatitle": "Lotus Dark Theme", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.widplayer b/packageInfo/com.julioverne.widplayer deleted file mode 100644 index c55efa21469..00000000000 --- a/packageInfo/com.julioverne.widplayer +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "WidPlayer", - "desc_short": "Music widget for your screen", - "desc_long": "Configure options from Settings.", - "compatitle": "iOS 8, 9 and 10", - "changelog": "3.5.4
      + Fix Lyrics.
      3.5.3
      + Minimal Mode.
      + iOS 10 Support.
      ", - "screenshot": "


      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.wishdia b/packageInfo/com.julioverne.wishdia deleted file mode 100644 index dda4954f61d..00000000000 --- a/packageInfo/com.julioverne.wishdia +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "WishDia", - "desc_short": "Wish List For Cydia", - "desc_long": "Wish List can be found in Cydia Home at top left.", - "compatitle": "iOS 11", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.ythdunlocker b/packageInfo/com.julioverne.ythdunlocker deleted file mode 100644 index 169d3f7017c..00000000000 --- a/packageInfo/com.julioverne.ythdunlocker +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "YTHDUnlocker", - "desc_short": "Unlocks HD Videos in YouTube App", - "desc_long": "Unlocks High Definition Videos Quality in YouTube App

      Note's:
      Not Compatible With DRM Protected Videos.
      Can Cause Fail to Load or Lags on Videos with HD Resolutions.

      No Options To Configure.
      ", - "compatitle": "YouTube App", - "changelog": "0.0~beta1b
      + Fix Last Version.
      0.0~beta1
      + Initial Release.
      ", - "screenshot": "

      ", - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.ytnoautoplay b/packageInfo/com.julioverne.ytnoautoplay deleted file mode 100644 index a133d110feb..00000000000 --- a/packageInfo/com.julioverne.ytnoautoplay +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "YTNoAutoPlay", - "desc_short": "YouTube Disable Autoplay Videos", - "desc_long": null, - "compatitle": "YouTube App", - "changelog": "0.0~beta2
      + Activator and Flipswitch Toggle.
      0.0~beta1
      + YouTube Old Version Support.
      0.0~beta
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/packageInfo/com.julioverne.zaddyverifyroll b/packageInfo/com.julioverne.zaddyverifyroll deleted file mode 100644 index f825eb96782..00000000000 --- a/packageInfo/com.julioverne.zaddyverifyroll +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "ZaddyVerifyRoll", - "desc_short": "Verify Account Photo via Camera Roll", - "desc_long": "You have broken camera and when verify account show black image when you need to take image, An alert will show for select between Camera Roll or Camera.

      No Options To Configure.", - "compatitle": "Zaddy App", - "changelog": "0.0~beta1
      + Initial Release.
      ", - "screenshot": null, - "open": true, -} \ No newline at end of file diff --git a/screenshot.jpg b/screenshot.jpg deleted file mode 100644 index 1f5db3af0aa..00000000000 Binary files a/screenshot.jpg and /dev/null differ diff --git a/screenshots/TeXt-card.png b/screenshots/TeXt-card.png deleted file mode 100644 index e98239d172e..00000000000 Binary files a/screenshots/TeXt-card.png and /dev/null differ diff --git a/screenshots/TeXt-details.png b/screenshots/TeXt-details.png deleted file mode 100644 index d33e3ab443e..00000000000 Binary files a/screenshots/TeXt-details.png and /dev/null differ diff --git a/screenshots/TeXt-home.jpg b/screenshots/TeXt-home.jpg deleted file mode 100644 index 1f5db3af0aa..00000000000 Binary files a/screenshots/TeXt-home.jpg and /dev/null differ diff --git a/screenshots/TeXt-home.png b/screenshots/TeXt-home.png deleted file mode 100644 index a2d3527fba2..00000000000 Binary files a/screenshots/TeXt-home.png and /dev/null differ diff --git a/screenshots/TeXt-layouts.png b/screenshots/TeXt-layouts.png deleted file mode 100644 index d33e3ab443e..00000000000 Binary files a/screenshots/TeXt-layouts.png and /dev/null differ diff --git a/screenshots/TeXt-responsive.png b/screenshots/TeXt-responsive.png deleted file mode 100644 index 713c98fd4c9..00000000000 Binary files a/screenshots/TeXt-responsive.png and /dev/null differ diff --git a/screenshots/TeXt-skins.png b/screenshots/TeXt-skins.png deleted file mode 100644 index 2a64617c2bd..00000000000 Binary files a/screenshots/TeXt-skins.png and /dev/null differ diff --git a/screenshots/TeXt-version-2.jpg b/screenshots/TeXt-version-2.jpg deleted file mode 100644 index 0b0ddf37afa..00000000000 Binary files a/screenshots/TeXt-version-2.jpg and /dev/null differ diff --git a/screenshots/highlight_tomorrow-night-blue.png b/screenshots/highlight_tomorrow-night-blue.png deleted file mode 100644 index cd34cee5505..00000000000 Binary files a/screenshots/highlight_tomorrow-night-blue.png and /dev/null differ diff --git a/screenshots/highlight_tomorrow-night-bright.png b/screenshots/highlight_tomorrow-night-bright.png deleted file mode 100644 index 717ec572659..00000000000 Binary files a/screenshots/highlight_tomorrow-night-bright.png and /dev/null differ diff --git a/screenshots/highlight_tomorrow-night-eighties.png b/screenshots/highlight_tomorrow-night-eighties.png deleted file mode 100644 index 29e5e1814ca..00000000000 Binary files a/screenshots/highlight_tomorrow-night-eighties.png and /dev/null differ diff --git a/screenshots/highlight_tomorrow-night.png b/screenshots/highlight_tomorrow-night.png deleted file mode 100644 index 2e09736aa4f..00000000000 Binary files a/screenshots/highlight_tomorrow-night.png and /dev/null differ diff --git a/screenshots/highlight_tomorrow.png b/screenshots/highlight_tomorrow.png deleted file mode 100644 index 62e7f20d419..00000000000 Binary files a/screenshots/highlight_tomorrow.png and /dev/null differ diff --git a/screenshots/skins_chocolate.jpg b/screenshots/skins_chocolate.jpg deleted file mode 100644 index 58a7ef78102..00000000000 Binary files a/screenshots/skins_chocolate.jpg and /dev/null differ diff --git a/screenshots/skins_dark.jpg b/screenshots/skins_dark.jpg deleted file mode 100644 index 25da566daa2..00000000000 Binary files a/screenshots/skins_dark.jpg and /dev/null differ diff --git a/screenshots/skins_default.jpg b/screenshots/skins_default.jpg deleted file mode 100644 index cd8a33d732b..00000000000 Binary files a/screenshots/skins_default.jpg and /dev/null differ diff --git a/screenshots/skins_forest.jpg b/screenshots/skins_forest.jpg deleted file mode 100644 index 70d25eed70b..00000000000 Binary files a/screenshots/skins_forest.jpg and /dev/null differ diff --git a/screenshots/skins_ocean.jpg b/screenshots/skins_ocean.jpg deleted file mode 100644 index f9a67c7a22e..00000000000 Binary files a/screenshots/skins_ocean.jpg and /dev/null differ diff --git a/screenshots/skins_orange.jpg b/screenshots/skins_orange.jpg deleted file mode 100644 index b9f03cf9039..00000000000 Binary files a/screenshots/skins_orange.jpg and /dev/null differ diff --git a/test/404.html b/test/404.html deleted file mode 100644 index c4e870fdc7d..00000000000 --- a/test/404.html +++ /dev/null @@ -1,3 +0,0 @@ ---- -layout: 404 ---- diff --git a/test/Gemfile b/test/Gemfile deleted file mode 100644 index cc2192098cf..00000000000 --- a/test/Gemfile +++ /dev/null @@ -1,7 +0,0 @@ -source "https://rubygems.org" - -# gem "jekyll-text-theme", path: "../" -gem "jekyll-text-theme" - -gem "tzinfo-data" -gem "wdm", "~> 0.1.0" if Gem.win_platform? diff --git a/test/_config.yml b/test/_config.yml deleted file mode 100644 index af1d04a3962..00000000000 --- a/test/_config.yml +++ /dev/null @@ -1,225 +0,0 @@ -# Welcome to Jekyll! -# -# This config file is meant for settings that affect your whole blog, values -# which you are expected to set up once and rarely need to edit after that. -# For technical reasons, this file is *NOT* reloaded automatically when you use -# 'jekyll serve'. If you change this file, please restart the server process. - -## !USE TEXT THEME -theme: jekyll-text-theme # Gem-based Jekyll Themes -# remote_theme: kitian616/jekyll-TeXt-theme # Jekyll Remote Theme, see https://github.com/benbalter/jekyll-remote-theme for more information. -# -# ,--------. ,--. ,--. ,--. -# '--. .--',---. \ `.' /,-' '-. -# | | | .-. : .' \ '-. .-' -# | | \ --. / .'. \ | | -# `--' `----''--' '--' `--' -## => Site Settings -############################## -text_skin: default # "default" (default), "dark", "forest", "ocean", "chocolate", "orange" -highlight_theme: default # "default" (default), "tomorrow", "tomorrow-night", "tomorrow-night-eighties", "tomorrow-night-blue", "tomorrow-night-bright" -url : # the base hostname & protocol for your site e.g. https://www.someone.com -baseurl : # does not include hostname -title : Your Site Title -description: > # this means to ignore newlines until "Language & timezone" - Your Site Description - - -## => Language and Timezone -############################## -lang: # the language of your site, default as "en" -timezone: # see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones for the available values - - -## => Author and Social -############################## -author: - type : # "person" (default), "organization" - name : Your Name - url : - avatar : # path or url of avatar image (square) - bio : I am an amazing person. - email : - facebook : # "user_name" the last part of your profile url, e.g. https://www.facebook.com/user_name - twitter : # "user_name" the last part of your profile url, e.g. https://twitter.com/user_name - weibo : # "user_id" the last part of your profile url, e.g. https://www.weibo.com/user_id/profile?... - googleplus: # "user_id" the last part of your profile url, e.g. https://plus.google.com/u/0/user_id - telegram : # "user_name" the last part of your profile url, e.g. https://t.me/user_name - medium : # "user_name" the last part of your profile url, e.g. https://medium.com/user_name - zhihu : # "user_name" the last part of your profile url, e.g. https://www.zhihu.com/people/user_name - douban : # "user_name" the last part of your profile url, e.g. https://www.douban.com/people/user_name - linkedin : # "user_name" the last part of your profile url, e.g. https://www.linkedin.com/in/user_name - github : # "user_name" the last part of your profile url, e.g. https://github.com/user_name - npm : # "user_name" the last part of your profile url, e.g. https://www.npmjs.com/~user_name - - -## => GitHub Repository (if the site is hosted by GitHub) -############################## -repository: user_name/repo_name -repository_tree: master - - -## => Paths -############################## -paths: - root : # title link url, "/" (default) - home : # home layout url, "/" (default) - archive : # "/archive.html" (default) - rss : # "/feed.xml" (default) - - -## => Post -############################## -## excerpt -excerpt_separator: - -## license -license: CC-BY-NC-4.0 # "CC-BY-4.0", "CC-BY-SA-4.0", "CC-BY-NC-4.0", "CC-BY-ND-4.0" - -## TOC -toc: - selectors: # "h1,h2,h3" (default) - - -## => Markdown Enhancements -############################## -## Mathjax -mathjax: # false (default), true -mathjax_autoNumber: # false (default), true - -## Mermaid -mermaid: # false (default), true - -## Chart -chart: # false (default), true - - -## => Paginate -############################## -paginate: 8 -paginate_path: /page:num # don't change this unless for special need - - -## => Sources -############################## -sources: # bootcdn (default), unpkg - - -## => Sharing -############################## -sharing: - provider: false # false (default), "addtoany", "addthis", "custom" - - ## AddThis - addthis: - id: # AddThis pubid, e.g. ra-5xxxxxxxxxxx - - -## => Comments -############################## -comments: - provider: false # false (default), "disqus", "gitalk", "valine", "custom" - - ## Disqus - disqus: - shortname: # the Disqus shortname for the site - - ## Gitalk - # please refer to https://github.com/gitalk/gitalk for more info. - gitalk: - clientID : # GitHub Application Client ID - clientSecret: # GitHub Application Client Secret - repository : # GitHub repo - owner : # GitHub repo owner - admin: # GitHub repo owner and collaborators, only these guys can initialize GitHub issues, IT IS A LIST. - # - your GitHub Id - - ## Valine - # please refer to https://valine.js.org/en/ for more info. - valine: - app_id : # LeanCloud App id - app_key : # LeanCloud App key - placeholder : # Prompt information - visitor : # false (default) - meta : # "[nick, mail, link]" (default) nickname, E-mail, Personal-site - - -## => Pageview -############################## -pageview: - provider: false # false (default), "leancloud", "custom" - - ## Leancloud - leancloud: - app_id : # LeanCloud App id - app_key : # LeanCloud App key - app_class : # LeanCloud App class - - -## => Search -############################## -search: - provider: default # "default" (default), false, "google", "custom" - - ## Google Custom Search Engine - google: - custom_search_engine_id: # Google Custom Search Engine ID - - -## => Analytics -############################## -analytics: - provider: false # false (default), "google", "custom" - - ## Google Analytics - google: - tracking_id : # Google Analytics id for the site - anonymize_ip: false # Anonymize IP tracking for Analytics - - -## => Build -############################## -markdown : kramdown -highlighter : rouge -permalink : date - -exclude: - - CHANGELOG.md - - HOW_TO_RELEASE.md - - Gemfile - - Gemfile.lock - - LICENSE - - README-*.md - - README.md - - gulpfile.js - - jekyll-text-theme.gemspec - - package-lock.json - - package.json - - /docs - - /node_modules - - /screenshots - - /test - - /vendor - -defaults: - - scope: - path: "" - type: posts - values: - layout: article - sharing: true - license: true - aside: - toc: true - show_edit_on_github: true - show_subscribe: true - pageview: true - - -## => Plugins -############################## -plugins: - - jekyll-feed - - jekyll-paginate - - jekyll-sitemap - - jemoji diff --git a/test/_data/authors.yml b/test/_data/authors.yml deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/test/_data/licenses.yml b/test/_data/licenses.yml deleted file mode 100644 index 6729af56f6b..00000000000 --- a/test/_data/licenses.yml +++ /dev/null @@ -1,16 +0,0 @@ -CC-BY-4.0: - name: Attribution 4.0 International - url: https://creativecommons.org/licenses/by/4.0/ - image: https://i.creativecommons.org/l/by/4.0/88x31.png -CC-BY-SA-4.0: - name: Attribution-ShareAlike 4.0 International - url: https://creativecommons.org/licenses/by-sa/4.0/ - image: https://i.creativecommons.org/l/by-sa/4.0/88x31.png -CC-BY-NC-4.0: - name: Attribution-NonCommercial 4.0 International - url: https://creativecommons.org/licenses/by-nc/4.0/ - image: https://i.creativecommons.org/l/by-nc/4.0/88x31.png -CC-BY-ND-4.0: - name: Attribution-NoDerivatives 4.0 International - url: https://creativecommons.org/licenses/by-nd/4.0/ - image: https://i.creativecommons.org/l/by-nd/4.0/88x31.png diff --git a/test/_data/locale.yml b/test/_data/locale.yml deleted file mode 100644 index 52cd7b9714d..00000000000 --- a/test/_data/locale.yml +++ /dev/null @@ -1,170 +0,0 @@ -# @start locale config -## => English -######################## -en: &EN - SUBSCRIBE : "Subscribe" - READMORE : "Read more" - SEARCH : "Search" - CANCEL : "Cancel" - VIEWS : "views" - LAST_UPDATED : "Last updated" - PREVIOUS : "PREVIOUS" - NEXT : "NEXT" - ARTICLE_DATE_FORMAT : "%b %d, %Y" - ARTICLE_LIST_DATE_FORMAT: "%b %d" - STATISTICS : "[POST_COUNT] post articles, [PAGE_COUNT] pages." - LICENSE_ANNOUNCE : "This work is licensed under a [LICENSE] license." - POST_ON_GITHUB : "Edit on Github" - FOLLOW_ME : "Follow me on [NAME]." - FOLLOW_US : "Follow us on [NAME]." - EMAIL_ME : "Send me an Email." - EMAIL_US : "Send us an Email." - COPYRIGHT_DATES : "2021" - -en-GB: - <<: *EN -en-US: - <<: *EN -en-CA: - <<: *EN -en-AU: - <<: *EN - -## => Simplified Chinese -######################## -zh-Hans: &ZH_HANS - SUBSCRIBE : "订阅" - READMORE : "阅读更多" - SEARCH : "搜索" - CANCEL : "取消" - VIEWS : "阅读" - LAST_UPDATED : "更新于" - PREVIOUS : "上篇" - NEXT : "下篇" - ARTICLE_DATE_FORMAT : "%Y年 %m月%d日" - ARTICLE_LIST_DATE_FORMAT: "%m月%d日" - STATISTICS : "共计 [POST_COUNT] 篇文章,[PAGE_COUNT] 页。" - LICENSE_ANNOUNCE : "本文遵守 [LICENSE] 许可协议。" - POST_ON_GITHUB : "在 Github 上修改" - FOLLOW_ME : "在 [NAME] 上关注我。" - FOLLOW_US : "在 [NAME] 上关注我们。" - EMAIL_ME : "给我发邮件。" - EMAIL_US : "给我们发邮件。" - COPYRIGHT_DATES : "2021" - -zh: - <<: *ZH_HANS -zh-CN: - <<: *ZH_HANS -zh-SG: - <<: *ZH_HANS - -## => Traditional Chinese -######################## -zh-Hant: &ZH_HANT - SUBSCRIBE : "訂閱" - READMORE : "閱讀更多" - SEARCH : "搜索" - CANCEL : "取消" - VIEWS : "閱讀" - LAST_UPDATED : "更新於" - PREVIOUS : "上篇" - NEXT : "下篇" - ARTICLE_DATE_FORMAT : "%Y年 %m月%d日" - ARTICLE_LIST_DATE_FORMAT: "%m月%d日" - STATISTICS : "共計 [POST_COUNT] 篇文章,[PAGE_COUNT] 頁。" - LICENSE_ANNOUNCE : "本文遵守 [LICENSE] 許可協議。" - POST_ON_GITHUB : "在 Github 上修改" - FOLLOW_ME : "在 [NAME] 上關注我。" - FOLLOW_US : "在 [NAME] 上關注我們。" - EMAIL_ME : "給我發郵件。" - EMAIL_US : "給我們發郵件。" - COPYRIGHT_DATES : "2021" - -zh-TW: - <<: *ZH_HANT -zh-HK: - <<: *ZH_HANT - -## => Korean -######################## -ko: &KO - SUBSCRIBE : "구독하기" - READMORE : "더보기" - SEARCH : "검색" - CANCEL : "취소" - VIEWS : "조회" - LAST_UPDATED : "마지막 수정" - PREVIOUS : "이전" - NEXT : "다음" - ARTICLE_DATE_FORMAT : "%Y년 %m월 %d일" - ARTICLE_LIST_DATE_FORMAT: "%m월 %d일" - STATISTICS : "전체 글 [POST_COUNT]개, [PAGE_COUNT] 페이지" - LICENSE_ANNOUNCE : "이 글의 저작권은 [LICENSE] 라이센스를 따릅니다." - POST_ON_GITHUB : "Github에서 확인하기" - FOLLOW_ME : "[NAME]에서 팔로우하기" - FOLLOW_US : "[NAME]에서 팔로우하기" - EMAIL_ME : "이메일 보내기" - EMAIL_US : "이메일 보내기" - COPYRIGHT_DATES : "2021" - -ko-KR: - <<: *KO - -## => French -######################## -fr: &FR - SUBSCRIBE : "S'abonner" - READMORE : "Plus" - SEARCH : "Recherche" - CANCEL : "Annuler" - VIEWS : "vues" - LAST_UPDATED : "Dernière modification" - PREVIOUS : "PRÉCÉDENT" - NEXT : "SUIVANT" - ARTICLE_DATE_FORMAT : "%d %b, %Y" - ARTICLE_LIST_DATE_FORMAT: "%d %b" - STATISTICS : "[POST_COUNT] articles, [PAGE_COUNT] pages." - LICENSE_ANNOUNCE : "Ce travail est sous licence [LICENSE]." - POST_ON_GITHUB : "Modifier sur Github" - FOLLOW_ME : "Suivez-moi sur [NAME]." - FOLLOW_US : "Suivez-nous sur [NAME]." - EMAIL_ME : "Envoyez-moi un courriel." - EMAIL_US : "Envoyez-nous un courriel" - COPYRIGHT_DATES : "2021" - DONATE : "Faites un don de [NAME]." - -fr-BE: - <<: *FR -fr-CA: - <<: *FR -fr-CH: - <<: *FR -fr-FR: - <<: *FR -fr-LU: - <<: *FR - -## => Turkish -######################## -tr: &TR - SUBSCRIBE : "Takip et" - READMORE : "Devamını Oku" - SEARCH : "İçerik Ara" - CANCEL : "İptal" - VIEWS : "gösterim" - LAST_UPDATED : "Son güncellenme" - PREVIOUS : "ÖNCEKİ" - NEXT : "SONRAKİ" - ARTICLE_DATE_FORMAT : "%d %b, %Y" - ARTICLE_LIST_DATE_FORMAT: "%d %b" - STATISTICS : "Toplam [POST_COUNT] adet gönderim ve [PAGE_COUNT] adet sayfa bulunuyor." - LICENSE_ANNOUNCE : "Bu içerik [LICENSE] ile lisanslanmıştır." - POST_ON_GITHUB : "Github üzerinde düzenle" - FOLLOW_ME : "Beni [NAME] üzerinden takip et." - FOLLOW_US : "Bizi [NAME] üzerinden takip edin." - EMAIL_ME : "Bana email ile ulaşın." - EMAIL_US : "Bize email ile ulaşın." - COPYRIGHT_DATES : "2021" - -# @end locale config diff --git a/test/_data/navigation.yml b/test/_data/navigation.yml deleted file mode 100644 index e6f5ee962e9..00000000000 --- a/test/_data/navigation.yml +++ /dev/null @@ -1,52 +0,0 @@ -header: - - titles: - # @start locale config - en : &EN Archive - en-GB : *EN - en-US : *EN - en-CA : *EN - en-AU : *EN - zh-Hans : &ZH_HANS 归档 - zh : *ZH_HANS - zh-CN : *ZH_HANS - zh-SG : *ZH_HANS - zh-Hant : &ZH_HANT 歸檔 - zh-TW : *ZH_HANT - zh-HK : *ZH_HANT - ko : &KO 아카이브 - ko-KR : *KO - fr : &FR Archives - fr-BE : *FR - fr-CA : *FR - fr-CH : *FR - fr-FR : *FR - fr-LU : *FR - tr : &TR Arşivdekiler - # @end locale config - url: /archive.html - - - titles: - # @start locale config - en : &EN About - en-GB : *EN - en-US : *EN - en-CA : *EN - en-AU : *EN - zh-Hans : &ZH_HANS 关于 - zh : *ZH_HANS - zh-CN : *ZH_HANS - zh-SG : *ZH_HANS - zh-Hant : &ZH_HANT 關於 - zh-TW : *ZH_HANT - zh-HK : *ZH_HANT - ko : &KO 소개 - ko-KR : *KO - fr : &FR À propos - fr-BE : *FR - fr-CA : *FR - fr-CH : *FR - fr-FR : *FR - fr-LU : *FR - tr : &TR Hakkında - # @end locale config - url: /about.html diff --git a/test/_data/variables.yml b/test/_data/variables.yml deleted file mode 100644 index 43aa3aaf4fe..00000000000 --- a/test/_data/variables.yml +++ /dev/null @@ -1,64 +0,0 @@ -default: - text_skin: default - highlight_theme: default - lang: en - paths: - root: / - home: / - archive: /archive.html - rss: /feed.xml - mathjax: false - mathjax_autoNumber: false - mermaid: false - chart: false - toc: - selectors: 'h1,h2,h3' - sources: bootcdn - - page: - mode: normal - type: webpage - article_header: - align: left - theme: light - articles: - show_cover: true - show_excerpt: false - show_readmore: false - show_info: false - show_title: true - show_edit_on_github: false - show_date: true - show_tags: true - show_author_profile: false - show_subscribe: false - full_width: false - sharing: false - comment: true - license: false - pageview: false - search: default - -sources: - bootcdn: - font_awesome: 'https://cdn.bootcdn.net/ajax/libs/font-awesome/5.15.1/css/all.css' - jquery: 'https://cdn.bootcss.com/jquery/3.1.1/jquery.min.js' - leancloud_js_sdk: '//cdn.jsdelivr.net/npm/leancloud-storage@3.13.2/dist/av-min.js' - chart: 'https://cdn.bootcss.com/Chart.js/2.7.2/Chart.bundle.min.js' - gitalk: - js: 'https://cdn.bootcss.com/gitalk/1.2.2/gitalk.min.js' - css: 'https://cdn.bootcss.com/gitalk/1.2.2/gitalk.min.css' - valine: 'https://unpkg.com/valine/dist/Valine.min.js' # bootcdn not available - mathjax: 'https://cdn.bootcss.com/mathjax/2.7.4/MathJax.js?config=TeX-MML-AM_CHTML' - mermaid: 'https://cdn.bootcss.com/mermaid/8.0.0-rc.8/mermaid.min.js' - unpkg: - font_awesome: 'https://use.fontawesome.com/releases/v5.15.1/css/all.css' - jquery: 'https://unpkg.com/jquery@3.3.1/dist/jquery.min.js' - leancloud_js_sdk: '//cdn.jsdelivr.net/npm/leancloud-storage@3.13.2/dist/av-min.js' - chart: 'https://unpkg.com/chart.js@2.7.2/dist/Chart.min.js' - gitalk: - js: 'https://unpkg.com/gitalk@1.2.2/dist/gitalk.min.js' - css: 'https://unpkg.com/gitalk@1.2.2/dist/gitalk.css' - valine: 'https//unpkg.com/valine/dist/Valine.min.js' - mathjax: 'https://unpkg.com/mathjax@2.7.4/unpacked/MathJax.js?config=TeX-MML-AM_CHTML' - mermaid: 'https://unpkg.com/mermaid@8.0.0-rc.8/dist/mermaid.min.js' diff --git a/test/_posts/2018-07-01-welcome.md b/test/_posts/2018-07-01-welcome.md deleted file mode 100644 index e9dbd54b56d..00000000000 --- a/test/_posts/2018-07-01-welcome.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: Welcome -tags: TeXt ---- - -If you see this page, that means you have setup your site. enjoy! :ghost: :ghost: :ghost: - -You may want to [config the site](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/configuration) or [writing a post](https://kitian616.github.io/jekyll-TeXt-theme/docs/en/writing-posts) next. Please feel free to [create an issue](https://github.com/kitian616/jekyll-TeXt-theme/issues) or [send me an email](mailto:kitian616@outlook.com) if you have any questions. - - - ---- - -If you like TeXt, don't forget to give me a star. :star2: - -[![Star This Project](https://img.shields.io/github/stars/kitian616/jekyll-TeXt-theme.svg?label=Stars&style=social)](https://github.com/kitian616/jekyll-TeXt-theme/) diff --git a/test/about.md b/test/about.md deleted file mode 100644 index 13845b73344..00000000000 --- a/test/about.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: article -titles: - en : &EN About - en-GB : *EN - en-US : *EN - en-CA : *EN - en-AU : *EN - zh-Hans : &ZH_HANS 关于 - zh : *ZH_HANS - zh-CN : *ZH_HANS - zh-SG : *ZH_HANS - zh-Hant : &ZH_HANT 關於 - zh-TW : *ZH_HANT - zh-HK : *ZH_HANT - ko : &KO 소개 - ko-KR : *KO -key: page-about ---- - -Just say something about yourself. :+1: - -{% highlight javascript %} -(() => console.log('hello, world!'))(); -{% endhighlight %} diff --git a/test/archive.html b/test/archive.html deleted file mode 100644 index 89dc810eadb..00000000000 --- a/test/archive.html +++ /dev/null @@ -1,3 +0,0 @@ ---- -layout: archive ---- diff --git a/test/index.html b/test/index.html deleted file mode 100644 index 989857ffdce..00000000000 --- a/test/index.html +++ /dev/null @@ -1,5 +0,0 @@ ---- -layout: home -# articles: -# excerpt_type: html ---- diff --git a/tools/assert-url.js b/tools/assert-url.js deleted file mode 100644 index c81ad6c3618..00000000000 --- a/tools/assert-url.js +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env node -var path = require('path'); -var fs = require('fs'); - -var imgRg = /!\[([^\]]*)\]\((\/[^/]\S*)\)/gm; -var basePath = 'https://raw.githubusercontent.com/kitian616/jekyll-TeXt-theme/master'; -var srcPaths = ['./test/_posts', './docs/en', './docs/zh']; - -function runner() { - srcPaths.forEach(function(srcPath) { - fs.readdir(srcPath, function(err, files) { - files.forEach(function(file) { - var curPath = srcPath + '/' + file; - fs.stat(curPath, function(err, stat) { - if (stat.isFile() && path.extname(curPath) === '.md') { - fs.readFile(curPath, 'utf8', function(err, data) { - if (err) throw err; - data = assertUrl(data); - fs.writeFile(curPath, data, 'utf8', function(err) { - if (err) throw err; - }); - }); - } - }); - }); - }); - }); -} - - -function assertUrl(content) { - return content.replace(imgRg, '![$1](' + basePath + '$2)'); -} - -runner(); diff --git a/tools/diff.sh b/tools/diff.sh deleted file mode 100644 index 503f7075b08..00000000000 --- a/tools/diff.sh +++ /dev/null @@ -1,5 +0,0 @@ -Diffmerge ./_config.yml ./docs/_config.yml ./docs/_config.dev.yml -Diffmerge ./_config.yml ./test/_config.yml - -Diffmerge ./_data/ ./docs/_data/ -Diffmerge ./_data/ ./test/_data diff --git a/tools/dir-tree.sh b/tools/dir-tree.sh deleted file mode 100644 index 5297ed99d33..00000000000 --- a/tools/dir-tree.sh +++ /dev/null @@ -1 +0,0 @@ -tree -I '.*|_site|docs|node_modules|screenshots|test|Gemfile.lock|*.gem|CHANGELOG.md|HOW_TO_RELEASE.md|LICENSE|README*|screenshot.*' --dirsfirst diff --git a/update.sh b/update.sh deleted file mode 100755 index feca9ee3192..00000000000 --- a/update.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -uNames=`uname -s` -echo $uNames -osName=${uNames:0:4} # Linux 需要用 bash update.sh 否则会报错: ./update.sh: 5: Bad substitution -if [ "$osName" == "Darw" ] # Darwin -then - echo "Mac OS X" - - # sed -i '' -e 's/.\/debfiles\//.\/iosre\/debfiles\//g' ./Packages; # macOS - - -elif [ "$osName" == "Linu" ] # Linux -then - # echo "GNU/Linux" - - apt-ftparchive packages ./debfiles/ > ./Packages; - #sed -i -e '/^SHA/d' ./Packages; - # sed -i -e 's/.\/debfiles\//.\/iosre\/debfiles\//g' ./Packages # Linux - bzip2 -c9k ./Packages > ./Packages.bz2; - printf "Origin: codwam's Repo\nLabel: codwam\nSuite: stable\nVersion: 1.0\nCodename: codwam\nArchitecture: iphoneos-arm\nComponents: main\nDescription: codwam's Tweaks\nMD5Sum:\n "$(cat ./Packages | md5sum | cut -d ' ' -f 1)" "$(stat ./Packages --printf="%s")" Packages\n "$(cat ./Packages.bz2 | md5sum | cut -d ' ' -f 1)" "$(stat ./Packages.bz2 --printf="%s")" Packages.bz2\n" >Release; - ls ./debfiles/ -t | grep '.deb' | perl -e 'use JSON; @in=grep(s/\n$//, <>); $count=0; foreach $fileNow (@in) { $fileNow = "./debfiles/$fileNow"; $size = -s $fileNow; $debInfo = `dpkg -f $fileNow`; $section = `echo "$debInfo" | grep "Section: " | cut -c 10- | tr -d "\n\r"`; $name= `echo "$debInfo" | grep "Name: " | cut -c 7- | tr -d "\n\r"`; $version= `echo "$debInfo" | grep "Version: " | cut -c 10- | tr -d "\n\r"`; $package= `echo "$debInfo" | grep "Package: " | cut -c 10- | tr -d "\n\r"`; $time= `date -r $fileNow +%s | tr -d "\n\r"`; @in[$count] = {section=>$section, package=>$package, version=>$version, size=>$size+0, time=>$time+0, name=>$name}; $count++; } print encode_json(\@in)."\n";' > all.packages; -elif [ "$osName" == "MING" ] # MINGW, windows, git-bash -then - # echo "Windows, git-bash" - echo "Not suppport"; -else - # echo "unknown os" - echo "Not suppport"; -fi - -exit 0;