├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── assets ├── css │ ├── images │ │ ├── arrow.svg │ │ ├── close.svg │ │ └── spinner.svg │ ├── main.css │ └── noscript.css ├── img │ ├── 20200212-38ce26bb0bd0d.gif │ ├── 20200212-6dafa53ecf4e3.gif │ ├── 20200212-e056a5f2914d6.gif │ ├── loading.gif │ └── police.png ├── js │ ├── breakpoints.min.js │ ├── browser.min.js │ ├── jquery.js │ ├── jquery.lazyload.js │ ├── jquery.min.js │ ├── jquery.poptrox.min.js │ ├── main.js │ └── util.js ├── sass │ ├── base │ │ ├── _page.scss │ │ ├── _reset.scss │ │ └── _typography.scss │ ├── components │ │ ├── _actions.scss │ │ ├── _button.scss │ │ ├── _form.scss │ │ ├── _icon.scss │ │ ├── _icons.scss │ │ ├── _list.scss │ │ ├── _panel.scss │ │ ├── _poptrox-popup.scss │ │ └── _table.scss │ ├── layout │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _main.scss │ │ └── _wrapper.scss │ ├── libs │ │ ├── _breakpoints.scss │ │ ├── _functions.scss │ │ ├── _mixins.scss │ │ ├── _vars.scss │ │ └── _vendor.scss │ ├── main.scss │ └── noscript.scss └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── comments.php ├── functions.php ├── index.php ├── info └── timeplus.webp ├── post.php ├── releases.json ├── screenshot.png └── update.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | **/.DS_Store 3 | buildInfo.md 4 | *.sh 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/README_EN.md -------------------------------------------------------------------------------- /assets/css/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/css/images/arrow.svg -------------------------------------------------------------------------------- /assets/css/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/css/images/close.svg -------------------------------------------------------------------------------- /assets/css/images/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/css/images/spinner.svg -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/css/main.css -------------------------------------------------------------------------------- /assets/css/noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/css/noscript.css -------------------------------------------------------------------------------- /assets/img/20200212-38ce26bb0bd0d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/img/20200212-38ce26bb0bd0d.gif -------------------------------------------------------------------------------- /assets/img/20200212-6dafa53ecf4e3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/img/20200212-6dafa53ecf4e3.gif -------------------------------------------------------------------------------- /assets/img/20200212-e056a5f2914d6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/img/20200212-e056a5f2914d6.gif -------------------------------------------------------------------------------- /assets/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/img/loading.gif -------------------------------------------------------------------------------- /assets/img/police.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/img/police.png -------------------------------------------------------------------------------- /assets/js/breakpoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/js/breakpoints.min.js -------------------------------------------------------------------------------- /assets/js/browser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/js/browser.min.js -------------------------------------------------------------------------------- /assets/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/js/jquery.js -------------------------------------------------------------------------------- /assets/js/jquery.lazyload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/js/jquery.lazyload.js -------------------------------------------------------------------------------- /assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/js/jquery.min.js -------------------------------------------------------------------------------- /assets/js/jquery.poptrox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/js/jquery.poptrox.min.js -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/js/util.js -------------------------------------------------------------------------------- /assets/sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/base/_page.scss -------------------------------------------------------------------------------- /assets/sass/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/base/_reset.scss -------------------------------------------------------------------------------- /assets/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/base/_typography.scss -------------------------------------------------------------------------------- /assets/sass/components/_actions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/components/_actions.scss -------------------------------------------------------------------------------- /assets/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/components/_button.scss -------------------------------------------------------------------------------- /assets/sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/components/_form.scss -------------------------------------------------------------------------------- /assets/sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/components/_icon.scss -------------------------------------------------------------------------------- /assets/sass/components/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/components/_icons.scss -------------------------------------------------------------------------------- /assets/sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/components/_list.scss -------------------------------------------------------------------------------- /assets/sass/components/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/components/_panel.scss -------------------------------------------------------------------------------- /assets/sass/components/_poptrox-popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/components/_poptrox-popup.scss -------------------------------------------------------------------------------- /assets/sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/components/_table.scss -------------------------------------------------------------------------------- /assets/sass/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/layout/_footer.scss -------------------------------------------------------------------------------- /assets/sass/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/layout/_header.scss -------------------------------------------------------------------------------- /assets/sass/layout/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/layout/_main.scss -------------------------------------------------------------------------------- /assets/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /assets/sass/libs/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/libs/_breakpoints.scss -------------------------------------------------------------------------------- /assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /assets/sass/libs/_vendor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/libs/_vendor.scss -------------------------------------------------------------------------------- /assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/main.scss -------------------------------------------------------------------------------- /assets/sass/noscript.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/sass/noscript.scss -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/comments.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/functions.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/index.php -------------------------------------------------------------------------------- /info/timeplus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/info/timeplus.webp -------------------------------------------------------------------------------- /post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/post.php -------------------------------------------------------------------------------- /releases.json: -------------------------------------------------------------------------------- 1 | { 2 | "tag_name": "2.18" 3 | } -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/screenshot.png -------------------------------------------------------------------------------- /update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhheo/TimePlus/HEAD/update.md --------------------------------------------------------------------------------