├── .gitignore ├── tag.php ├── screenshot.png ├── inc ├── core │ ├── no_category.php │ ├── remove_block.php │ ├── cnpic.php │ ├── nofeed.php │ ├── picalt.php │ ├── pingback.php │ ├── nofollow.php │ ├── ybpql.php │ └── wpbs.php ├── index.php ├── seo.php ├── comment │ ├── app.js │ ├── app.css │ └── main.php ├── widget.php ├── widget │ ├── widget-tags.php │ ├── widget-hotpost.php │ ├── widget-comments.php │ └── widget-author.php ├── thumbnails.php ├── setting.php ├── norm.php └── categories-images.php ├── assets ├── bifont │ └── fonts │ │ ├── bootstrap-icons.woff │ │ └── bootstrap-icons.woff2 ├── js │ └── js.js └── css │ └── fancybox.css ├── sidebar.php ├── page.php ├── functions.php ├── search.php ├── footer.php ├── category.php ├── comments.php ├── excerpt.php ├── index.php ├── header.php ├── 404.php ├── single.php └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /tag.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUiTHEME/Mango/HEAD/screenshot.png -------------------------------------------------------------------------------- /inc/core/no_category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUiTHEME/Mango/HEAD/inc/core/no_category.php -------------------------------------------------------------------------------- /assets/bifont/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUiTHEME/Mango/HEAD/assets/bifont/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /assets/bifont/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUiTHEME/Mango/HEAD/assets/bifont/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /inc/core/remove_block.php: -------------------------------------------------------------------------------- 1 | 2 |