├── views ├── themes │ └── default │ │ ├── _blocks │ │ ├── comment_form.php │ │ ├── about.php │ │ ├── sidemenu.php │ │ ├── author.php │ │ ├── comment_thanks.php │ │ ├── header.php │ │ ├── post_unpublished.php │ │ ├── links.php │ │ ├── tags.php │ │ ├── authors.php │ │ ├── search.php │ │ ├── archives.php │ │ ├── categories.php │ │ ├── comment.php │ │ └── posts.php │ │ ├── tag.php │ │ ├── category.php │ │ ├── index.php │ │ ├── posts.php │ │ ├── authors.php │ │ ├── tags.php │ │ ├── categories.php │ │ ├── archives.php │ │ ├── search.php │ │ ├── author.php │ │ ├── _layouts │ │ └── blog.php │ │ └── post.php ├── _docs │ ├── fuel_blog.php │ ├── blog_helper.php │ ├── links.php │ ├── categories.php │ ├── authors.php │ ├── index.php │ ├── settings.php │ ├── configuration.php │ ├── themes.php │ ├── comments.php │ └── posts.php ├── index.html ├── _admin │ ├── dashboard.php │ └── settings.php └── feed │ ├── rss_posts.php │ └── atom_posts.php ├── fonts ├── VeraBd.ttf ├── arialbd.ttf └── verdanab.ttf ├── assets ├── images │ ├── ico_user.png │ ├── ico_comment.png │ ├── ico_folder_page.png │ ├── ico_table_gear.png │ ├── ico_world_link.png │ └── ico_page_white_edit.png ├── cache │ └── index.html ├── captchas │ └── index.html ├── css │ └── blog.css └── js │ └── comment_reply.js ├── config ├── blog_constants.php ├── index.html ├── blog_routes.php ├── blog_hooks.php ├── blog_fuel_modules.php ├── language_codes.php └── blog.php ├── helpers ├── index.html └── blog_helper.php ├── models ├── index.html ├── Blog_links_model.php ├── Blog_categories_model.php ├── Blog_users_model.php ├── Blog_tags_model.php ├── Blog_comments_model.php └── Blog_posts_model.php ├── controllers ├── index.html ├── Dashboard.php ├── Feed.php ├── Archives.php ├── Authors.php ├── Search.php ├── Tags.php ├── Categories.php └── Blog.php ├── libraries ├── index.html ├── Blog_base_controller.php ├── Captcha.php ├── Akismet.php └── Stopforumspam.php ├── language └── english │ ├── index.html │ └── blog_lang.php ├── install ├── fuel_blog_uninstall.sql ├── install.php ├── fuel_blog_permissions_install.sql ├── upgrade │ ├── fuel_blog_1.1_schema_changes.sql │ └── fuel_blog_1.0_schema_changes.sql ├── fuel_blog_install.sql └── archive │ └── fuel_blog_v.9.3.sql └── README.md /views/themes/default/_blocks/comment_form.php: -------------------------------------------------------------------------------- 1 | =$form?> -------------------------------------------------------------------------------- /views/_docs/fuel_blog.php: -------------------------------------------------------------------------------- 1 | =generate_docs('Fuel_blog', 'libraries', 'blog'); ?> -------------------------------------------------------------------------------- /fonts/VeraBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS-Blog-Module/HEAD/fonts/VeraBd.ttf -------------------------------------------------------------------------------- /fonts/arialbd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS-Blog-Module/HEAD/fonts/arialbd.ttf -------------------------------------------------------------------------------- /fonts/verdanab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS-Blog-Module/HEAD/fonts/verdanab.ttf -------------------------------------------------------------------------------- /views/themes/default/tag.php: -------------------------------------------------------------------------------- 1 |
Directory access is forbidden.
8 | 9 | 10 |