gitextract_gh_o1q4q/ ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── pkg_t3.script.php ├── pkg_t3.xml ├── source/ │ ├── plg_system_t3/ │ │ ├── admin/ │ │ │ ├── bootstrap/ │ │ │ │ ├── css/ │ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ │ └── bootstrap.css │ │ │ │ ├── index.html │ │ │ │ └── js/ │ │ │ │ └── bootstrap.js │ │ │ ├── css/ │ │ │ │ ├── admin-j25.css │ │ │ │ ├── admin-j30.css │ │ │ │ ├── admin.css │ │ │ │ ├── file-manager.css │ │ │ │ └── index.html │ │ │ ├── fonts/ │ │ │ │ ├── fa3/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ └── font-awesome.css │ │ │ │ │ ├── font/ │ │ │ │ │ │ └── FontAwesome.otf │ │ │ │ │ └── less/ │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ ├── core.less │ │ │ │ │ ├── extras.less │ │ │ │ │ ├── font-awesome-ie7.less │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ ├── icons.less │ │ │ │ │ ├── joomla3-compat.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── path.less │ │ │ │ │ └── variables.less │ │ │ │ ├── fa4/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── font-awesome.css │ │ │ │ │ └── fonts/ │ │ │ │ │ └── FontAwesome.otf │ │ │ │ └── glyphicon/ │ │ │ │ └── css/ │ │ │ │ └── glyphicon.css │ │ │ ├── frameworkInfo.php │ │ │ ├── html/ │ │ │ │ └── com_templates/ │ │ │ │ └── style/ │ │ │ │ └── edit.php │ │ │ ├── images/ │ │ │ │ └── index.html │ │ │ ├── index.php │ │ │ ├── js/ │ │ │ │ ├── admin.js │ │ │ │ ├── admin_j4.js │ │ │ │ ├── index.html │ │ │ │ ├── jimgload.js │ │ │ │ ├── jquery-1.x.js │ │ │ │ ├── jquery.noconflict.js │ │ │ │ └── json2.js │ │ │ ├── layout/ │ │ │ │ ├── css/ │ │ │ │ │ ├── layout-preview.css │ │ │ │ │ ├── layout-preview.css.bs3 │ │ │ │ │ └── layout.css │ │ │ │ ├── js/ │ │ │ │ │ └── layout.js │ │ │ │ └── layout.tpl.php │ │ │ ├── megamenu/ │ │ │ │ ├── css/ │ │ │ │ │ └── megamenu.css │ │ │ │ ├── js/ │ │ │ │ │ └── megamenu.js │ │ │ │ └── megamenu.tpl.php │ │ │ ├── plugins/ │ │ │ │ ├── chosen/ │ │ │ │ │ ├── chosen.css │ │ │ │ │ └── chosen.jquery.js │ │ │ │ └── miniColors/ │ │ │ │ ├── jquery.miniColors.css │ │ │ │ └── jquery.miniColors.js │ │ │ ├── thememagic/ │ │ │ │ ├── css/ │ │ │ │ │ └── thememagic.css │ │ │ │ ├── js/ │ │ │ │ │ └── thememagic.js │ │ │ │ └── thememagic.tpl.php │ │ │ ├── tour/ │ │ │ │ ├── css/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── tour.css │ │ │ │ ├── img/ │ │ │ │ │ └── index.html │ │ │ │ ├── js/ │ │ │ │ │ └── tour.js │ │ │ │ └── tour.tpl.php │ │ │ └── tpls/ │ │ │ ├── default.php │ │ │ ├── default_assignment.php │ │ │ ├── default_j4.php │ │ │ ├── default_overview.php │ │ │ ├── index.html │ │ │ └── toolbar.php │ │ ├── base/ │ │ │ ├── bootstrap/ │ │ │ │ ├── css/ │ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── docs.css │ │ │ │ │ └── navbar.css │ │ │ │ ├── js/ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── affix.js │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── application.js │ │ │ │ │ ├── bootstrap-affix.js │ │ │ │ │ ├── bootstrap-alert.js │ │ │ │ │ ├── bootstrap-button.js │ │ │ │ │ ├── bootstrap-carousel.js │ │ │ │ │ ├── bootstrap-collapse.js │ │ │ │ │ ├── bootstrap-dropdown.js │ │ │ │ │ ├── bootstrap-modal.js │ │ │ │ │ ├── bootstrap-popover.js │ │ │ │ │ ├── bootstrap-scrollspy.js │ │ │ │ │ ├── bootstrap-tab.js │ │ │ │ │ ├── bootstrap-tooltip.js │ │ │ │ │ ├── bootstrap-transition.js │ │ │ │ │ ├── bootstrap-typeahead.js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── google-code-prettify/ │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ └── prettify.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── phantom.js │ │ │ │ │ │ ├── server.js │ │ │ │ │ │ ├── unit/ │ │ │ │ │ │ │ ├── bootstrap-affix.js │ │ │ │ │ │ │ ├── bootstrap-alert.js │ │ │ │ │ │ │ ├── bootstrap-button.js │ │ │ │ │ │ │ ├── bootstrap-carousel.js │ │ │ │ │ │ │ ├── bootstrap-collapse.js │ │ │ │ │ │ │ ├── bootstrap-dropdown.js │ │ │ │ │ │ │ ├── bootstrap-modal.js │ │ │ │ │ │ │ ├── bootstrap-phantom.js │ │ │ │ │ │ │ ├── bootstrap-popover.js │ │ │ │ │ │ │ ├── bootstrap-scrollspy.js │ │ │ │ │ │ │ ├── bootstrap-tab.js │ │ │ │ │ │ │ ├── bootstrap-tooltip.js │ │ │ │ │ │ │ ├── bootstrap-transition.js │ │ │ │ │ │ │ └── bootstrap-typeahead.js │ │ │ │ │ │ └── vendor/ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── qunit.css │ │ │ │ │ │ └── qunit.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ └── transition.js │ │ │ │ └── less/ │ │ │ │ ├── accordion.less │ │ │ │ ├── alerts.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── dropdowns.less │ │ │ │ ├── forms.less │ │ │ │ ├── grid.less │ │ │ │ ├── hero-unit.less │ │ │ │ ├── labels-badges.less │ │ │ │ ├── layouts.less │ │ │ │ ├── media.less │ │ │ │ ├── mixins.less │ │ │ │ ├── modals.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── popovers.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── reset.less │ │ │ │ ├── responsive-1200px-min.less │ │ │ │ ├── responsive-767px-max.less │ │ │ │ ├── responsive-768px-979px.less │ │ │ │ ├── responsive-navbar.less │ │ │ │ ├── responsive-utilities.less │ │ │ │ ├── responsive.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── sprites.less │ │ │ │ ├── tables.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── utilities.less │ │ │ │ ├── variables.less │ │ │ │ └── wells.less │ │ │ ├── component.php │ │ │ ├── css/ │ │ │ │ ├── layout-preview.css │ │ │ │ ├── megamenu-responsive.css │ │ │ │ ├── megamenu.css │ │ │ │ ├── off-canvas.css │ │ │ │ └── thememagic.css │ │ │ ├── define.php │ │ │ ├── error.php │ │ │ ├── etc/ │ │ │ │ └── assets.xml │ │ │ ├── html/ │ │ │ │ ├── com_contact/ │ │ │ │ │ ├── categories/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_items.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── category/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_children.php │ │ │ │ │ │ ├── default_items.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── contact/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_address.php │ │ │ │ │ │ ├── default_articles.php │ │ │ │ │ │ ├── default_form.php │ │ │ │ │ │ ├── default_links.php │ │ │ │ │ │ ├── default_profile.php │ │ │ │ │ │ ├── default_user_custom_fields.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── featured/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_items.php │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── com_content/ │ │ │ │ │ ├── archive/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_items.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── article/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_links.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── categories/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_items.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── category/ │ │ │ │ │ │ ├── blog.php │ │ │ │ │ │ ├── blog_children.php │ │ │ │ │ │ ├── blog_item.php │ │ │ │ │ │ ├── blog_links.php │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_articles.php │ │ │ │ │ │ ├── default_children.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── featured/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_item.php │ │ │ │ │ │ ├── default_links.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── icon.php │ │ │ │ │ └── index.html │ │ │ │ ├── com_finder/ │ │ │ │ │ └── search/ │ │ │ │ │ └── default_form.php │ │ │ │ ├── com_newsfeeds/ │ │ │ │ │ ├── category/ │ │ │ │ │ │ ├── default_items.php │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── com_search/ │ │ │ │ │ └── search/ │ │ │ │ │ ├── default.php │ │ │ │ │ ├── default_form.php │ │ │ │ │ └── default_results.php │ │ │ │ ├── com_users/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── login/ │ │ │ │ │ │ ├── default_login.php │ │ │ │ │ │ ├── default_logout.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_core.php │ │ │ │ │ │ ├── default_custom.php │ │ │ │ │ │ ├── default_params.php │ │ │ │ │ │ ├── edit.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── registration/ │ │ │ │ │ │ ├── complete.php │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── remind/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ └── index.html │ │ │ │ │ └── reset/ │ │ │ │ │ ├── complete.php │ │ │ │ │ ├── confirm.php │ │ │ │ │ ├── default.php │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── layouts/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── joomla/ │ │ │ │ │ ├── content/ │ │ │ │ │ │ ├── associations.php │ │ │ │ │ │ ├── blog_style_default_item_title.php │ │ │ │ │ │ ├── blog_style_default_links.php │ │ │ │ │ │ ├── categories_default.php │ │ │ │ │ │ ├── categories_default_items.php │ │ │ │ │ │ ├── category_default.php │ │ │ │ │ │ ├── fulltext_image.php │ │ │ │ │ │ ├── icons.php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── info_block/ │ │ │ │ │ │ │ ├── author.php │ │ │ │ │ │ │ ├── block.php │ │ │ │ │ │ │ ├── category.php │ │ │ │ │ │ │ ├── create_date.php │ │ │ │ │ │ │ ├── hits.php │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── modify_date.php │ │ │ │ │ │ │ ├── parent_category.php │ │ │ │ │ │ │ └── publish_date.php │ │ │ │ │ │ ├── intro_image.php │ │ │ │ │ │ ├── item_title.php │ │ │ │ │ │ ├── options_default.php │ │ │ │ │ │ └── tags.php │ │ │ │ │ └── index.html │ │ │ │ ├── mod_breadcrumbs/ │ │ │ │ │ ├── default.php │ │ │ │ │ └── index.html │ │ │ │ ├── mod_footer/ │ │ │ │ │ ├── default.php │ │ │ │ │ └── index.html │ │ │ │ ├── mod_login/ │ │ │ │ │ ├── default.php │ │ │ │ │ └── index.html │ │ │ │ ├── mod_menu/ │ │ │ │ │ ├── default.php │ │ │ │ │ ├── default_component.php │ │ │ │ │ ├── default_heading.php │ │ │ │ │ ├── default_separator.php │ │ │ │ │ ├── default_url.php │ │ │ │ │ └── index.html │ │ │ │ ├── mod_search/ │ │ │ │ │ ├── default.php │ │ │ │ │ └── index.html │ │ │ │ ├── modules.php │ │ │ │ └── pagination.php │ │ │ ├── index.html │ │ │ ├── index.php │ │ │ ├── js/ │ │ │ │ ├── cssjanus.js │ │ │ │ ├── frontend-edit.js │ │ │ │ ├── jquery-1.11.2.js │ │ │ │ ├── jquery.ckie.js │ │ │ │ ├── jquery.equalheight.js │ │ │ │ ├── jquery.noconflict.js │ │ │ │ ├── less.js │ │ │ │ ├── menu.js │ │ │ │ ├── off-canvas.js │ │ │ │ ├── responsive.js │ │ │ │ ├── script.js │ │ │ │ └── thememagic.js │ │ │ ├── less/ │ │ │ │ ├── frontend-edit.less │ │ │ │ ├── global-modules-responsive.less │ │ │ │ ├── global-modules.less │ │ │ │ ├── global-typo-responsive.less │ │ │ │ ├── global-typo.less │ │ │ │ ├── grid-ext-responsive.less │ │ │ │ ├── grid-ext.less │ │ │ │ ├── layout-preview.less │ │ │ │ ├── megamenu-responsive.less │ │ │ │ ├── megamenu.less │ │ │ │ ├── mixins.less │ │ │ │ ├── non-responsive.less │ │ │ │ ├── off-canvas.less │ │ │ │ ├── rtl/ │ │ │ │ │ ├── megamenu.less │ │ │ │ │ └── off-canvas.less │ │ │ │ ├── t3-responsive.less │ │ │ │ ├── t3.less │ │ │ │ └── variables.less │ │ │ ├── offline.php │ │ │ ├── params/ │ │ │ │ ├── index.html │ │ │ │ ├── template.xml │ │ │ │ └── thememagic.xml │ │ │ └── tpls/ │ │ │ ├── ajax.html.php │ │ │ ├── ajax.json.php │ │ │ ├── blocks/ │ │ │ │ └── spotlight.php │ │ │ ├── component.php │ │ │ └── system/ │ │ │ ├── spotlight.php │ │ │ └── tp.php │ │ ├── base-bs3/ │ │ │ ├── bootstrap/ │ │ │ │ ├── css/ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ └── bootstrap.css │ │ │ │ ├── js/ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── npm.js │ │ │ │ └── less/ │ │ │ │ ├── .csscomb.json │ │ │ │ ├── .csslintrc │ │ │ │ ├── alerts.less │ │ │ │ ├── badges.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── dropdowns.less │ │ │ │ ├── forms.less │ │ │ │ ├── glyphicons.less │ │ │ │ ├── grid.less │ │ │ │ ├── input-groups.less │ │ │ │ ├── jumbotron.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── media.less │ │ │ │ ├── mixins/ │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── background-variant.less │ │ │ │ │ ├── border-radius.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── center-block.less │ │ │ │ │ ├── clearfix.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── gradients.less │ │ │ │ │ ├── grid-framework.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── hide-text.less │ │ │ │ │ ├── image.less │ │ │ │ │ ├── labels.less │ │ │ │ │ ├── list-group.less │ │ │ │ │ ├── nav-divider.less │ │ │ │ │ ├── nav-vertical-align.less │ │ │ │ │ ├── opacity.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── panels.less │ │ │ │ │ ├── progress-bar.less │ │ │ │ │ ├── reset-filter.less │ │ │ │ │ ├── reset-text.less │ │ │ │ │ ├── resize.less │ │ │ │ │ ├── responsive-visibility.less │ │ │ │ │ ├── size.less │ │ │ │ │ ├── tab-focus.less │ │ │ │ │ ├── table-row.less │ │ │ │ │ ├── text-emphasis.less │ │ │ │ │ ├── text-overflow.less │ │ │ │ │ └── vendor-prefixes.less │ │ │ │ ├── mixins.less │ │ │ │ ├── modals.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── normalize.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── popovers.less │ │ │ │ ├── print.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── responsive-embed.less │ │ │ │ ├── responsive-utilities.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── tables.less │ │ │ │ ├── theme.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── utilities.less │ │ │ │ ├── variables.less │ │ │ │ └── wells.less │ │ │ ├── component.php │ │ │ ├── css/ │ │ │ │ ├── frontediting.css │ │ │ │ ├── jquery.autocomplete.css │ │ │ │ ├── layout-preview.css │ │ │ │ ├── megamenu-responsive.css │ │ │ │ ├── megamenu.css │ │ │ │ ├── off-canvas.css │ │ │ │ └── thememagic.css │ │ │ ├── define.php │ │ │ ├── error.php │ │ │ ├── etc/ │ │ │ │ └── assets.xml │ │ │ ├── fonts/ │ │ │ │ └── font-awesome/ │ │ │ │ ├── css/ │ │ │ │ │ ├── font-awesome-base.css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ └── icomoon-to-fw.css │ │ │ │ └── font/ │ │ │ │ └── FontAwesome.otf │ │ │ ├── html/ │ │ │ │ ├── com_config/ │ │ │ │ │ ├── modules/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_details.php │ │ │ │ │ │ ├── default_options.php │ │ │ │ │ │ └── default_positions.php │ │ │ │ │ └── templates/ │ │ │ │ │ ├── default.php │ │ │ │ │ └── index.html │ │ │ │ ├── com_contact/ │ │ │ │ │ ├── categories/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_items.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── category/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_children.php │ │ │ │ │ │ ├── default_items.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── contact/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_address.php │ │ │ │ │ │ ├── default_articles.php │ │ │ │ │ │ ├── default_form.php │ │ │ │ │ │ ├── default_links.php │ │ │ │ │ │ ├── default_profile.php │ │ │ │ │ │ ├── default_user_custom_fields.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── featured/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_items.php │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── com_content/ │ │ │ │ │ ├── archive/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_items.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── article/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_links.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── categories/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_items.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── category/ │ │ │ │ │ │ ├── blog.php │ │ │ │ │ │ ├── blog_children.php │ │ │ │ │ │ ├── blog_item.php │ │ │ │ │ │ ├── blog_links.php │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_articles.php │ │ │ │ │ │ ├── default_children.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── featured/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_item.php │ │ │ │ │ │ ├── default_links.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── icon.php │ │ │ │ │ └── index.html │ │ │ │ ├── com_finder/ │ │ │ │ │ └── search/ │ │ │ │ │ └── default_form.php │ │ │ │ ├── com_mailto/ │ │ │ │ │ └── mailto/ │ │ │ │ │ ├── default.php │ │ │ │ │ └── index.html │ │ │ │ ├── com_newsfeeds/ │ │ │ │ │ ├── category/ │ │ │ │ │ │ ├── default_items.php │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── com_search/ │ │ │ │ │ └── search/ │ │ │ │ │ ├── default.php │ │ │ │ │ ├── default_error.php │ │ │ │ │ ├── default_form.php │ │ │ │ │ └── default_results.php │ │ │ │ ├── com_tags/ │ │ │ │ │ ├── tag/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ └── default_items.php │ │ │ │ │ └── tags/ │ │ │ │ │ ├── default.php │ │ │ │ │ └── default_items.php │ │ │ │ ├── com_users/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── login/ │ │ │ │ │ │ ├── default_login.php │ │ │ │ │ │ ├── default_logout.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── profile/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ ├── default_core.php │ │ │ │ │ │ ├── default_custom.php │ │ │ │ │ │ ├── default_params.php │ │ │ │ │ │ ├── edit.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── registration/ │ │ │ │ │ │ ├── complete.php │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── remind/ │ │ │ │ │ │ ├── default.php │ │ │ │ │ │ └── index.html │ │ │ │ │ └── reset/ │ │ │ │ │ ├── complete.php │ │ │ │ │ ├── confirm.php │ │ │ │ │ ├── default.php │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── layouts/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── joomla/ │ │ │ │ │ ├── content/ │ │ │ │ │ │ ├── associations.php │ │ │ │ │ │ ├── blog_style_default_item_title.php │ │ │ │ │ │ ├── blog_style_default_links.php │ │ │ │ │ │ ├── categories_default.php │ │ │ │ │ │ ├── categories_default_items.php │ │ │ │ │ │ ├── category_default.php │ │ │ │ │ │ ├── fulltext_image.php │ │ │ │ │ │ ├── icons.php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── info_block/ │ │ │ │ │ │ │ ├── author.php │ │ │ │ │ │ │ ├── block.php │ │ │ │ │ │ │ ├── category.php │ │ │ │ │ │ │ ├── create_date.php │ │ │ │ │ │ │ ├── hits.php │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── modify_date.php │ │ │ │ │ │ │ ├── parent_category.php │ │ │ │ │ │ │ └── publish_date.php │ │ │ │ │ │ ├── intro_image.php │ │ │ │ │ │ ├── item_title.php │ │ │ │ │ │ ├── options_default.php │ │ │ │ │ │ ├── readmore.php │ │ │ │ │ │ └── tags.php │ │ │ │ │ ├── edit/ │ │ │ │ │ │ └── frontediting_modules.php │ │ │ │ │ └── index.html │ │ │ │ ├── mod_articles_categories/ │ │ │ │ │ └── default_items.php │ │ │ │ ├── mod_breadcrumbs/ │ │ │ │ │ ├── default.php │ │ │ │ │ └── index.html │ │ │ │ ├── mod_finder/ │ │ │ │ │ ├── default.php │ │ │ │ │ └── index.html │ │ │ │ ├── mod_footer/ │ │ │ │ │ ├── default.php │ │ │ │ │ └── index.html │ │ │ │ ├── mod_login/ │ │ │ │ │ ├── default.php │ │ │ │ │ └── index.html │ │ │ │ ├── mod_menu/ │ │ │ │ │ ├── default.php │ │ │ │ │ ├── default_component.php │ │ │ │ │ ├── default_heading.php │ │ │ │ │ ├── default_separator.php │ │ │ │ │ ├── default_url.php │ │ │ │ │ └── index.html │ │ │ │ ├── mod_search/ │ │ │ │ │ ├── default.php │ │ │ │ │ └── index.html │ │ │ │ ├── modules.php │ │ │ │ └── pagination.php │ │ │ ├── index.html │ │ │ ├── index.php │ │ │ ├── js/ │ │ │ │ ├── cssjanus.js │ │ │ │ ├── frontediting.js │ │ │ │ ├── frontend-edit.js │ │ │ │ ├── jquery-1.11.2.js │ │ │ │ ├── jquery.autocomplete.js │ │ │ │ ├── jquery.ckie.js │ │ │ │ ├── jquery.equalheight.js │ │ │ │ ├── jquery.noconflict.js │ │ │ │ ├── less.js │ │ │ │ ├── less.unmin.js │ │ │ │ ├── menu.js │ │ │ │ ├── nav-collapse.js │ │ │ │ ├── off-canvas.js │ │ │ │ ├── script.js │ │ │ │ └── thememagic.js │ │ │ ├── less/ │ │ │ │ ├── frontend-edit.less │ │ │ │ ├── layout-preview-variables.less │ │ │ │ ├── layout-preview.less │ │ │ │ ├── legacy-forms.less │ │ │ │ ├── legacy-grid.less │ │ │ │ ├── legacy-navigation.less │ │ │ │ ├── legacy_j4.less │ │ │ │ ├── megamenu.less │ │ │ │ ├── mixins.less │ │ │ │ ├── non-responsive-variables.less │ │ │ │ ├── non-responsive.less │ │ │ │ ├── off-canvas.less │ │ │ │ ├── rtl/ │ │ │ │ │ ├── megamenu.less │ │ │ │ │ └── off-canvas.less │ │ │ │ ├── t3.less │ │ │ │ └── variables.less │ │ │ ├── offline.php │ │ │ ├── params/ │ │ │ │ ├── index.html │ │ │ │ ├── template.xml │ │ │ │ └── thememagic.xml │ │ │ └── tpls/ │ │ │ ├── addon.php │ │ │ ├── ajax.html.php │ │ │ ├── ajax.json.php │ │ │ ├── blocks/ │ │ │ │ ├── off-canvas.php │ │ │ │ └── spotlight.php │ │ │ ├── component.php │ │ │ └── system/ │ │ │ ├── spotlight.php │ │ │ └── tp.php │ │ ├── includes/ │ │ │ ├── admin/ │ │ │ │ ├── layout.php │ │ │ │ ├── megamenu.php │ │ │ │ └── theme.php │ │ │ ├── core/ │ │ │ │ ├── action.php │ │ │ │ ├── admin.php │ │ │ │ ├── ajax.php │ │ │ │ ├── bot.php │ │ │ │ ├── defines.php │ │ │ │ ├── less.php │ │ │ │ ├── minify.php │ │ │ │ ├── path.php │ │ │ │ ├── t3.php │ │ │ │ ├── t3j.php │ │ │ │ ├── template.php │ │ │ │ └── templatelayout.php │ │ │ ├── depend/ │ │ │ │ ├── css/ │ │ │ │ │ ├── depend.css │ │ │ │ │ └── index.html │ │ │ │ ├── helper.php │ │ │ │ ├── images/ │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── js/ │ │ │ │ │ ├── depend.js │ │ │ │ │ └── index.html │ │ │ │ ├── t3depend.php │ │ │ │ ├── t3filelist.php │ │ │ │ ├── t3folderlist.php │ │ │ │ ├── t3form.php │ │ │ │ ├── t3layoutlist.php │ │ │ │ ├── t3media.php │ │ │ │ ├── t3megamenu.php │ │ │ │ ├── t3modules.php │ │ │ │ ├── t3positions.php │ │ │ │ └── tpls/ │ │ │ │ └── profile.php │ │ │ ├── extendable/ │ │ │ │ ├── extendable.php │ │ │ │ ├── object.4.php │ │ │ │ └── object.5.php │ │ │ ├── format/ │ │ │ │ ├── less.php │ │ │ │ └── less3.3.php │ │ │ ├── gfont/ │ │ │ │ └── T3GFont.php │ │ │ ├── jacssjanus/ │ │ │ │ ├── csslex.php │ │ │ │ ├── ja.cssjanus.php │ │ │ │ └── test.php │ │ │ ├── joomla25/ │ │ │ │ ├── html/ │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ ├── jquery.php │ │ │ │ │ └── string.php │ │ │ │ ├── layout/ │ │ │ │ │ ├── base.php │ │ │ │ │ ├── file.php │ │ │ │ │ ├── helper.php │ │ │ │ │ ├── index.html │ │ │ │ │ └── layout.php │ │ │ │ ├── modulehelper.php │ │ │ │ ├── pagination.php │ │ │ │ └── view.php │ │ │ ├── joomla30/ │ │ │ │ ├── layoutfile.php │ │ │ │ ├── modulehelper.php │ │ │ │ ├── pagination.php │ │ │ │ ├── viewhtml.php │ │ │ │ └── viewlegacy.php │ │ │ ├── joomla4/ │ │ │ │ ├── FileLayout.php │ │ │ │ ├── HtmlView.php │ │ │ │ ├── ModuleHelper.php │ │ │ │ ├── Pagination.php │ │ │ │ └── html/ │ │ │ │ ├── behavior.php │ │ │ │ └── bootstrap.php │ │ │ ├── lessphp/ │ │ │ │ ├── legacy.less.php │ │ │ │ ├── less/ │ │ │ │ │ ├── cache.php │ │ │ │ │ ├── less.php │ │ │ │ │ └── version.php │ │ │ │ ├── less.php │ │ │ │ └── lessc.inc.php │ │ │ ├── menu/ │ │ │ │ ├── megamenu.php │ │ │ │ ├── megamenu.tpl.php │ │ │ │ ├── t3bootstrap.php │ │ │ │ └── t3bootstrap.tpl.php │ │ │ ├── minify/ │ │ │ │ ├── closurecompiler.php │ │ │ │ ├── csscompressor.php │ │ │ │ └── jsmin.php │ │ │ └── renderer/ │ │ │ ├── megamenu.php │ │ │ ├── megamenurender.php │ │ │ ├── pageclass.php │ │ │ ├── t3ajax.php │ │ │ └── t3bootstrap.php │ │ ├── index.html │ │ ├── language/ │ │ │ └── en-GB/ │ │ │ ├── en-GB.plg_system_t3.ini │ │ │ ├── en-GB.plg_system_t3.j25.compat.ini │ │ │ └── en-GB.plg_system_t3.sys.ini │ │ ├── t3.php │ │ ├── t3.script.php │ │ └── t3.xml │ ├── tpl_t3_blank/ │ │ ├── component.php │ │ ├── css/ │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap.css │ │ │ ├── component.css │ │ │ ├── frontend-edit.css │ │ │ ├── home-responsive.css │ │ │ ├── home.css │ │ │ ├── megamenu-responsive.css │ │ │ ├── megamenu.css │ │ │ ├── off-canvas.css │ │ │ ├── rtl/ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── component.css │ │ │ │ ├── dark/ │ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── component.css │ │ │ │ │ ├── frontend-edit.css │ │ │ │ │ ├── home-responsive.css │ │ │ │ │ ├── home.css │ │ │ │ │ ├── megamenu-responsive.css │ │ │ │ │ ├── megamenu.css │ │ │ │ │ ├── off-canvas.css │ │ │ │ │ ├── template-responsive.css │ │ │ │ │ └── template.css │ │ │ │ ├── frontend-edit.css │ │ │ │ ├── green/ │ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── component.css │ │ │ │ │ ├── frontend-edit.css │ │ │ │ │ ├── home-responsive.css │ │ │ │ │ ├── home.css │ │ │ │ │ ├── megamenu-responsive.css │ │ │ │ │ ├── megamenu.css │ │ │ │ │ ├── off-canvas.css │ │ │ │ │ ├── template-responsive.css │ │ │ │ │ └── template.css │ │ │ │ ├── home-responsive.css │ │ │ │ ├── home.css │ │ │ │ ├── megamenu-responsive.css │ │ │ │ ├── megamenu.css │ │ │ │ ├── off-canvas.css │ │ │ │ ├── orange/ │ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── component.css │ │ │ │ │ ├── frontend-edit.css │ │ │ │ │ ├── home-responsive.css │ │ │ │ │ ├── home.css │ │ │ │ │ ├── megamenu-responsive.css │ │ │ │ │ ├── megamenu.css │ │ │ │ │ ├── off-canvas.css │ │ │ │ │ ├── template-responsive.css │ │ │ │ │ └── template.css │ │ │ │ ├── red/ │ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── component.css │ │ │ │ │ ├── frontend-edit.css │ │ │ │ │ ├── home-responsive.css │ │ │ │ │ ├── home.css │ │ │ │ │ ├── megamenu-responsive.css │ │ │ │ │ ├── megamenu.css │ │ │ │ │ ├── off-canvas.css │ │ │ │ │ ├── template-responsive.css │ │ │ │ │ └── template.css │ │ │ │ ├── template-responsive.css │ │ │ │ └── template.css │ │ │ ├── template-responsive.css │ │ │ ├── template.css │ │ │ └── themes/ │ │ │ ├── dark/ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── component.css │ │ │ │ ├── frontend-edit.css │ │ │ │ ├── home-responsive.css │ │ │ │ ├── home.css │ │ │ │ ├── megamenu-responsive.css │ │ │ │ ├── megamenu.css │ │ │ │ ├── off-canvas.css │ │ │ │ ├── template-responsive.css │ │ │ │ └── template.css │ │ │ ├── green/ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── component.css │ │ │ │ ├── frontend-edit.css │ │ │ │ ├── home-responsive.css │ │ │ │ ├── home.css │ │ │ │ ├── megamenu-responsive.css │ │ │ │ ├── megamenu.css │ │ │ │ ├── off-canvas.css │ │ │ │ ├── template-responsive.css │ │ │ │ └── template.css │ │ │ ├── orange/ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── component.css │ │ │ │ ├── frontend-edit.css │ │ │ │ ├── home-responsive.css │ │ │ │ ├── home.css │ │ │ │ ├── megamenu-responsive.css │ │ │ │ ├── megamenu.css │ │ │ │ ├── off-canvas.css │ │ │ │ ├── template-responsive.css │ │ │ │ └── template.css │ │ │ └── red/ │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap.css │ │ │ ├── component.css │ │ │ ├── frontend-edit.css │ │ │ ├── home-responsive.css │ │ │ ├── home.css │ │ │ ├── megamenu-responsive.css │ │ │ ├── megamenu.css │ │ │ ├── off-canvas.css │ │ │ ├── template-responsive.css │ │ │ └── template.css │ │ ├── etc/ │ │ │ └── layout/ │ │ │ ├── default-content-left.ini │ │ │ ├── default-joomla-2.5.ini │ │ │ ├── default-joomla-3.x.ini │ │ │ ├── default.ini │ │ │ ├── home-1.ini │ │ │ └── home-2.ini │ │ ├── fonts/ │ │ │ └── font-awesome/ │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── css/ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ └── font-awesome.css │ │ │ ├── font/ │ │ │ │ ├── FontAwesome.otf │ │ │ │ └── index.html │ │ │ └── less/ │ │ │ ├── bootstrap.less │ │ │ ├── core.less │ │ │ ├── extras.less │ │ │ ├── font-awesome-ie7.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── joomla3-compat.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ └── variables.less │ │ ├── html/ │ │ │ ├── com_contact/ │ │ │ │ ├── contact/ │ │ │ │ │ ├── default_form.php │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── message.php │ │ │ └── mod_footer/ │ │ │ └── default.php │ │ ├── index.html │ │ ├── index.php │ │ ├── js/ │ │ │ └── script.js │ │ ├── language/ │ │ │ └── en-GB/ │ │ │ ├── en-GB.tpl_t3_blank.ini │ │ │ └── en-GB.tpl_t3_blank.sys.ini │ │ ├── less/ │ │ │ ├── bootstrap-responsive.less │ │ │ ├── bootstrap.less │ │ │ ├── component.less │ │ │ ├── core.less │ │ │ ├── extras/ │ │ │ │ └── com_kunena.less │ │ │ ├── form.less │ │ │ ├── home-responsive.less │ │ │ ├── home.less │ │ │ ├── joomla-responsive.less │ │ │ ├── joomla.less │ │ │ ├── layout.less │ │ │ ├── megamenu-responsive.less │ │ │ ├── megamenu.less │ │ │ ├── modules.less │ │ │ ├── navigation-core.less │ │ │ ├── navigation-responsive.less │ │ │ ├── navigation.less │ │ │ ├── off-canvas.less │ │ │ ├── rtl/ │ │ │ │ ├── joomla.less │ │ │ │ ├── style.less │ │ │ │ └── template.less │ │ │ ├── style-responsive.less │ │ │ ├── style.less │ │ │ ├── template-responsive.less │ │ │ ├── template.less │ │ │ ├── themes/ │ │ │ │ ├── dark/ │ │ │ │ │ ├── template.less │ │ │ │ │ ├── variables-custom.less │ │ │ │ │ └── variables.less │ │ │ │ ├── green/ │ │ │ │ │ ├── home.less │ │ │ │ │ ├── template-responsive.less │ │ │ │ │ ├── template.less │ │ │ │ │ ├── variables-custom.less │ │ │ │ │ └── variables.less │ │ │ │ ├── orange/ │ │ │ │ │ ├── home.less │ │ │ │ │ ├── template.less │ │ │ │ │ ├── variables-custom.less │ │ │ │ │ └── variables.less │ │ │ │ └── red/ │ │ │ │ ├── home.less │ │ │ │ ├── template.less │ │ │ │ ├── variables-custom.less │ │ │ │ └── variables.less │ │ │ ├── typo-core-responsive.less │ │ │ ├── typo-core.less │ │ │ ├── typo-responsive.less │ │ │ ├── typo.less │ │ │ ├── variables.less │ │ │ └── vars.less │ │ ├── templateDetails.xml │ │ ├── templateHook.php │ │ ├── templateInfo.php │ │ ├── thememagic.xml │ │ └── tpls/ │ │ ├── blocks/ │ │ │ ├── footer.php │ │ │ ├── head.php │ │ │ ├── header.php │ │ │ ├── mainbody-content-left.php │ │ │ ├── mainbody-content-right.php │ │ │ ├── mainbody-home-1.php │ │ │ ├── mainbody-home-2.php │ │ │ ├── mainbody.php │ │ │ ├── mainnav.php │ │ │ ├── navhelper.php │ │ │ ├── spotlight-1.php │ │ │ └── spotlight-2.php │ │ ├── default-content-left.php │ │ ├── default-content-right.php │ │ ├── default-joomla-2.5.php │ │ ├── default-joomla-3.x.php │ │ ├── default.php │ │ ├── home-1.php │ │ └── home-2.php │ └── tpl_t3_bs3_blank/ │ ├── component.php │ ├── css/ │ │ ├── bootstrap.css │ │ ├── frontend-edit.css │ │ ├── home.css │ │ ├── index.html │ │ ├── legacy-grid.css │ │ ├── legacy-navigation.css │ │ ├── megamenu.css │ │ ├── off-canvas.css │ │ ├── offline.css │ │ ├── rtl/ │ │ │ ├── bootstrap.css │ │ │ ├── dark/ │ │ │ │ ├── bootstrap.css │ │ │ │ ├── frontend-edit.css │ │ │ │ ├── home.css │ │ │ │ ├── legacy-grid.css │ │ │ │ ├── legacy-navigation.css │ │ │ │ ├── megamenu.css │ │ │ │ ├── off-canvas.css │ │ │ │ ├── template.css │ │ │ │ └── windows.css │ │ │ ├── frontend-edit.css │ │ │ ├── home.css │ │ │ ├── legacy-grid.css │ │ │ ├── legacy-navigation.css │ │ │ ├── megamenu.css │ │ │ ├── off-canvas.css │ │ │ ├── red/ │ │ │ │ ├── bootstrap.css │ │ │ │ ├── frontend-edit.css │ │ │ │ ├── home.css │ │ │ │ ├── legacy-grid.css │ │ │ │ ├── legacy-navigation.css │ │ │ │ ├── megamenu.css │ │ │ │ ├── off-canvas.css │ │ │ │ ├── template.css │ │ │ │ └── windows.css │ │ │ ├── template.css │ │ │ └── windows.css │ │ ├── template.css │ │ ├── themes/ │ │ │ ├── dark/ │ │ │ │ ├── bootstrap.css │ │ │ │ ├── frontend-edit.css │ │ │ │ ├── home.css │ │ │ │ ├── legacy-grid.css │ │ │ │ ├── legacy-navigation.css │ │ │ │ ├── megamenu.css │ │ │ │ ├── off-canvas.css │ │ │ │ ├── template.css │ │ │ │ └── windows.css │ │ │ └── red/ │ │ │ ├── bootstrap.css │ │ │ ├── frontend-edit.css │ │ │ ├── home.css │ │ │ ├── legacy-grid.css │ │ │ ├── legacy-navigation.css │ │ │ ├── megamenu.css │ │ │ ├── off-canvas.css │ │ │ ├── template.css │ │ │ └── windows.css │ │ └── windows.css │ ├── etc/ │ │ ├── assets.xml │ │ └── layout/ │ │ ├── default-content-left.ini │ │ ├── default-content-right.ini │ │ ├── default.ini │ │ └── home-1.ini │ ├── fonts/ │ │ └── font-awesome/ │ │ ├── css/ │ │ │ ├── font-awesome.css │ │ │ └── index.html │ │ └── fonts/ │ │ ├── FontAwesome.otf │ │ └── index.html │ ├── html/ │ │ ├── com_media/ │ │ │ └── imageslist/ │ │ │ ├── default_folder.php │ │ │ └── default_image.php │ │ └── mod_footer/ │ │ └── default.php │ ├── index.html │ ├── index.php │ ├── js/ │ │ └── script.js │ ├── language/ │ │ └── en-GB/ │ │ ├── en-GB.tpl_t3_bs3_blank.ini │ │ └── en-GB.tpl_t3_bs3_blank.sys.ini │ ├── less/ │ │ ├── bootstrap.less │ │ ├── components.less │ │ ├── core.less │ │ ├── forms.less │ │ ├── home.less │ │ ├── joomla.less │ │ ├── megamenu.less │ │ ├── modules.less │ │ ├── navbar.less │ │ ├── navigation.less │ │ ├── off-canvas.less │ │ ├── rtl/ │ │ │ ├── joomla.less │ │ │ ├── style.less │ │ │ └── template.less │ │ ├── style.less │ │ ├── template.less │ │ ├── themes/ │ │ │ ├── dark/ │ │ │ │ ├── template.less │ │ │ │ ├── variables-custom.less │ │ │ │ └── variables.less │ │ │ └── red/ │ │ │ ├── template.less │ │ │ ├── variables-custom.less │ │ │ └── variables.less │ │ ├── typography.less │ │ ├── variables.less │ │ ├── vars.less │ │ └── windows.less │ ├── offline.php │ ├── templateDetails.xml │ ├── templateHook.php │ ├── templateInfo.php │ ├── thememagic.xml │ └── tpls/ │ ├── blocks/ │ │ ├── footer.php │ │ ├── head.php │ │ ├── header.php │ │ ├── mainbody/ │ │ │ ├── no-sidebar.php │ │ │ ├── one-sidebar-left-with-mastcol.php │ │ │ ├── one-sidebar-left.php │ │ │ ├── one-sidebar-right-with-mastcol.php │ │ │ ├── one-sidebar-right.php │ │ │ ├── two-sidebar-left.php │ │ │ ├── two-sidebar-right.php │ │ │ └── two-sidebar.php │ │ ├── mainbody-content-left.php │ │ ├── mainbody-content-right.php │ │ ├── mainbody-home-1.php │ │ ├── mainbody-home-2.php │ │ ├── mainbody.php │ │ ├── mainnav.php │ │ ├── navhelper.php │ │ ├── off-canvas.php │ │ ├── spotlight-1.php │ │ └── spotlight-2.php │ ├── default-content-left.php │ ├── default-content-right.php │ ├── default.php │ ├── home-1.php │ └── home-2.php └── translations/ ├── README.md ├── fr-FR/ │ ├── pkg_fr-FR.xml │ ├── plg_system_t3/ │ │ ├── fr-FR.plg_system_t3.ini │ │ ├── fr-FR.plg_system_t3.j25.compat.ini │ │ ├── fr-FR.plg_system_t3.sys.ini │ │ └── install.xml │ ├── tpl_t3_blank/ │ │ ├── fr-FR.tpl_t3_blank.ini │ │ ├── fr-FR.tpl_t3_blank.sys.ini │ │ └── install.xml │ └── tpl_t3_bs3_blank/ │ ├── fr-FR.tpl_t3_bs3_blank.ini │ ├── fr-FR.tpl_t3_bs3_blank.sys.ini │ └── install.xml ├── hu-HU/ │ ├── pkg_hu-HU.xml │ ├── plg_system_t3/ │ │ ├── hu-HU.plg_system_t3.ini │ │ ├── hu-HU.plg_system_t3.sys.ini │ │ └── install.xml │ ├── tpl_t3_blank/ │ │ ├── hu-HU.tpl_t3_blank.ini │ │ ├── hu-HU.tpl_t3_blank.sys.ini │ │ └── install.xml │ └── tpl_t3_bs3_blank/ │ ├── hu-HU.tpl_t3_bs3_blank.ini │ ├── hu-HU.tpl_t3_bs3_blank.sys.ini │ └── install.xml └── it-IT/ ├── pkg_it-IT.xml ├── plg_system_t3/ │ ├── install.xml │ ├── it-IT.plg_system_t3.ini │ └── it-IT.plg_system_t3.sys.ini ├── tpl_t3_blank/ │ ├── install.xml │ ├── it-IT.tpl_t3_blank.ini │ └── it-IT.tpl_t3_blank.sys.ini └── tpl_t3_bs3_blank/ ├── install.xml ├── it-IT.tpl_t3_bs3_blank.ini └── it-IT.tpl_t3_bs3_blank.sys.ini