├── .gitignore ├── Frame 8.png ├── LICENSE.md ├── README.md ├── ajax.php ├── classes ├── BlogCategory.php ├── BlogImageType.php ├── BlogPostCategory.php ├── BlogTag.php ├── Blogcomment.php ├── CaptchaSecurityImages.php ├── SmartBlogHelperTreeCategories.php ├── SmartBlogLicense.php ├── SmartBlogLink.php ├── SmartBlogPost.php ├── controllers │ ├── FrontController.php │ └── index.php ├── index.php └── smartpromotion.php ├── config.xml ├── controllers ├── admin │ ├── AdminAboutUsController.php │ ├── AdminBlogCategoryController.php │ ├── AdminBlogPostController.php │ ├── AdminBlogcommentController.php │ ├── AdminImageType.php │ ├── AdminSmartBlogAjaxController.php │ ├── AdminSmartblogAddonsController.php │ └── index.php ├── front │ ├── archive.php │ ├── archivemonth.php │ ├── category.php │ ├── categorypage.php │ ├── details.php │ ├── index.php │ ├── list.php │ ├── search.php │ └── tagpost.php └── index.php ├── dummy_data ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg └── no.jpg ├── htupdate.php ├── images ├── 5-home-default.jpg ├── 5-home-small.jpg ├── 5-single-default.jpg ├── 5.jpg ├── addons │ ├── smartblogaddthisbutton │ │ └── logo.png │ ├── smartblogarchive │ │ └── logo.png │ ├── smartblogcategories │ │ └── logo.png │ ├── smartblogdisqus │ │ └── logo.png │ ├── smartblogfbcoments │ │ └── logo.png │ ├── smartblogfeed │ │ └── logo.png │ ├── smartbloghomelatestnews │ │ ├── logo.png │ │ ├── smartbloghomelatestnews.php │ │ ├── translations │ │ │ └── bn.php │ │ └── views │ │ │ └── templates │ │ │ └── front │ │ │ ├── install_required.tpl │ │ │ └── smartblog_latest_news.tpl │ ├── smartbloglatestcomments │ │ └── logo.png │ ├── smartblogpopularposts │ │ └── logo.png │ ├── smartblogrecentposts │ │ └── logo.png │ ├── smartblogrelatedposts │ │ └── logo.png │ ├── smartblogrelatedproducts │ │ └── logo.png │ ├── smartblogsearch │ │ └── logo.png │ └── smartblogtag │ │ └── logo.png ├── avatar │ ├── avatar-author-default.jpg │ ├── avatar.jpg │ ├── index.php │ ├── no-author-default.jpg │ └── no.jpg ├── category │ └── index.php ├── classy-devs.svg ├── crazy-banner-main.png ├── index.php ├── loader.gif ├── module_logo.png ├── no-home-default.jpg ├── no-home-small.jpg ├── no-single-default.jpg ├── no.jpg ├── slider-rev-banner-2.png └── smart-logo.png ├── index.php ├── logo.gif ├── logo.png ├── myshop_multipurpose_prestashop_theme_free.jpeg ├── smartblog-addons-for-crazyelements-page-builder.png ├── smartblog.php ├── sql ├── addhook.php ├── index.php ├── install-removed.php ├── install.php ├── install_tab.php ├── uninstall.php └── uninstall_tab.php ├── upgrade ├── index.php ├── install-3.0.2.php └── install-3.0.3.php └── views ├── css ├── admin.css ├── bootstrap-grid.css ├── fw.css ├── index.php └── smartblogstyle.css ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fontawesome-webfont.woff2 ├── index.php └── monofont.ttf ├── img ├── index.php └── message-news.png ├── index.php ├── js ├── addons.js ├── index.php ├── tree.js └── update.js └── templates ├── admin ├── aboutus.tpl ├── addjs.tpl ├── blog_post │ ├── helpers │ │ ├── form │ │ │ ├── form.tpl │ │ │ ├── images.tpl │ │ │ └── index.php │ │ ├── index.php │ │ └── uploader │ │ │ ├── ajax.tpl │ │ │ ├── index.php │ │ │ └── simple.tpl │ └── index.php ├── breadcrumb.tpl ├── form.tpl ├── helpers │ ├── index.php │ └── tree │ │ ├── index.php │ │ ├── subtree_associated_categories.tpl │ │ ├── tree_associated_categories.tpl │ │ ├── tree_associated_header.tpl │ │ ├── tree_node_folder_checkbox.tpl │ │ ├── tree_node_item_checkbox.tpl │ │ └── tree_toolbar.tpl ├── index.php └── promotion.tpl ├── front ├── archivecategory.tpl ├── category_loop.tpl ├── comment_loop.tpl ├── index.php ├── plugins │ ├── blogfeedheader.tpl │ ├── index.php │ ├── smartblog_latest_news.tpl │ └── smartproduct_tab.tpl ├── postcategory.tpl ├── posts.tpl ├── search-not-found.tpl ├── searchresult.tpl └── tagresult.tpl └── index.php /.gitignore: -------------------------------------------------------------------------------- 1 | images.zip 2 | -------------------------------------------------------------------------------- /Frame 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/Frame 8.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/README.md -------------------------------------------------------------------------------- /ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/ajax.php -------------------------------------------------------------------------------- /classes/BlogCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/classes/BlogCategory.php -------------------------------------------------------------------------------- /classes/BlogImageType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/classes/BlogImageType.php -------------------------------------------------------------------------------- /classes/BlogPostCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/classes/BlogPostCategory.php -------------------------------------------------------------------------------- /classes/BlogTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/classes/BlogTag.php -------------------------------------------------------------------------------- /classes/Blogcomment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/classes/Blogcomment.php -------------------------------------------------------------------------------- /classes/CaptchaSecurityImages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/classes/CaptchaSecurityImages.php -------------------------------------------------------------------------------- /classes/SmartBlogHelperTreeCategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/classes/SmartBlogHelperTreeCategories.php -------------------------------------------------------------------------------- /classes/SmartBlogLicense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/classes/SmartBlogLicense.php -------------------------------------------------------------------------------- /classes/SmartBlogLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/classes/SmartBlogLink.php -------------------------------------------------------------------------------- /classes/SmartBlogPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/classes/SmartBlogPost.php -------------------------------------------------------------------------------- /classes/controllers/FrontController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/classes/controllers/FrontController.php -------------------------------------------------------------------------------- /classes/controllers/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/classes/controllers/index.php -------------------------------------------------------------------------------- /classes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/classes/index.php -------------------------------------------------------------------------------- /classes/smartpromotion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/classes/smartpromotion.php -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/config.xml -------------------------------------------------------------------------------- /controllers/admin/AdminAboutUsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/admin/AdminAboutUsController.php -------------------------------------------------------------------------------- /controllers/admin/AdminBlogCategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/admin/AdminBlogCategoryController.php -------------------------------------------------------------------------------- /controllers/admin/AdminBlogPostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/admin/AdminBlogPostController.php -------------------------------------------------------------------------------- /controllers/admin/AdminBlogcommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/admin/AdminBlogcommentController.php -------------------------------------------------------------------------------- /controllers/admin/AdminImageType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/admin/AdminImageType.php -------------------------------------------------------------------------------- /controllers/admin/AdminSmartBlogAjaxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/admin/AdminSmartBlogAjaxController.php -------------------------------------------------------------------------------- /controllers/admin/AdminSmartblogAddonsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/admin/AdminSmartblogAddonsController.php -------------------------------------------------------------------------------- /controllers/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/admin/index.php -------------------------------------------------------------------------------- /controllers/front/archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/front/archive.php -------------------------------------------------------------------------------- /controllers/front/archivemonth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/front/archivemonth.php -------------------------------------------------------------------------------- /controllers/front/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/front/category.php -------------------------------------------------------------------------------- /controllers/front/categorypage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/front/categorypage.php -------------------------------------------------------------------------------- /controllers/front/details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/front/details.php -------------------------------------------------------------------------------- /controllers/front/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/front/index.php -------------------------------------------------------------------------------- /controllers/front/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/front/list.php -------------------------------------------------------------------------------- /controllers/front/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/front/search.php -------------------------------------------------------------------------------- /controllers/front/tagpost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/front/tagpost.php -------------------------------------------------------------------------------- /controllers/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/controllers/index.php -------------------------------------------------------------------------------- /dummy_data/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/dummy_data/1.jpg -------------------------------------------------------------------------------- /dummy_data/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/dummy_data/2.jpg -------------------------------------------------------------------------------- /dummy_data/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/dummy_data/3.jpg -------------------------------------------------------------------------------- /dummy_data/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/dummy_data/4.jpg -------------------------------------------------------------------------------- /dummy_data/no.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/dummy_data/no.jpg -------------------------------------------------------------------------------- /htupdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/htupdate.php -------------------------------------------------------------------------------- /images/5-home-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/5-home-default.jpg -------------------------------------------------------------------------------- /images/5-home-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/5-home-small.jpg -------------------------------------------------------------------------------- /images/5-single-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/5-single-default.jpg -------------------------------------------------------------------------------- /images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/5.jpg -------------------------------------------------------------------------------- /images/addons/smartblogaddthisbutton/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartblogaddthisbutton/logo.png -------------------------------------------------------------------------------- /images/addons/smartblogarchive/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartblogarchive/logo.png -------------------------------------------------------------------------------- /images/addons/smartblogcategories/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartblogcategories/logo.png -------------------------------------------------------------------------------- /images/addons/smartblogdisqus/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartblogdisqus/logo.png -------------------------------------------------------------------------------- /images/addons/smartblogfbcoments/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartblogfbcoments/logo.png -------------------------------------------------------------------------------- /images/addons/smartblogfeed/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartblogfeed/logo.png -------------------------------------------------------------------------------- /images/addons/smartbloghomelatestnews/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartbloghomelatestnews/logo.png -------------------------------------------------------------------------------- /images/addons/smartbloghomelatestnews/smartbloghomelatestnews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartbloghomelatestnews/smartbloghomelatestnews.php -------------------------------------------------------------------------------- /images/addons/smartbloghomelatestnews/translations/bn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartbloghomelatestnews/translations/bn.php -------------------------------------------------------------------------------- /images/addons/smartbloghomelatestnews/views/templates/front/install_required.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartbloghomelatestnews/views/templates/front/install_required.tpl -------------------------------------------------------------------------------- /images/addons/smartbloghomelatestnews/views/templates/front/smartblog_latest_news.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartbloghomelatestnews/views/templates/front/smartblog_latest_news.tpl -------------------------------------------------------------------------------- /images/addons/smartbloglatestcomments/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartbloglatestcomments/logo.png -------------------------------------------------------------------------------- /images/addons/smartblogpopularposts/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartblogpopularposts/logo.png -------------------------------------------------------------------------------- /images/addons/smartblogrecentposts/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartblogrecentposts/logo.png -------------------------------------------------------------------------------- /images/addons/smartblogrelatedposts/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartblogrelatedposts/logo.png -------------------------------------------------------------------------------- /images/addons/smartblogrelatedproducts/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartblogrelatedproducts/logo.png -------------------------------------------------------------------------------- /images/addons/smartblogsearch/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartblogsearch/logo.png -------------------------------------------------------------------------------- /images/addons/smartblogtag/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/addons/smartblogtag/logo.png -------------------------------------------------------------------------------- /images/avatar/avatar-author-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/avatar/avatar-author-default.jpg -------------------------------------------------------------------------------- /images/avatar/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/avatar/avatar.jpg -------------------------------------------------------------------------------- /images/avatar/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/avatar/index.php -------------------------------------------------------------------------------- /images/avatar/no-author-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/avatar/no-author-default.jpg -------------------------------------------------------------------------------- /images/avatar/no.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/avatar/no.jpg -------------------------------------------------------------------------------- /images/category/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/category/index.php -------------------------------------------------------------------------------- /images/classy-devs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/classy-devs.svg -------------------------------------------------------------------------------- /images/crazy-banner-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/crazy-banner-main.png -------------------------------------------------------------------------------- /images/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/index.php -------------------------------------------------------------------------------- /images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/loader.gif -------------------------------------------------------------------------------- /images/module_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/module_logo.png -------------------------------------------------------------------------------- /images/no-home-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/no-home-default.jpg -------------------------------------------------------------------------------- /images/no-home-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/no-home-small.jpg -------------------------------------------------------------------------------- /images/no-single-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/no-single-default.jpg -------------------------------------------------------------------------------- /images/no.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/no.jpg -------------------------------------------------------------------------------- /images/slider-rev-banner-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/slider-rev-banner-2.png -------------------------------------------------------------------------------- /images/smart-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/images/smart-logo.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/index.php -------------------------------------------------------------------------------- /logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/logo.gif -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/logo.png -------------------------------------------------------------------------------- /myshop_multipurpose_prestashop_theme_free.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/myshop_multipurpose_prestashop_theme_free.jpeg -------------------------------------------------------------------------------- /smartblog-addons-for-crazyelements-page-builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/smartblog-addons-for-crazyelements-page-builder.png -------------------------------------------------------------------------------- /smartblog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/smartblog.php -------------------------------------------------------------------------------- /sql/addhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/sql/addhook.php -------------------------------------------------------------------------------- /sql/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/sql/index.php -------------------------------------------------------------------------------- /sql/install-removed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/sql/install-removed.php -------------------------------------------------------------------------------- /sql/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/sql/install.php -------------------------------------------------------------------------------- /sql/install_tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/sql/install_tab.php -------------------------------------------------------------------------------- /sql/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/sql/uninstall.php -------------------------------------------------------------------------------- /sql/uninstall_tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/sql/uninstall_tab.php -------------------------------------------------------------------------------- /upgrade/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/upgrade/index.php -------------------------------------------------------------------------------- /upgrade/install-3.0.2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/upgrade/install-3.0.2.php -------------------------------------------------------------------------------- /upgrade/install-3.0.3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/upgrade/install-3.0.3.php -------------------------------------------------------------------------------- /views/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/css/admin.css -------------------------------------------------------------------------------- /views/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/css/bootstrap-grid.css -------------------------------------------------------------------------------- /views/css/fw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/css/fw.css -------------------------------------------------------------------------------- /views/css/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/css/index.php -------------------------------------------------------------------------------- /views/css/smartblogstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/css/smartblogstyle.css -------------------------------------------------------------------------------- /views/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /views/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /views/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /views/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /views/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /views/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /views/fonts/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/fonts/index.php -------------------------------------------------------------------------------- /views/fonts/monofont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/fonts/monofont.ttf -------------------------------------------------------------------------------- /views/img/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/img/index.php -------------------------------------------------------------------------------- /views/img/message-news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/img/message-news.png -------------------------------------------------------------------------------- /views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/index.php -------------------------------------------------------------------------------- /views/js/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/js/addons.js -------------------------------------------------------------------------------- /views/js/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/js/index.php -------------------------------------------------------------------------------- /views/js/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/js/tree.js -------------------------------------------------------------------------------- /views/js/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/js/update.js -------------------------------------------------------------------------------- /views/templates/admin/aboutus.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/templates/admin/addjs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/addjs.tpl -------------------------------------------------------------------------------- /views/templates/admin/blog_post/helpers/form/form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/blog_post/helpers/form/form.tpl -------------------------------------------------------------------------------- /views/templates/admin/blog_post/helpers/form/images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/blog_post/helpers/form/images.tpl -------------------------------------------------------------------------------- /views/templates/admin/blog_post/helpers/form/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/blog_post/helpers/form/index.php -------------------------------------------------------------------------------- /views/templates/admin/blog_post/helpers/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/blog_post/helpers/index.php -------------------------------------------------------------------------------- /views/templates/admin/blog_post/helpers/uploader/ajax.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/blog_post/helpers/uploader/ajax.tpl -------------------------------------------------------------------------------- /views/templates/admin/blog_post/helpers/uploader/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/blog_post/helpers/uploader/index.php -------------------------------------------------------------------------------- /views/templates/admin/blog_post/helpers/uploader/simple.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/blog_post/helpers/uploader/simple.tpl -------------------------------------------------------------------------------- /views/templates/admin/blog_post/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/blog_post/index.php -------------------------------------------------------------------------------- /views/templates/admin/breadcrumb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/breadcrumb.tpl -------------------------------------------------------------------------------- /views/templates/admin/form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/form.tpl -------------------------------------------------------------------------------- /views/templates/admin/helpers/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/helpers/index.php -------------------------------------------------------------------------------- /views/templates/admin/helpers/tree/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/helpers/tree/index.php -------------------------------------------------------------------------------- /views/templates/admin/helpers/tree/subtree_associated_categories.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/helpers/tree/subtree_associated_categories.tpl -------------------------------------------------------------------------------- /views/templates/admin/helpers/tree/tree_associated_categories.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/helpers/tree/tree_associated_categories.tpl -------------------------------------------------------------------------------- /views/templates/admin/helpers/tree/tree_associated_header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/helpers/tree/tree_associated_header.tpl -------------------------------------------------------------------------------- /views/templates/admin/helpers/tree/tree_node_folder_checkbox.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/helpers/tree/tree_node_folder_checkbox.tpl -------------------------------------------------------------------------------- /views/templates/admin/helpers/tree/tree_node_item_checkbox.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/helpers/tree/tree_node_item_checkbox.tpl -------------------------------------------------------------------------------- /views/templates/admin/helpers/tree/tree_toolbar.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/helpers/tree/tree_toolbar.tpl -------------------------------------------------------------------------------- /views/templates/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/index.php -------------------------------------------------------------------------------- /views/templates/admin/promotion.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/admin/promotion.tpl -------------------------------------------------------------------------------- /views/templates/front/archivecategory.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/front/archivecategory.tpl -------------------------------------------------------------------------------- /views/templates/front/category_loop.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/front/category_loop.tpl -------------------------------------------------------------------------------- /views/templates/front/comment_loop.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/front/comment_loop.tpl -------------------------------------------------------------------------------- /views/templates/front/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/front/index.php -------------------------------------------------------------------------------- /views/templates/front/plugins/blogfeedheader.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/front/plugins/blogfeedheader.tpl -------------------------------------------------------------------------------- /views/templates/front/plugins/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/front/plugins/index.php -------------------------------------------------------------------------------- /views/templates/front/plugins/smartblog_latest_news.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/front/plugins/smartblog_latest_news.tpl -------------------------------------------------------------------------------- /views/templates/front/plugins/smartproduct_tab.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/templates/front/postcategory.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/front/postcategory.tpl -------------------------------------------------------------------------------- /views/templates/front/posts.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/front/posts.tpl -------------------------------------------------------------------------------- /views/templates/front/search-not-found.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/front/search-not-found.tpl -------------------------------------------------------------------------------- /views/templates/front/searchresult.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/front/searchresult.tpl -------------------------------------------------------------------------------- /views/templates/front/tagresult.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/front/tagresult.tpl -------------------------------------------------------------------------------- /views/templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdatasoft/smartblog/HEAD/views/templates/index.php --------------------------------------------------------------------------------