├── .gitignore ├── AM0200 ├── 404.php ├── Gruntfile.js ├── LICENSE ├── README.md ├── attachment.php ├── css │ ├── am0200.css │ ├── base.css │ ├── font.css │ └── icon.css ├── functions.php ├── header.php ├── images │ └── favicon.png ├── index.php ├── js │ ├── am0200.js │ ├── basket.js │ ├── function.js │ ├── jquery.js │ └── plugin.js ├── package.json ├── screenshot.png └── style.css ├── LICENSE ├── README.md ├── anguli ├── 404.php ├── attachment.php ├── author.php ├── bak │ ├── icomoon.zip │ └── logo.psd ├── comment-box.php ├── font │ └── zzgf.css ├── footer.php ├── functions.php ├── header.php ├── index.php ├── js │ ├── anguli.js │ ├── basket.full.min-0.0.3.js │ ├── jquery.min.js │ ├── plugin.js │ └── swf │ │ └── soundmanager2.swf ├── post-gallery.php ├── post-image.php ├── post-standard.php ├── related.php ├── screenshot.png ├── single.php ├── social.php ├── style.css ├── template-feedback.php └── template-links.php ├── anguli2 ├── 404.php ├── blank.gif ├── comments.php ├── fancybox_buttons.png ├── fancybox_loading.gif ├── fancybox_overlay.png ├── fancybox_sprite.png ├── footer.php ├── functions.php ├── header.php ├── images │ ├── ajax.gif │ ├── body_bg.jpg │ ├── logo.png │ ├── mag_glass.png │ ├── pic_bg.jpg │ └── s-png.png ├── index.php ├── js │ ├── html5.js │ ├── jquery.min.js │ └── scripts.js ├── page.php ├── screenshot.png ├── single.php └── style.css ├── anguli3 ├── 404.php ├── ajax.gif ├── blank.gif ├── comments.php ├── custom-header.php ├── fancybox_buttons.png ├── fancybox_overlay.png ├── fancybox_sprite.png ├── footer.php ├── functions.php ├── header.php ├── images │ ├── arrow_left.png │ ├── arrow_right.png │ ├── close.png │ ├── forimg.png │ ├── linkto.png │ ├── logo.png │ ├── logomin.png │ ├── mag_glass.png │ ├── menu.png │ ├── nextpost.png │ ├── nextposth.png │ ├── pat.jpg │ ├── prepost.png │ ├── preposth.png │ ├── sicon.png │ └── view_like.png ├── index.php ├── js │ ├── anguli.js │ ├── history.js │ ├── html5.js │ ├── imagesloaded.pkgd.min.js │ ├── jquery.min.js │ ├── plugins.js │ └── responsiveslides.min.js ├── page.php ├── post-gallery.php ├── post-image.php ├── post-standard.php ├── screenshot.png ├── sidebar.php ├── single.php ├── style.css ├── template-feedback.php └── thumb │ └── timthumb.php └── console ├── .gitignore ├── 404.php ├── LICENSE ├── README.md ├── attachment.php ├── comment-box.php ├── fonts ├── icomoon.eot ├── icomoon.svg ├── icomoon.ttf ├── icomoon.woff └── icomoon.zip ├── footer.php ├── functions.php ├── header.php ├── images ├── icon.png ├── logo.png └── logo.psd ├── index.php ├── js ├── highlight.min.js ├── jquery.bxslider.min.js ├── jquery.min.js ├── jquery.scrollTo.min.js ├── plugin.js └── scripts.js ├── page.php ├── screenshot.png ├── single.php ├── slider.php ├── social.php └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | *.swp 3 | *.log 4 | *~ 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /AM0200/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/404.php -------------------------------------------------------------------------------- /AM0200/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/Gruntfile.js -------------------------------------------------------------------------------- /AM0200/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/LICENSE -------------------------------------------------------------------------------- /AM0200/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/README.md -------------------------------------------------------------------------------- /AM0200/attachment.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AM0200/css/am0200.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/css/am0200.css -------------------------------------------------------------------------------- /AM0200/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/css/base.css -------------------------------------------------------------------------------- /AM0200/css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/css/font.css -------------------------------------------------------------------------------- /AM0200/css/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/css/icon.css -------------------------------------------------------------------------------- /AM0200/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/functions.php -------------------------------------------------------------------------------- /AM0200/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/header.php -------------------------------------------------------------------------------- /AM0200/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/images/favicon.png -------------------------------------------------------------------------------- /AM0200/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/index.php -------------------------------------------------------------------------------- /AM0200/js/am0200.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/js/am0200.js -------------------------------------------------------------------------------- /AM0200/js/basket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/js/basket.js -------------------------------------------------------------------------------- /AM0200/js/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/js/function.js -------------------------------------------------------------------------------- /AM0200/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/js/jquery.js -------------------------------------------------------------------------------- /AM0200/js/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/js/plugin.js -------------------------------------------------------------------------------- /AM0200/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/package.json -------------------------------------------------------------------------------- /AM0200/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/screenshot.png -------------------------------------------------------------------------------- /AM0200/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/AM0200/style.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/README.md -------------------------------------------------------------------------------- /anguli/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/404.php -------------------------------------------------------------------------------- /anguli/attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/attachment.php -------------------------------------------------------------------------------- /anguli/author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/author.php -------------------------------------------------------------------------------- /anguli/bak/icomoon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/bak/icomoon.zip -------------------------------------------------------------------------------- /anguli/bak/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/bak/logo.psd -------------------------------------------------------------------------------- /anguli/comment-box.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/comment-box.php -------------------------------------------------------------------------------- /anguli/font/zzgf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/font/zzgf.css -------------------------------------------------------------------------------- /anguli/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/footer.php -------------------------------------------------------------------------------- /anguli/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/functions.php -------------------------------------------------------------------------------- /anguli/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/header.php -------------------------------------------------------------------------------- /anguli/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/index.php -------------------------------------------------------------------------------- /anguli/js/anguli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/js/anguli.js -------------------------------------------------------------------------------- /anguli/js/basket.full.min-0.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/js/basket.full.min-0.0.3.js -------------------------------------------------------------------------------- /anguli/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/js/jquery.min.js -------------------------------------------------------------------------------- /anguli/js/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/js/plugin.js -------------------------------------------------------------------------------- /anguli/js/swf/soundmanager2.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/js/swf/soundmanager2.swf -------------------------------------------------------------------------------- /anguli/post-gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/post-gallery.php -------------------------------------------------------------------------------- /anguli/post-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/post-image.php -------------------------------------------------------------------------------- /anguli/post-standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/post-standard.php -------------------------------------------------------------------------------- /anguli/related.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/related.php -------------------------------------------------------------------------------- /anguli/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/screenshot.png -------------------------------------------------------------------------------- /anguli/single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/single.php -------------------------------------------------------------------------------- /anguli/social.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/social.php -------------------------------------------------------------------------------- /anguli/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/style.css -------------------------------------------------------------------------------- /anguli/template-feedback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/template-feedback.php -------------------------------------------------------------------------------- /anguli/template-links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli/template-links.php -------------------------------------------------------------------------------- /anguli2/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/404.php -------------------------------------------------------------------------------- /anguli2/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/blank.gif -------------------------------------------------------------------------------- /anguli2/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/comments.php -------------------------------------------------------------------------------- /anguli2/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/fancybox_buttons.png -------------------------------------------------------------------------------- /anguli2/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/fancybox_loading.gif -------------------------------------------------------------------------------- /anguli2/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/fancybox_overlay.png -------------------------------------------------------------------------------- /anguli2/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/fancybox_sprite.png -------------------------------------------------------------------------------- /anguli2/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/footer.php -------------------------------------------------------------------------------- /anguli2/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/functions.php -------------------------------------------------------------------------------- /anguli2/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/header.php -------------------------------------------------------------------------------- /anguli2/images/ajax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/images/ajax.gif -------------------------------------------------------------------------------- /anguli2/images/body_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/images/body_bg.jpg -------------------------------------------------------------------------------- /anguli2/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/images/logo.png -------------------------------------------------------------------------------- /anguli2/images/mag_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/images/mag_glass.png -------------------------------------------------------------------------------- /anguli2/images/pic_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/images/pic_bg.jpg -------------------------------------------------------------------------------- /anguli2/images/s-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/images/s-png.png -------------------------------------------------------------------------------- /anguli2/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/index.php -------------------------------------------------------------------------------- /anguli2/js/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/js/html5.js -------------------------------------------------------------------------------- /anguli2/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/js/jquery.min.js -------------------------------------------------------------------------------- /anguli2/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/js/scripts.js -------------------------------------------------------------------------------- /anguli2/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/page.php -------------------------------------------------------------------------------- /anguli2/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/screenshot.png -------------------------------------------------------------------------------- /anguli2/single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/single.php -------------------------------------------------------------------------------- /anguli2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli2/style.css -------------------------------------------------------------------------------- /anguli3/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/404.php -------------------------------------------------------------------------------- /anguli3/ajax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/ajax.gif -------------------------------------------------------------------------------- /anguli3/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/blank.gif -------------------------------------------------------------------------------- /anguli3/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/comments.php -------------------------------------------------------------------------------- /anguli3/custom-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/custom-header.php -------------------------------------------------------------------------------- /anguli3/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/fancybox_buttons.png -------------------------------------------------------------------------------- /anguli3/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/fancybox_overlay.png -------------------------------------------------------------------------------- /anguli3/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/fancybox_sprite.png -------------------------------------------------------------------------------- /anguli3/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/footer.php -------------------------------------------------------------------------------- /anguli3/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/functions.php -------------------------------------------------------------------------------- /anguli3/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/header.php -------------------------------------------------------------------------------- /anguli3/images/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/arrow_left.png -------------------------------------------------------------------------------- /anguli3/images/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/arrow_right.png -------------------------------------------------------------------------------- /anguli3/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/close.png -------------------------------------------------------------------------------- /anguli3/images/forimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/forimg.png -------------------------------------------------------------------------------- /anguli3/images/linkto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/linkto.png -------------------------------------------------------------------------------- /anguli3/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/logo.png -------------------------------------------------------------------------------- /anguli3/images/logomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/logomin.png -------------------------------------------------------------------------------- /anguli3/images/mag_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/mag_glass.png -------------------------------------------------------------------------------- /anguli3/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/menu.png -------------------------------------------------------------------------------- /anguli3/images/nextpost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/nextpost.png -------------------------------------------------------------------------------- /anguli3/images/nextposth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/nextposth.png -------------------------------------------------------------------------------- /anguli3/images/pat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/pat.jpg -------------------------------------------------------------------------------- /anguli3/images/prepost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/prepost.png -------------------------------------------------------------------------------- /anguli3/images/preposth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/preposth.png -------------------------------------------------------------------------------- /anguli3/images/sicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/sicon.png -------------------------------------------------------------------------------- /anguli3/images/view_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/images/view_like.png -------------------------------------------------------------------------------- /anguli3/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/index.php -------------------------------------------------------------------------------- /anguli3/js/anguli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/js/anguli.js -------------------------------------------------------------------------------- /anguli3/js/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/js/history.js -------------------------------------------------------------------------------- /anguli3/js/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/js/html5.js -------------------------------------------------------------------------------- /anguli3/js/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/js/imagesloaded.pkgd.min.js -------------------------------------------------------------------------------- /anguli3/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/js/jquery.min.js -------------------------------------------------------------------------------- /anguli3/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/js/plugins.js -------------------------------------------------------------------------------- /anguli3/js/responsiveslides.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/js/responsiveslides.min.js -------------------------------------------------------------------------------- /anguli3/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/page.php -------------------------------------------------------------------------------- /anguli3/post-gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/post-gallery.php -------------------------------------------------------------------------------- /anguli3/post-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/post-image.php -------------------------------------------------------------------------------- /anguli3/post-standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/post-standard.php -------------------------------------------------------------------------------- /anguli3/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/screenshot.png -------------------------------------------------------------------------------- /anguli3/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/sidebar.php -------------------------------------------------------------------------------- /anguli3/single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/single.php -------------------------------------------------------------------------------- /anguli3/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/style.css -------------------------------------------------------------------------------- /anguli3/template-feedback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/template-feedback.php -------------------------------------------------------------------------------- /anguli3/thumb/timthumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/anguli3/thumb/timthumb.php -------------------------------------------------------------------------------- /console/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /console/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/404.php -------------------------------------------------------------------------------- /console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/LICENSE -------------------------------------------------------------------------------- /console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/README.md -------------------------------------------------------------------------------- /console/attachment.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /console/comment-box.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/comment-box.php -------------------------------------------------------------------------------- /console/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/fonts/icomoon.eot -------------------------------------------------------------------------------- /console/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/fonts/icomoon.svg -------------------------------------------------------------------------------- /console/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/fonts/icomoon.ttf -------------------------------------------------------------------------------- /console/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/fonts/icomoon.woff -------------------------------------------------------------------------------- /console/fonts/icomoon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/fonts/icomoon.zip -------------------------------------------------------------------------------- /console/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/footer.php -------------------------------------------------------------------------------- /console/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/functions.php -------------------------------------------------------------------------------- /console/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/header.php -------------------------------------------------------------------------------- /console/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/images/icon.png -------------------------------------------------------------------------------- /console/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/images/logo.png -------------------------------------------------------------------------------- /console/images/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/images/logo.psd -------------------------------------------------------------------------------- /console/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/index.php -------------------------------------------------------------------------------- /console/js/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/js/highlight.min.js -------------------------------------------------------------------------------- /console/js/jquery.bxslider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/js/jquery.bxslider.min.js -------------------------------------------------------------------------------- /console/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/js/jquery.min.js -------------------------------------------------------------------------------- /console/js/jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/js/jquery.scrollTo.min.js -------------------------------------------------------------------------------- /console/js/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/js/plugin.js -------------------------------------------------------------------------------- /console/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/js/scripts.js -------------------------------------------------------------------------------- /console/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/page.php -------------------------------------------------------------------------------- /console/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/screenshot.png -------------------------------------------------------------------------------- /console/single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/single.php -------------------------------------------------------------------------------- /console/slider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/slider.php -------------------------------------------------------------------------------- /console/social.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/social.php -------------------------------------------------------------------------------- /console/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoeiFy/Themes/HEAD/console/style.css --------------------------------------------------------------------------------