├── 404.php ├── LICENSE ├── README.md ├── archive.php ├── comments.php ├── css ├── bootstrap.min.css ├── bootstrap.min.css.map ├── font-awesome.min.css ├── hint.min.css ├── jquery.fancybox.min.css └── waxy-main.css ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fontawesome-webfont.woff2 ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── footer.php ├── functions.php ├── header.php ├── img └── loading.gif ├── index.php ├── js ├── bootstrap.min.js ├── jquery.fancybox.min.js ├── jquery.lazyload.min.js ├── jquery.min.js ├── typed.js └── waxy-main.js ├── lib ├── prism │ ├── clipboard.min.js │ ├── css │ │ ├── Coy.css │ │ ├── Dark.css │ │ ├── Default.css │ │ ├── Funky.css │ │ ├── Okaidia.css │ │ ├── SolarizedLight.css │ │ ├── TomorrowNight.css │ │ └── Twilight.css │ └── prism.js └── shortcode.php ├── page.php ├── page_ friends.php ├── page_ friends_mini.php ├── page_articles.php ├── page_sitemap.php ├── page_timeline.php ├── post.php ├── screenshot.png ├── shortcode.php ├── sidebar.php └── waxy_logo.png /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/404.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/README.md -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/archive.php -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/comments.php -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/css/font-awesome.min.css -------------------------------------------------------------------------------- /css/hint.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/css/hint.min.css -------------------------------------------------------------------------------- /css/jquery.fancybox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/css/jquery.fancybox.min.css -------------------------------------------------------------------------------- /css/waxy-main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/css/waxy-main.css -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/footer.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/functions.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/header.php -------------------------------------------------------------------------------- /img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/img/loading.gif -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/index.php -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/jquery.fancybox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/js/jquery.fancybox.min.js -------------------------------------------------------------------------------- /js/jquery.lazyload.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/js/jquery.lazyload.min.js -------------------------------------------------------------------------------- /js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/js/jquery.min.js -------------------------------------------------------------------------------- /js/typed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/js/typed.js -------------------------------------------------------------------------------- /js/waxy-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/js/waxy-main.js -------------------------------------------------------------------------------- /lib/prism/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/lib/prism/clipboard.min.js -------------------------------------------------------------------------------- /lib/prism/css/Coy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/lib/prism/css/Coy.css -------------------------------------------------------------------------------- /lib/prism/css/Dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/lib/prism/css/Dark.css -------------------------------------------------------------------------------- /lib/prism/css/Default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/lib/prism/css/Default.css -------------------------------------------------------------------------------- /lib/prism/css/Funky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/lib/prism/css/Funky.css -------------------------------------------------------------------------------- /lib/prism/css/Okaidia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/lib/prism/css/Okaidia.css -------------------------------------------------------------------------------- /lib/prism/css/SolarizedLight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/lib/prism/css/SolarizedLight.css -------------------------------------------------------------------------------- /lib/prism/css/TomorrowNight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/lib/prism/css/TomorrowNight.css -------------------------------------------------------------------------------- /lib/prism/css/Twilight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/lib/prism/css/Twilight.css -------------------------------------------------------------------------------- /lib/prism/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/lib/prism/prism.js -------------------------------------------------------------------------------- /lib/shortcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/lib/shortcode.php -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/page.php -------------------------------------------------------------------------------- /page_ friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/page_ friends.php -------------------------------------------------------------------------------- /page_ friends_mini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/page_ friends_mini.php -------------------------------------------------------------------------------- /page_articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/page_articles.php -------------------------------------------------------------------------------- /page_sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/page_sitemap.php -------------------------------------------------------------------------------- /page_timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/page_timeline.php -------------------------------------------------------------------------------- /post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/post.php -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/screenshot.png -------------------------------------------------------------------------------- /shortcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/shortcode.php -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/sidebar.php -------------------------------------------------------------------------------- /waxy_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingzd1995/typecho-theme-waxy/HEAD/waxy_logo.png --------------------------------------------------------------------------------