├── .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-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ ├── css │ │ │ ├── admin-j25.css │ │ │ ├── admin-j30.css │ │ │ ├── admin.css │ │ │ ├── file-manager.css │ │ │ └── index.html │ │ ├── fonts │ │ │ ├── fa3 │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ ├── font │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ └── 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 │ │ │ │ │ └── font-awesome.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ └── glyphicon │ │ │ │ ├── css │ │ │ │ └── glyphicon.css │ │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── frameworkInfo.php │ │ ├── framework_preview.png │ │ ├── html │ │ │ └── com_templates │ │ │ │ └── style │ │ │ │ └── edit.php │ │ ├── images │ │ │ ├── blank.gif │ │ │ ├── dot-2.png │ │ │ ├── dot.png │ │ │ ├── index.html │ │ │ ├── loading.gif │ │ │ ├── notice-alert.png │ │ │ ├── notice-info.png │ │ │ ├── notice-note.png │ │ │ ├── search-invert.png │ │ │ └── selector-arrow.png │ │ ├── index.php │ │ ├── js │ │ │ ├── admin.js │ │ │ ├── admin_j4.js │ │ │ ├── index.html │ │ │ ├── jimgload.js │ │ │ ├── jquery-1.x.js │ │ │ ├── jquery-1.x.min.js │ │ │ ├── jquery.noconflict.js │ │ │ └── json2.js │ │ ├── layout │ │ │ ├── css │ │ │ │ ├── layout-preview.css │ │ │ │ ├── layout-preview.css.bs3 │ │ │ │ └── layout.css │ │ │ ├── images │ │ │ │ ├── grouper.gif │ │ │ │ └── resizer.gif │ │ │ ├── js │ │ │ │ └── layout.js │ │ │ └── layout.tpl.php │ │ ├── megamenu │ │ │ ├── css │ │ │ │ └── megamenu.css │ │ │ ├── images │ │ │ │ ├── ajaxloader.gif │ │ │ │ └── grid-bg.jpg │ │ │ ├── js │ │ │ │ └── megamenu.js │ │ │ └── megamenu.tpl.php │ │ ├── plugins │ │ │ ├── chosen │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen-sprite@2x.png │ │ │ │ ├── chosen.css │ │ │ │ ├── chosen.jquery.js │ │ │ │ ├── chosen.jquery.min.js │ │ │ │ └── chosen.min.css │ │ │ └── miniColors │ │ │ │ ├── images │ │ │ │ ├── colors.png │ │ │ │ └── trigger.png │ │ │ │ ├── jquery.miniColors.css │ │ │ │ ├── jquery.miniColors.js │ │ │ │ └── jquery.miniColors.min.js │ │ ├── thememagic │ │ │ ├── css │ │ │ │ └── thememagic.css │ │ │ ├── images │ │ │ │ └── dot.png │ │ │ ├── js │ │ │ │ └── thememagic.js │ │ │ └── thememagic.tpl.php │ │ ├── tour │ │ │ ├── css │ │ │ │ ├── index.html │ │ │ │ └── tour.css │ │ │ ├── img │ │ │ │ ├── close.gif │ │ │ │ ├── index.html │ │ │ │ ├── leftright.png │ │ │ │ ├── topbottom.png │ │ │ │ └── webtreats-paper-pattern-6-grey.jpg │ │ │ ├── js │ │ │ │ └── tour.js │ │ │ └── tour.tpl.php │ │ └── tpls │ │ │ ├── default.php │ │ │ ├── default_assignment.php │ │ │ ├── default_j4.php │ │ │ ├── default_overview.php │ │ │ ├── index.html │ │ │ └── toolbar.php │ ├── base-bs3 │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.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.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 │ │ │ │ ├── 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 │ │ │ │ ├── font-awesome.min.css │ │ │ │ └── icomoon-to-fw.css │ │ │ │ └── font │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ ├── 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 │ │ ├── imgs │ │ │ └── blank.gif │ │ ├── index.html │ │ ├── index.php │ │ ├── js │ │ │ ├── cssjanus.js │ │ │ ├── frontediting.js │ │ │ ├── frontend-edit.js │ │ │ ├── jquery-1.11.2.js │ │ │ ├── jquery-1.11.2.min.js │ │ │ ├── jquery.autocomplete.js │ │ │ ├── jquery.ckie.js │ │ │ ├── jquery.equalheight.js │ │ │ ├── jquery.noconflict.js │ │ │ ├── jquery.tap.min.js │ │ │ ├── less.js │ │ │ ├── less.unmin.js │ │ │ ├── menu.js │ │ │ ├── nav-collapse.js │ │ │ ├── off-canvas.js │ │ │ ├── respond.min.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 │ ├── base │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── docs.css │ │ │ │ └── navbar.css │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ ├── 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 │ │ │ │ ├── bootstrap.min.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 │ │ ├── imgs │ │ │ └── blank.gif │ │ ├── index.html │ │ ├── index.php │ │ ├── js │ │ │ ├── cssjanus.js │ │ │ ├── frontend-edit.js │ │ │ ├── jquery-1.11.2.js │ │ │ ├── jquery-1.11.2.min.js │ │ │ ├── jquery.ckie.js │ │ │ ├── jquery.equalheight.js │ │ │ ├── jquery.noconflict.js │ │ │ ├── jquery.tap.min.js │ │ │ ├── less.js │ │ │ ├── menu.js │ │ │ ├── off-canvas.js │ │ │ ├── respond.min.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 │ ├── 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 │ │ │ │ ├── admin-bg.gif │ │ │ │ ├── apply.gif │ │ │ │ ├── arrow-blue.png │ │ │ │ ├── arrow-level1.png │ │ │ │ ├── arrow-list.gif │ │ │ │ ├── block-head.gif │ │ │ │ ├── block-setting.gif │ │ │ │ ├── bt-close.gif │ │ │ │ ├── cancel.gif │ │ │ │ ├── close-all.png │ │ │ │ ├── copy.png │ │ │ │ ├── del.gif │ │ │ │ ├── del2.gif │ │ │ │ ├── grad.png │ │ │ │ ├── icon-default.png │ │ │ │ ├── icon-message.png │ │ │ │ ├── icon-move.png │ │ │ │ ├── icon-moved.png │ │ │ │ ├── icon-save.png │ │ │ │ ├── icon-success.png │ │ │ │ ├── index.html │ │ │ │ ├── level1-block.gif │ │ │ │ ├── level2-block.gif │ │ │ │ ├── level2-close.gif │ │ │ │ ├── lightbulb.png │ │ │ │ ├── message-bg.gif │ │ │ │ ├── normal-check.jpg │ │ │ │ ├── open-all.png │ │ │ │ ├── popup-list.gif │ │ │ │ ├── success-bg.gif │ │ │ │ ├── table-bg.gif │ │ │ │ ├── tabs-setting.gif │ │ │ │ ├── themes-default.gif │ │ │ │ ├── toggle-btn.png │ │ │ │ └── tooltip-bg.gif │ │ │ ├── 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.php │ │ │ ├── less │ │ │ │ ├── cache.php │ │ │ │ ├── less.php │ │ │ │ └── version.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 │ ├── favicon.ico │ ├── fonts │ │ └── font-awesome │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── css │ │ │ ├── font-awesome-ie7.css │ │ │ ├── font-awesome-ie7.min.css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ │ ├── font │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── 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 │ ├── images │ │ ├── arrow-section-alt.png │ │ ├── arrow.png │ │ ├── demo │ │ │ └── logo.png │ │ ├── ico │ │ │ ├── search-invert.png │ │ │ └── search.png │ │ ├── logo.png │ │ ├── system │ │ │ ├── arrow.png │ │ │ └── arrow_rtl.png │ │ ├── t3-banner.png │ │ ├── t3-bg.png │ │ └── themes │ │ │ └── dark │ │ │ └── ico │ │ │ └── search.png │ ├── 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 │ ├── template_preview.png │ ├── template_thumbnail.png │ ├── 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 │ ├── favicon.ico │ ├── fonts │ └── font-awesome │ │ ├── css │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ └── index.html │ │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ └── index.html │ ├── html │ ├── com_media │ │ └── imageslist │ │ │ ├── default_folder.php │ │ │ └── default_image.php │ └── mod_footer │ │ └── default.php │ ├── images │ ├── arrow.png │ ├── demo │ │ └── logo.png │ ├── ico │ │ ├── search-invert.png │ │ └── search.png │ ├── logo.png │ ├── system │ │ ├── arrow.png │ │ └── arrow_rtl.png │ ├── t3-banner.png │ ├── t3-bg.png │ └── themes │ │ └── dark │ │ └── ico │ │ └── search.png │ ├── 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 │ ├── template_preview.png │ ├── template_thumbnail.png │ ├── 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 │ ├── 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 │ ├── 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 /.gitattributes: -------------------------------------------------------------------------------- 1 | # Disable LF normalization for all files 2 | * -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.ffs_* 2 | .svn 3 | .DS_Store 4 | *.ffs_db -------------------------------------------------------------------------------- /source/plg_system_t3/admin/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/bootstrap/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/admin/css/file-manager.css: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | 15 | /* -------------------------------------------------*/ 16 | /* T3 ADMIN STYLE 17 | ----------------------------------------------------*/ 18 | 19 | .container-fluid { 20 | padding-right: 15px; 21 | padding-left: 15px; 22 | } 23 | -------------------------------------------------------------------------------- /source/plg_system_t3/admin/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/admin/fonts/fa3/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/fonts/fa3/font/FontAwesome.otf -------------------------------------------------------------------------------- /source/plg_system_t3/admin/fonts/fa3/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/fonts/fa3/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/plg_system_t3/admin/fonts/fa3/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/fonts/fa3/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/plg_system_t3/admin/fonts/fa3/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/fonts/fa3/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /source/plg_system_t3/admin/fonts/fa3/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{FontAwesomePath}/fontawesome-webfont.eot?v=@{FontAwesomeVersion}'); 7 | src: url('@{FontAwesomePath}/fontawesome-webfont.eot?#iefix&v=@{FontAwesomeVersion}') format('embedded-opentype'), 8 | url('@{FontAwesomePath}/fontawesome-webfont.woff?v=@{FontAwesomeVersion}') format('woff'), 9 | url('@{FontAwesomePath}/fontawesome-webfont.ttf?v=@{FontAwesomeVersion}') format('truetype'), 10 | url('@{FontAwesomePath}/fontawesome-webfont.svg#fontawesomeregular?v=@{FontAwesomeVersion}') format('svg'); 11 | // src: url('@{FontAwesomePath}/FontAwesome.otf') format('opentype'); // used when developing fonts 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | -------------------------------------------------------------------------------- /source/plg_system_t3/admin/fonts/fa4/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/fonts/fa4/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /source/plg_system_t3/admin/fonts/fa4/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/fonts/fa4/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/plg_system_t3/admin/fonts/fa4/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/fonts/fa4/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/plg_system_t3/admin/fonts/fa4/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/fonts/fa4/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /source/plg_system_t3/admin/fonts/glyphicon/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/fonts/glyphicon/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /source/plg_system_t3/admin/fonts/glyphicon/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/fonts/glyphicon/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /source/plg_system_t3/admin/fonts/glyphicon/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/fonts/glyphicon/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /source/plg_system_t3/admin/framework_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/framework_preview.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/images/blank.gif -------------------------------------------------------------------------------- /source/plg_system_t3/admin/images/dot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/images/dot-2.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/images/dot.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/admin/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/images/loading.gif -------------------------------------------------------------------------------- /source/plg_system_t3/admin/images/notice-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/images/notice-alert.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/images/notice-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/images/notice-info.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/images/notice-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/images/notice-note.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/images/search-invert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/images/search-invert.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/images/selector-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/images/selector-arrow.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/admin/js/jquery.noconflict.js: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | if(typeof jQuery != 'undefined'){ 15 | window._jQuery = jQuery.noConflict(true); 16 | if(!window.jQuery){ 17 | window.jQuery = window._jQuery; 18 | window._jQuery = null; 19 | } 20 | } -------------------------------------------------------------------------------- /source/plg_system_t3/admin/layout/images/grouper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/layout/images/grouper.gif -------------------------------------------------------------------------------- /source/plg_system_t3/admin/layout/images/resizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/layout/images/resizer.gif -------------------------------------------------------------------------------- /source/plg_system_t3/admin/megamenu/images/ajaxloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/megamenu/images/ajaxloader.gif -------------------------------------------------------------------------------- /source/plg_system_t3/admin/megamenu/images/grid-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/megamenu/images/grid-bg.jpg -------------------------------------------------------------------------------- /source/plg_system_t3/admin/plugins/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/plugins/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/plugins/chosen/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/plugins/chosen/chosen-sprite@2x.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/plugins/miniColors/images/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/plugins/miniColors/images/colors.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/plugins/miniColors/images/trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/plugins/miniColors/images/trigger.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/thememagic/images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/thememagic/images/dot.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/tour/css/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/admin/tour/img/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/tour/img/close.gif -------------------------------------------------------------------------------- /source/plg_system_t3/admin/tour/img/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/admin/tour/img/leftright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/tour/img/leftright.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/tour/img/topbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/tour/img/topbottom.png -------------------------------------------------------------------------------- /source/plg_system_t3/admin/tour/img/webtreats-paper-pattern-6-grey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/admin/tour/img/webtreats-paper-pattern-6-grey.jpg -------------------------------------------------------------------------------- /source/plg_system_t3/admin/tpls/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/base-bs3/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/base-bs3/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/base-bs3/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/base-bs3/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false, 3 | "box-sizing": false, 4 | "box-model": false, 5 | "compatible-vendor-prefixes": false, 6 | "floats": false, 7 | "font-sizes": false, 8 | "gradients": false, 9 | "important": false, 10 | "known-properties": false, 11 | "outline-none": false, 12 | "qualified-headings": false, 13 | "regex-selectors": false, 14 | "shorthand": false, 15 | "text-indent": false, 16 | "unique-headings": false, 17 | "universal-selector": false, 18 | "unqualified-attributes": false 19 | } 20 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; 8 | margin-bottom: @line-height-computed; 9 | list-style: none; 10 | background-color: @breadcrumb-bg; 11 | border-radius: @border-radius-base; 12 | 13 | > li { 14 | display: inline-block; 15 | 16 | + li:before { 17 | padding: 0 5px; 18 | color: @breadcrumb-color; 19 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 20 | } 21 | } 22 | 23 | > .active { 24 | color: @breadcrumb-active-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/close.less: -------------------------------------------------------------------------------- 1 | // stylelint-disable property-no-vendor-prefix 2 | 3 | // 4 | // Close icons 5 | // -------------------------------------------------- 6 | 7 | 8 | .close { 9 | float: right; 10 | font-size: (@font-size-base * 1.5); 11 | font-weight: @close-font-weight; 12 | line-height: 1; 13 | color: @close-color; 14 | text-shadow: @close-text-shadow; 15 | .opacity(.2); 16 | 17 | &:hover, 18 | &:focus { 19 | color: @close-color; 20 | text-decoration: none; 21 | cursor: pointer; 22 | .opacity(.5); 23 | } 24 | 25 | // Additional properties for button version 26 | // iOS requires the button element instead of an anchor tag. 27 | // If you want the anchor version, it requires `href="#"`. 28 | // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile 29 | button& { 30 | padding: 0; 31 | cursor: pointer; 32 | background: transparent; 33 | border: 0; 34 | -webkit-appearance: none; 35 | appearance: none; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/component-animations.less: -------------------------------------------------------------------------------- 1 | // stylelint-disable selector-no-qualifying-type 2 | 3 | // 4 | // Component animations 5 | // -------------------------------------------------- 6 | 7 | // Heads up! 8 | // 9 | // We don't use the `.opacity()` mixin here since it causes a bug with text 10 | // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. 11 | 12 | .fade { 13 | opacity: 0; 14 | .transition(opacity .15s linear); 15 | 16 | &.in { 17 | opacity: 1; 18 | } 19 | } 20 | 21 | .collapse { 22 | display: none; 23 | 24 | &.in { display: block; } 25 | tr&.in { display: table-row; } 26 | tbody&.in { display: table-row-group; } 27 | } 28 | 29 | .collapsing { 30 | position: relative; 31 | height: 0; 32 | overflow: hidden; 33 | .transition-property(~"height, visibility"); 34 | .transition-duration(.35s); 35 | .transition-timing-function(ease); 36 | } 37 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | color: @text-color; 5 | background-color: @background; 6 | border-color: @border; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | 12 | .alert-link { 13 | color: darken(@text-color, 10%); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover, 6 | a&:focus { 7 | background-color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/border-radius.less: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | .border-top-radius(@radius) { 4 | border-top-left-radius: @radius; 5 | border-top-right-radius: @radius; 6 | } 7 | .border-right-radius(@radius) { 8 | border-top-right-radius: @radius; 9 | border-bottom-right-radius: @radius; 10 | } 11 | .border-bottom-radius(@radius) { 12 | border-bottom-right-radius: @radius; 13 | border-bottom-left-radius: @radius; 14 | } 15 | .border-left-radius(@radius) { 16 | border-top-left-radius: @radius; 17 | border-bottom-left-radius: @radius; 18 | } 19 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-right: auto; 6 | margin-left: auto; 7 | } 8 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/clearfix.less: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | .clearfix() { 14 | &:before, 15 | &:after { 16 | display: table; // 2 17 | content: " "; // 1 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/hide-text.less: -------------------------------------------------------------------------------- 1 | // stylelint-disable font-family-name-quotes, font-family-no-missing-generic-family-keyword 2 | 3 | // CSS image replacement 4 | // 5 | // Heads up! v3 launched with only `.hide-text()`, but per our pattern for 6 | // mixins being reused as classes with the same name, this doesn't hold up. As 7 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 8 | // 9 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 10 | 11 | // Deprecated as of v3.0.1 (has been removed in v4) 12 | .hide-text() { 13 | font: ~"0/0" a; 14 | color: transparent; 15 | text-shadow: none; 16 | background-color: transparent; 17 | border: 0; 18 | } 19 | 20 | // New mixin to use as of v3.0.1 21 | .text-hide() { 22 | .hide-text(); 23 | } 24 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/list-group.less: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | .list-group-item-variant(@state; @background; @color) { 4 | .list-group-item-@{state} { 5 | color: @color; 6 | background-color: @background; 7 | 8 | a&, 9 | button& { 10 | color: @color; 11 | 12 | .list-group-item-heading { 13 | color: inherit; 14 | } 15 | 16 | &:hover, 17 | &:focus { 18 | color: @color; 19 | background-color: darken(@background, 5%); 20 | } 21 | &.active, 22 | &.active:hover, 23 | &.active:focus { 24 | color: #fff; 25 | background-color: @color; 26 | border-color: @color; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | @opacity-ie: (@opacity * 100); // IE8 filter 5 | filter: ~"alpha(opacity=@{opacity-ie})"; 6 | opacity: @opacity; 7 | } 8 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/pagination.less: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: @padding-vertical @padding-horizontal; 8 | font-size: @font-size; 9 | line-height: @line-height; 10 | } 11 | &:first-child { 12 | > a, 13 | > span { 14 | .border-left-radius(@border-radius); 15 | } 16 | } 17 | &:last-child { 18 | > a, 19 | > span { 20 | .border-right-radius(@border-radius); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/panels.less: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { 4 | border-color: @border; 5 | 6 | & > .panel-heading { 7 | color: @heading-text-color; 8 | background-color: @heading-bg-color; 9 | border-color: @heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: @border; 13 | } 14 | .badge { 15 | color: @heading-bg-color; 16 | background-color: @heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: @border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/reset-text.less: -------------------------------------------------------------------------------- 1 | .reset-text() { 2 | font-family: @font-family-base; 3 | // We deliberately do NOT reset font-size. 4 | font-style: normal; 5 | font-weight: 400; 6 | line-height: @line-height-base; 7 | line-break: auto; 8 | text-align: left; // Fallback for where `start` is not supported 9 | text-align: start; 10 | text-decoration: none; 11 | text-shadow: none; 12 | text-transform: none; 13 | letter-spacing: normal; 14 | word-break: normal; 15 | word-spacing: normal; 16 | word-wrap: normal; 17 | white-space: normal; 18 | } 19 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: @direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .responsive-visibility() { 4 | display: block !important; 5 | table& { display: table !important; } 6 | tr& { display: table-row !important; } 7 | th&, 8 | td& { display: table-cell !important; } 9 | } 10 | 11 | .responsive-invisibility() { 12 | display: none !important; 13 | } 14 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // WebKit-specific. Other browsers will keep their default outline style. 5 | // (Initially tried to also force default via `outline: initial`, 6 | // but that seems to erroneously remove the outline in Firefox altogether.) 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/table-row.less: -------------------------------------------------------------------------------- 1 | // Tables 2 | 3 | .table-row-variant(@state; @background) { 4 | // Exact selectors below required to override `.table-striped` and prevent 5 | // inheritance to nested tables. 6 | .table > thead > tr, 7 | .table > tbody > tr, 8 | .table > tfoot > tr { 9 | > td.@{state}, 10 | > th.@{state}, 11 | &.@{state} > td, 12 | &.@{state} > th { 13 | background-color: @background; 14 | } 15 | } 16 | 17 | // Hover states for `.table-hover` 18 | // Note: this is not available for cells or rows within `thead` or `tfoot`. 19 | .table-hover > tbody > tr { 20 | > td.@{state}:hover, 21 | > th.@{state}:hover, 22 | &.@{state}:hover > td, 23 | &:hover > .@{state}, 24 | &.@{state}:hover > th { 25 | background-color: darken(@background, 5%); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/pager.less: -------------------------------------------------------------------------------- 1 | // 2 | // Pager pagination 3 | // -------------------------------------------------- 4 | 5 | 6 | .pager { 7 | padding-left: 0; 8 | margin: @line-height-computed 0; 9 | text-align: center; 10 | list-style: none; 11 | &:extend(.clearfix all); 12 | li { 13 | display: inline; 14 | > a, 15 | > span { 16 | display: inline-block; 17 | padding: 5px 14px; 18 | background-color: @pager-bg; 19 | border: 1px solid @pager-border; 20 | border-radius: @pager-border-radius; 21 | } 22 | 23 | > a:hover, 24 | > a:focus { 25 | text-decoration: none; 26 | background-color: @pager-hover-bg; 27 | } 28 | } 29 | 30 | .next { 31 | > a, 32 | > span { 33 | float: right; 34 | } 35 | } 36 | 37 | .previous { 38 | > a, 39 | > span { 40 | float: left; 41 | } 42 | } 43 | 44 | .disabled { 45 | > a, 46 | > a:hover, 47 | > a:focus, 48 | > span { 49 | color: @pager-disabled-color; 50 | cursor: @cursor-disabled; 51 | background-color: @pager-bg; 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/responsive-embed.less: -------------------------------------------------------------------------------- 1 | // Embeds responsive 2 | // 3 | // Credit: Nicolas Gallagher and SUIT CSS. 4 | 5 | .embed-responsive { 6 | position: relative; 7 | display: block; 8 | height: 0; 9 | padding: 0; 10 | overflow: hidden; 11 | 12 | .embed-responsive-item, 13 | iframe, 14 | embed, 15 | object, 16 | video { 17 | position: absolute; 18 | top: 0; 19 | bottom: 0; 20 | left: 0; 21 | width: 100%; 22 | height: 100%; 23 | border: 0; 24 | } 25 | } 26 | 27 | // Modifier class for 16:9 aspect ratio 28 | .embed-responsive-16by9 { 29 | padding-bottom: 56.25%; 30 | } 31 | 32 | // Modifier class for 4:3 aspect ratio 33 | .embed-responsive-4by3 { 34 | padding-bottom: 75%; 35 | } 36 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- 1 | // stylelint-disable selector-no-qualifying-type 2 | 3 | // 4 | // Thumbnails 5 | // -------------------------------------------------- 6 | 7 | 8 | // Mixin and adjust the regular image class 9 | .thumbnail { 10 | display: block; 11 | padding: @thumbnail-padding; 12 | margin-bottom: @line-height-computed; 13 | line-height: @line-height-base; 14 | background-color: @thumbnail-bg; 15 | border: 1px solid @thumbnail-border; 16 | border-radius: @thumbnail-border-radius; 17 | .transition(border .2s ease-in-out); 18 | 19 | > img, 20 | a > img { 21 | &:extend(.img-responsive); 22 | margin-right: auto; 23 | margin-left: auto; 24 | } 25 | 26 | // Add a hover state for linked versions only 27 | a&:hover, 28 | a&:focus, 29 | a&.active { 30 | border-color: @link-color; 31 | } 32 | 33 | // Image captions 34 | .caption { 35 | padding: @thumbnail-caption-padding; 36 | color: @thumbnail-caption-color; 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // 4 | // Utility classes 5 | // -------------------------------------------------- 6 | 7 | 8 | // Floats 9 | // ------------------------- 10 | 11 | .clearfix { 12 | .clearfix(); 13 | } 14 | .center-block { 15 | .center-block(); 16 | } 17 | .pull-right { 18 | float: right !important; 19 | } 20 | .pull-left { 21 | float: left !important; 22 | } 23 | 24 | 25 | // Toggling content 26 | // ------------------------- 27 | 28 | // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 29 | .hide { 30 | display: none !important; 31 | } 32 | .show { 33 | display: block !important; 34 | } 35 | .invisible { 36 | visibility: hidden; 37 | } 38 | .text-hide { 39 | .text-hide(); 40 | } 41 | 42 | 43 | // Hide from screenreaders and browsers 44 | // 45 | // Credit: HTML5 Boilerplate 46 | 47 | .hidden { 48 | display: none !important; 49 | } 50 | 51 | 52 | // For Affix plugin 53 | // ------------------------- 54 | 55 | .affix { 56 | position: fixed; 57 | } 58 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/bootstrap/less/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @well-bg; 12 | border: 1px solid @well-border; 13 | border-radius: @border-radius-base; 14 | .box-shadow(inset 0 1px 1px rgba(0, 0, 0, .05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0, 0, 0, .15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: @border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: @border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/component.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/css/frontediting.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved. 3 | * @license GNU General Public License version 2 or later; see LICENSE.txt 4 | */ 5 | 6 | /* Module edit in front-end */ 7 | 8 | .jmoddiv.jmodinside { 9 | position: relative; 10 | top: 0; 11 | left: 0; 12 | } 13 | .btn.jmodedit 14 | { 15 | z-index: 1001; 16 | display: block; 17 | position: absolute; 18 | top: 0; 19 | right: 0; 20 | } 21 | html[dir=rtl] .btn.jmodedit 22 | { 23 | right: auto; 24 | left: 0; 25 | } 26 | 27 | /* Menu edit in front-end */ 28 | 29 | .btn.jfedit-menu 30 | { 31 | z-index: 1002; 32 | display: block; 33 | } 34 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/css/jquery.autocomplete.css: -------------------------------------------------------------------------------- 1 | .ac_results { 2 | padding: 0px; 3 | border: 1px solid black; 4 | background-color: white; 5 | overflow: hidden; 6 | z-index: 99999; 7 | } 8 | 9 | .ac_results ul { 10 | width: 100%; 11 | list-style-position: outside; 12 | list-style: none; 13 | padding: 0; 14 | margin: 0; 15 | } 16 | 17 | .ac_results li { 18 | margin: 0px; 19 | padding: 2px 5px; 20 | cursor: default; 21 | display: block; 22 | /* 23 | if width will be 100% horizontal scrollbar will apear 24 | when scroll mode will be used 25 | */ 26 | /*width: 100%;*/ 27 | font: menu; 28 | font-size: 12px; 29 | /* 30 | it is very important, if line-height not setted or setted 31 | in relative units scroll will be broken in firefox 32 | */ 33 | line-height: 16px; 34 | overflow: hidden; 35 | } 36 | 37 | .ac_loading { 38 | background: white url('indicator.gif') right center no-repeat; 39 | } 40 | 41 | .ac_odd { 42 | background-color: #eee; 43 | } 44 | 45 | .ac_over { 46 | background-color: #0A246A; 47 | color: white; 48 | } 49 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/css/thememagic.css: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | body { 15 | visibility: hidden; 16 | cursor: pointer; 17 | } 18 | 19 | body.ready { 20 | visibility: visible; 21 | cursor: auto; 22 | } -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/etc/assets.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | fonts/font-awesome/css/font-awesome.min.css 9 | 10 | 11 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/fonts/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- 1 | @import url('font-awesome-base.css'); 2 | @import url('icomoon-to-fw.css'); -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/fonts/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | @import url('font-awesome-base.css'); 2 | @import url('icomoon-to-fw.css'); -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/fonts/font-awesome/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/base-bs3/fonts/font-awesome/font/FontAwesome.otf -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/fonts/font-awesome/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/base-bs3/fonts/font-awesome/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/fonts/font-awesome/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/base-bs3/fonts/font-awesome/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/fonts/font-awesome/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/base-bs3/fonts/font-awesome/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_config/modules/default_positions.php: -------------------------------------------------------------------------------- 1 | positions) ? $this->positions : $this->model->getPositions(); 14 | 15 | // Add custom position to options 16 | $customGroupText = Text::_('COM_MODULES_CUSTOM_POSITION'); 17 | 18 | // Build field 19 | $attr = array( 20 | 'id' => 'jform_position', 21 | 'list.select' => $this->item['position'], 22 | 'list.attr' => 'class="chzn-custom-value" ' 23 | . 'data-custom_group_text="' . $customGroupText . '" ' 24 | . 'data-no_results_text="' . Text::_('COM_MODULES_ADD_CUSTOM_POSITION') . '" ' 25 | . 'data-placeholder="' . Text::_('COM_MODULES_TYPE_OR_SELECT_POSITION') . '" ' 26 | ); 27 | 28 | echo JHtml::_('select.groupedlist', $positions, 'jform[position]', $attr); 29 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_config/templates/default.php: -------------------------------------------------------------------------------- 1 | 13 |
14 |

Suggestion to update configuration in backend

15 |
16 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_config/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_contact/categories/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_contact/category/default.php: -------------------------------------------------------------------------------- 1 | subtemplatename = 'items'; 13 | echo JLayoutHelper::render('joomla.content.category_default', $this); 14 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_contact/category/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_contact/contact/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_contact/featured/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_contact/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_content/archive/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_content/article/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_content/categories/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_content/category/blog_links.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 |
16 |

17 | 25 |
26 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_content/category/default.php: -------------------------------------------------------------------------------- 1 | 25 |
26 | 27 | subtemplatename = 'articles'; 29 | echo JLayoutHelper::render('joomla.content.category_default', $this); 30 | ?> 31 | 32 |
33 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_content/category/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_content/featured/default_links.php: -------------------------------------------------------------------------------- 1 | 12 | 20 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_content/featured/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_content/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_mailto/mailto/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_newsfeeds/category/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_newsfeeds/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_search/search/default.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 | params->get('show_page_heading')) : ?> 16 |

17 | escape($this->params->get('page_heading'))) : ?> 18 | escape($this->params->get('page_heading')); ?> 19 | 20 | escape($this->params->get('page_title')); ?> 21 | 22 |

23 | 24 | 25 | loadTemplate('form'); ?> 26 | error == null && count($this->results) > 0) : 27 | echo $this->loadTemplate('results'); 28 | else : 29 | echo $this->loadTemplate('error'); 30 | endif; ?> 31 |
32 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_search/search/default_error.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | error) : ?> 14 |
15 | escape($this->error); ?> 16 |
17 | 18 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_users/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_users/login/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_users/profile/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_users/registration/complete.php: -------------------------------------------------------------------------------- 1 | 12 |
13 | params->get('show_page_heading')) : ?> 14 |

15 | escape($this->params->get('page_heading')); ?> 16 |

17 | 18 |
19 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_users/registration/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_users/remind/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/com_users/reset/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/layouts/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/layouts/joomla/content/associations.php: -------------------------------------------------------------------------------- 1 | 15 | 22 | 12 | 20 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/layouts/joomla/content/categories_default_items.php: -------------------------------------------------------------------------------- 1 | item; 16 | $items = $displayData->get('items'); 17 | $params = $displayData->params; 18 | $extension = $displayData->get('extension'); 19 | $className = substr($extension, 4); 20 | // This will work for the core components but not necessarily for other components 21 | // that may have different pluralisation rules. 22 | if (substr($className, -1) == 's') 23 | { 24 | $className = rtrim($className, 's'); 25 | } 26 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/layouts/joomla/content/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/layouts/joomla/content/info_block/category.php: -------------------------------------------------------------------------------- 1 | escape($item->category_title); 14 | if (!isset($item->catslug)) { 15 | $item->catslug = $item->category_alias ? ($item->catid.':'.$item->category_alias) : $item->catid; 16 | } 17 | ?> 18 |
19 | 20 | get('link_category') && $item->catslug) : ?> 21 | catslug)), ''.$title.''); ?> 22 | 23 | 24 | 25 |
-------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/layouts/joomla/content/info_block/create_date.php: -------------------------------------------------------------------------------- 1 | 14 |
15 | 16 | 19 |
-------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/layouts/joomla/content/info_block/hits.php: -------------------------------------------------------------------------------- 1 | 13 |
14 | 15 | 16 | hits); ?> 17 |
-------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/layouts/joomla/content/info_block/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/layouts/joomla/content/info_block/modify_date.php: -------------------------------------------------------------------------------- 1 | 14 |
15 | 16 | 19 |
-------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/layouts/joomla/content/info_block/parent_category.php: -------------------------------------------------------------------------------- 1 | escape($item->parent_title); 15 | if(version_compare(JVERSION, '4', 'ge')) { 16 | class ContentHelperRoute extends \Joomla\Component\Content\Site\Helper\RouteHelper{}; 17 | } 18 | ?> 19 |
20 | 21 | get('link_parent_category') && !empty($item->parent_slug)) : ?> 22 | parent_slug)), ''.$title.''); ?> 23 | 24 | 25 | 26 |
-------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/layouts/joomla/content/info_block/publish_date.php: -------------------------------------------------------------------------------- 1 | 14 |
15 | 16 | 21 |
22 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/layouts/joomla/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/mod_breadcrumbs/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/mod_finder/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/mod_footer/default.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/mod_footer/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/mod_login/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/mod_menu/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/html/mod_search/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/imgs/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/base-bs3/imgs/blank.gif -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/js/jquery.noconflict.js: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | //jquery no-conflict 15 | if(typeof jQuery != 'undefined'){ 16 | window._jQuery = jQuery.noConflict(true); 17 | if(!window.jQuery){ 18 | window.jQuery = window._jQuery; 19 | window._jQuery = null; 20 | } 21 | 22 | //backup for T3 23 | window.$T3 = jQuery.noConflict(); 24 | } -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/less/mixins.less: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | 15 | // MIXINS 16 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/less/non-responsive-variables.less: -------------------------------------------------------------------------------- 1 | // re-define variable for none responsive 2 | @screen-xs: 1px; 3 | @screen-sm: 2px; 4 | @screen-md: 3px; 5 | @screen-lg: 9999px; 6 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/params/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/params/thememagic.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 |
6 | 7 |
8 |
9 |
-------------------------------------------------------------------------------- /source/plg_system_t3/base-bs3/tpls/ajax.json.php: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/css/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/base/bootstrap/css/navbar.css -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/base/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/base/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "validthis": true, 3 | "laxcomma" : true, 4 | "laxbreak" : true, 5 | "browser" : true, 6 | "eqnull" : true, 7 | "debug" : true, 8 | "devel" : true, 9 | "boss" : true, 10 | "expr" : true, 11 | "asi" : true 12 | } -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/js/google-code-prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .com { color: #93a1a1; } 2 | .lit { color: #195f91; } 3 | .pun, .opn, .clo { color: #93a1a1; } 4 | .fun { color: #dc322f; } 5 | .str, .atv { color: #D14; } 6 | .kwd, .linenums .tag { color: #1e347b; } 7 | .typ, .atn, .dec, .var { color: teal; } 8 | .pln { color: #48484c; } 9 | 10 | .prettyprint { 11 | padding: 8px; 12 | background-color: #f7f7f9; 13 | border: 1px solid #e1e1e8; 14 | } 15 | .prettyprint.linenums { 16 | -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 17 | -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 18 | box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 19 | } 20 | 21 | /* Specify class=linenums on a pre to get line numbering */ 22 | ol.linenums { 23 | margin: 0 0 0 33px; /* IE indents via margin-left */ 24 | } 25 | ol.linenums li { 26 | padding-left: 12px; 27 | color: #bebec5; 28 | line-height: 18px; 29 | text-shadow: 0 1px 0 #fff; 30 | } -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/js/tests/server.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Simple connect server for phantom.js 3 | * Adapted from Modernizr 4 | */ 5 | 6 | var connect = require('connect') 7 | , http = require('http') 8 | , fs = require('fs') 9 | , app = connect() 10 | .use(connect.static(__dirname + '/../../')); 11 | 12 | http.createServer(app).listen(3000); 13 | 14 | fs.writeFileSync(__dirname + '/pid.txt', process.pid, 'utf-8') -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/js/tests/unit/bootstrap-affix.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | 3 | module("bootstrap-affix") 4 | 5 | test("should be defined on jquery object", function () { 6 | ok($(document.body).affix, 'affix method is defined') 7 | }) 8 | 9 | test("should return element", function () { 10 | ok($(document.body).affix()[0] == document.body, 'document.body returned') 11 | }) 12 | 13 | test("should exit early if element is not visible", function () { 14 | var $affix = $('
').affix() 15 | $affix.data('affix').checkPosition() 16 | ok(!$affix.hasClass('affix'), 'affix class was not added') 17 | }) 18 | 19 | }) -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/js/tests/unit/bootstrap-phantom.js: -------------------------------------------------------------------------------- 1 | // Logging setup for phantom integration 2 | // adapted from Modernizr 3 | 4 | QUnit.begin = function () { 5 | console.log("Starting test suite") 6 | console.log("================================================\n") 7 | } 8 | 9 | QUnit.moduleDone = function (opts) { 10 | if (opts.failed === 0) { 11 | console.log("\u2714 All tests passed in '" + opts.name + "' module") 12 | } else { 13 | console.log("\u2716 " + opts.failed + " tests failed in '" + opts.name + "' module") 14 | } 15 | } 16 | 17 | QUnit.done = function (opts) { 18 | console.log("\n================================================") 19 | console.log("Tests completed in " + opts.runtime + " milliseconds") 20 | console.log(opts.passed + " tests of " + opts.total + " passed, " + opts.failed + " failed.") 21 | } -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/js/tests/unit/bootstrap-scrollspy.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | 3 | module("bootstrap-scrollspy") 4 | 5 | test("should be defined on jquery object", function () { 6 | ok($(document.body).scrollspy, 'scrollspy method is defined') 7 | }) 8 | 9 | test("should return element", function () { 10 | ok($(document.body).scrollspy()[0] == document.body, 'document.body returned') 11 | }) 12 | 13 | test("should switch active class on scroll", function () { 14 | var sectionHTML = '
' 15 | , $section = $(sectionHTML).append('#qunit-fixture') 16 | , topbarHTML ='
' 17 | + '
' 18 | + '
' 19 | + '

Bootstrap

' 20 | + '' 23 | + '
' 24 | + '
' 25 | + '
' 26 | , $topbar = $(topbarHTML).scrollspy() 27 | 28 | ok($topbar.find('.active', true)) 29 | }) 30 | 31 | }) -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/js/tests/unit/bootstrap-transition.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | 3 | module("bootstrap-transition") 4 | 5 | test("should be defined on jquery support object", function () { 6 | ok($.support.transition !== undefined, 'transition object is defined') 7 | }) 8 | 9 | test("should provide an end object", function () { 10 | ok($.support.transition ? $.support.transition.end : true, 'end string is defined') 11 | }) 12 | 13 | }) -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/less/accordion.less: -------------------------------------------------------------------------------- 1 | // 2 | // Accordion 3 | // -------------------------------------------------- 4 | 5 | 6 | // Parent container 7 | .accordion { 8 | margin-bottom: @baseLineHeight; 9 | } 10 | 11 | // Group == heading + body 12 | .accordion-group { 13 | margin-bottom: 2px; 14 | border: 1px solid #e5e5e5; 15 | .border-radius(@baseBorderRadius); 16 | } 17 | .accordion-heading { 18 | border-bottom: 0; 19 | } 20 | .accordion-heading .accordion-toggle { 21 | display: block; 22 | padding: 8px 15px; 23 | } 24 | 25 | // General toggle styles 26 | .accordion-toggle { 27 | cursor: pointer; 28 | } 29 | 30 | // Inner needs the styles because you can't animate properly with any styles on the element 31 | .accordion-inner { 32 | padding: 9px 15px; 33 | border-top: 1px solid #e5e5e5; 34 | } 35 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: 8px 15px; 8 | margin: 0 0 @baseLineHeight; 9 | list-style: none; 10 | background-color: #f5f5f5; 11 | .border-radius(@baseBorderRadius); 12 | > li { 13 | display: inline-block; 14 | .ie7-inline-block(); 15 | text-shadow: 0 1px 0 @white; 16 | > .divider { 17 | padding: 0 5px; 18 | color: #ccc; 19 | } 20 | } 21 | > .active { 22 | color: @grayLight; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/less/close.less: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | float: right; 8 | font-size: 20px; 9 | font-weight: bold; 10 | line-height: @baseLineHeight; 11 | color: @black; 12 | text-shadow: 0 1px 0 rgba(255,255,255,1); 13 | .opacity(20); 14 | &:hover, 15 | &:focus { 16 | color: @black; 17 | text-decoration: none; 18 | cursor: pointer; 19 | .opacity(40); 20 | } 21 | } 22 | 23 | // Additional properties for button version 24 | // iOS requires the button element instead of an anchor tag. 25 | // If you want the anchor version, it requires `href="#"`. 26 | button.close { 27 | padding: 0; 28 | cursor: pointer; 29 | background: transparent; 30 | border: 0; 31 | -webkit-appearance: none; 32 | } -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/less/component-animations.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | 6 | .fade { 7 | opacity: 0; 8 | .transition(opacity .15s linear); 9 | &.in { 10 | opacity: 1; 11 | } 12 | } 13 | 14 | .collapse { 15 | position: relative; 16 | height: 0; 17 | overflow: hidden; 18 | .transition(height .35s ease); 19 | &.in { 20 | height: auto; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/less/grid.less: -------------------------------------------------------------------------------- 1 | // 2 | // Grid system 3 | // -------------------------------------------------- 4 | 5 | 6 | // Fixed (940px) 7 | #grid > .core(@gridColumnWidth, @gridGutterWidth); 8 | 9 | // Fluid (940px) 10 | #grid > .fluid(@fluidGridColumnWidth, @fluidGridGutterWidth); 11 | 12 | // Reset utility classes due to specificity 13 | [class*="span"].hide, 14 | .row-fluid [class*="span"].hide { 15 | display: none; 16 | } 17 | 18 | [class*="span"].pull-right, 19 | .row-fluid [class*="span"].pull-right { 20 | float: right; 21 | } 22 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/less/hero-unit.less: -------------------------------------------------------------------------------- 1 | // 2 | // Hero unit 3 | // -------------------------------------------------- 4 | 5 | 6 | .hero-unit { 7 | padding: 60px; 8 | margin-bottom: 30px; 9 | font-size: 18px; 10 | font-weight: 200; 11 | line-height: @baseLineHeight * 1.5; 12 | color: @heroUnitLeadColor; 13 | background-color: @heroUnitBackground; 14 | .border-radius(6px); 15 | h1 { 16 | margin-bottom: 0; 17 | font-size: 60px; 18 | line-height: 1; 19 | color: @heroUnitHeadingColor; 20 | letter-spacing: -1px; 21 | } 22 | li { 23 | line-height: @baseLineHeight * 1.5; // Reset since we specify in type.less 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/less/layouts.less: -------------------------------------------------------------------------------- 1 | // 2 | // Layouts 3 | // -------------------------------------------------- 4 | 5 | 6 | // Container (centered, fixed-width layouts) 7 | .container { 8 | .container-fixed(); 9 | } 10 | 11 | // Fluid layouts (left aligned, with sidebar, min- & max-width content) 12 | .container-fluid { 13 | padding-right: @gridGutterWidth; 14 | padding-left: @gridGutterWidth; 15 | .clearfix(); 16 | } -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/less/media.less: -------------------------------------------------------------------------------- 1 | // Media objects 2 | // Source: http://stubbornella.org/content/?p=497 3 | // -------------------------------------------------- 4 | 5 | 6 | // Common styles 7 | // ------------------------- 8 | 9 | // Clear the floats 10 | .media, 11 | .media-body { 12 | overflow: hidden; 13 | *overflow: visible; 14 | zoom: 1; 15 | } 16 | 17 | // Proper spacing between instances of .media 18 | .media, 19 | .media .media { 20 | margin-top: 15px; 21 | } 22 | .media:first-child { 23 | margin-top: 0; 24 | } 25 | 26 | // For images and videos, set to block 27 | .media-object { 28 | display: block; 29 | } 30 | 31 | // Reset margins on headings for tighter default spacing 32 | .media-heading { 33 | margin: 0 0 5px; 34 | } 35 | 36 | 37 | // Media image alignment 38 | // ------------------------- 39 | 40 | .media > .pull-left { 41 | margin-right: 10px; 42 | } 43 | .media > .pull-right { 44 | margin-left: 10px; 45 | } 46 | 47 | 48 | // Media list variation 49 | // ------------------------- 50 | 51 | // Undo default ul/ol styles 52 | .media-list { 53 | margin-left: 0; 54 | list-style: none; 55 | } 56 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/less/pager.less: -------------------------------------------------------------------------------- 1 | // 2 | // Pager pagination 3 | // -------------------------------------------------- 4 | 5 | 6 | .pager { 7 | margin: @baseLineHeight 0; 8 | list-style: none; 9 | text-align: center; 10 | .clearfix(); 11 | } 12 | .pager li { 13 | display: inline; 14 | } 15 | .pager li > a, 16 | .pager li > span { 17 | display: inline-block; 18 | padding: 5px 14px; 19 | background-color: #fff; 20 | border: 1px solid #ddd; 21 | .border-radius(15px); 22 | } 23 | .pager li > a:hover, 24 | .pager li > a:focus { 25 | text-decoration: none; 26 | background-color: #f5f5f5; 27 | } 28 | .pager .next > a, 29 | .pager .next > span { 30 | float: right; 31 | } 32 | .pager .previous > a, 33 | .pager .previous > span { 34 | float: left; 35 | } 36 | .pager .disabled > a, 37 | .pager .disabled > a:hover, 38 | .pager .disabled > a:focus, 39 | .pager .disabled > span { 40 | color: @grayLight; 41 | background-color: #fff; 42 | cursor: default; 43 | } -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/less/responsive-1200px-min.less: -------------------------------------------------------------------------------- 1 | // 2 | // Responsive: Large desktop and up 3 | // -------------------------------------------------- 4 | 5 | 6 | @media (min-width: 1200px) { 7 | 8 | // Fixed grid 9 | #grid > .core(@gridColumnWidth1200, @gridGutterWidth1200); 10 | 11 | // Fluid grid 12 | #grid > .fluid(@fluidGridColumnWidth1200, @fluidGridGutterWidth1200); 13 | 14 | // Input grid 15 | #grid > .input(@gridColumnWidth1200, @gridGutterWidth1200); 16 | 17 | // Thumbnails 18 | .thumbnails { 19 | margin-left: -@gridGutterWidth1200; 20 | } 21 | .thumbnails > li { 22 | margin-left: @gridGutterWidth1200; 23 | } 24 | .row-fluid .thumbnails { 25 | margin-left: 0; 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/less/responsive-768px-979px.less: -------------------------------------------------------------------------------- 1 | // 2 | // Responsive: Tablet to desktop 3 | // -------------------------------------------------- 4 | 5 | 6 | @media (min-width: 768px) and (max-width: 979px) { 7 | 8 | // Fixed grid 9 | #grid > .core(@gridColumnWidth768, @gridGutterWidth768); 10 | 11 | // Fluid grid 12 | #grid > .fluid(@fluidGridColumnWidth768, @fluidGridGutterWidth768); 13 | 14 | // Input grid 15 | #grid > .input(@gridColumnWidth768, @gridGutterWidth768); 16 | 17 | // No need to reset .thumbnails here since it's the same @gridGutterWidth 18 | 19 | } 20 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Quick floats 7 | .pull-right { 8 | float: right; 9 | } 10 | .pull-left { 11 | float: left; 12 | } 13 | 14 | // Toggling content 15 | .hide { 16 | display: none; 17 | } 18 | .show { 19 | display: block; 20 | } 21 | 22 | // Visibility 23 | .invisible { 24 | visibility: hidden; 25 | } 26 | 27 | // For Affix plugin 28 | .affix { 29 | position: fixed; 30 | } 31 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/bootstrap/less/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @wellBackground; 12 | border: 1px solid darken(@wellBackground, 7%); 13 | .border-radius(@baseBorderRadius); 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-large { 23 | padding: 24px; 24 | .border-radius(@borderRadiusLarge); 25 | } 26 | .well-small { 27 | padding: 9px; 28 | .border-radius(@borderRadiusSmall); 29 | } 30 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/component.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/css/thememagic.css: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | body { 15 | visibility: hidden; 16 | cursor: pointer; 17 | } 18 | 19 | body.ready { 20 | visibility: visible; 21 | cursor: auto; 22 | } -------------------------------------------------------------------------------- /source/plg_system_t3/base/etc/assets.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | fonts/font-awesome/css/font-awesome.min.css 9 | 10 | 11 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_contact/categories/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_contact/category/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_contact/contact/default_articles.php: -------------------------------------------------------------------------------- 1 | 15 | params->get('show_articles')) : ?> 16 |
17 | 24 |
25 | 26 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_contact/contact/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_contact/featured/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_contact/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_content/archive/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_content/article/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_content/categories/default.php: -------------------------------------------------------------------------------- 1 | addScriptDeclaration(" 15 | jQuery(function($) { 16 | $('.categories-list').find('[id^=category-btn-]').each(function(index, btn) { 17 | var btn = $(btn); 18 | btn.on('click', function() { 19 | btn.find('span').toggleClass('icon-plus'); 20 | btn.find('span').toggleClass('icon-minus'); 21 | }); 22 | }); 23 | });"); 24 | ?> 25 | 26 |
27 | loadTemplate('items'); 30 | ?> 31 |
32 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_content/categories/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_content/category/blog_links.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 |
15 |

16 | 24 |
25 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_content/category/default.php: -------------------------------------------------------------------------------- 1 | 16 |
17 | 18 | subtemplatename = 'articles'; 20 | echo JLayoutHelper::render('joomla.content.category_default', $this); 21 | ?> 22 | 23 |
24 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_content/category/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_content/featured/default_links.php: -------------------------------------------------------------------------------- 1 | 12 | 20 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_content/featured/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_content/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_newsfeeds/category/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_newsfeeds/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_search/search/default.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 | params->get('show_page_heading')) : ?> 16 |

17 | escape($this->params->get('page_heading'))) :?> 18 | escape($this->params->get('page_heading')); ?> 19 | 20 | escape($this->params->get('page_title')); ?> 21 | 22 |

23 | 24 | 25 | loadTemplate('form'); ?> 26 | error == null && count($this->results) > 0) : 27 | echo $this->loadTemplate('results'); 28 | else : 29 | echo $this->loadTemplate('error'); 30 | endif; ?> 31 |
32 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_users/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_users/login/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_users/profile/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_users/registration/complete.php: -------------------------------------------------------------------------------- 1 | 12 |
13 | params->get('show_page_heading')) : ?> 14 |

15 | escape($this->params->get('page_heading')); ?> 16 |

17 | 18 |
19 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_users/registration/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_users/remind/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/com_users/reset/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/layouts/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/layouts/joomla/content/associations.php: -------------------------------------------------------------------------------- 1 | 15 | 22 | 12 | 20 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/layouts/joomla/content/categories_default_items.php: -------------------------------------------------------------------------------- 1 | item; 16 | $items = $displayData->get('items'); 17 | $params = $displayData->params; 18 | $extension = $displayData->get('extension'); 19 | $className = substr($extension, 4); 20 | // This will work for the core components but not necessarily for other components 21 | // that may have different pluralisation rules. 22 | if (substr($className, -1) == 's') 23 | { 24 | $className = rtrim($className, 's'); 25 | } 26 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/layouts/joomla/content/fulltext_image.php: -------------------------------------------------------------------------------- 1 | images); 14 | if (empty($images->image_fulltext)) return ; 15 | 16 | $imgfloat = (empty($images->float_fulltext)) ? $params->get('float_fulltext') : $images->float_fulltext; 17 | ?> 18 | 19 |
20 | image_fulltext_caption): ?> 22 | image_fulltext_caption) . '"'; ?> 23 | 24 | src="image_fulltext); ?>" 25 | alt="image_fulltext_alt); ?>" itemprop="image"/> 26 |
27 | 28 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/layouts/joomla/content/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/layouts/joomla/content/info_block/author.php: -------------------------------------------------------------------------------- 1 | created_by_alias ? $item->created_by_alias : $item->author); 13 | $author = '' . $author . ''; 14 | ?> 15 | 16 | 24 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/layouts/joomla/content/info_block/category.php: -------------------------------------------------------------------------------- 1 | escape($item->category_title); 13 | if (!isset($item->catslug)) { 14 | $item->catslug = $item->category_alias ? ($item->catid.':'.$item->category_alias) : $item->catid; 15 | } 16 | ?> 17 |
18 | 19 | get('link_category') && $item->catslug) : ?> 20 | catslug)), ''.$title.''); ?> 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /source/plg_system_t3/base/html/layouts/joomla/content/info_block/create_date.php: -------------------------------------------------------------------------------- 1 | 13 |
14 | 15 | 18 |
-------------------------------------------------------------------------------- /source/plg_system_t3/base/html/layouts/joomla/content/info_block/hits.php: -------------------------------------------------------------------------------- 1 | 13 |
14 | 15 | 16 | hits); ?> 17 |
-------------------------------------------------------------------------------- /source/plg_system_t3/base/html/layouts/joomla/content/info_block/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/layouts/joomla/content/info_block/modify_date.php: -------------------------------------------------------------------------------- 1 | 13 |
14 | 15 | 18 |
-------------------------------------------------------------------------------- /source/plg_system_t3/base/html/layouts/joomla/content/info_block/parent_category.php: -------------------------------------------------------------------------------- 1 | escape($item->parent_title); 15 | ?> 16 |
17 | 18 | get('link_parent_category') && !empty($item->parent_slug)) : ?> 19 | parent_slug)), ''.$title.''); ?> 20 | 21 | 22 | 23 |
-------------------------------------------------------------------------------- /source/plg_system_t3/base/html/layouts/joomla/content/info_block/publish_date.php: -------------------------------------------------------------------------------- 1 | 12 |
13 | 14 | 17 |
-------------------------------------------------------------------------------- /source/plg_system_t3/base/html/layouts/joomla/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/mod_breadcrumbs/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/mod_footer/default.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/mod_footer/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/mod_login/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/mod_menu/default_heading.php: -------------------------------------------------------------------------------- 1 | 13 | title; ?> -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/mod_menu/default_separator.php: -------------------------------------------------------------------------------- 1 | anchor_title ? ' title="'.$item->anchor_title.'" ' : ''; 14 | if ($item->menu_image) { 15 | $item->params->get('menu_text', 1 ) ? 16 | $linktype = ''.$item->title.''.$item->title.'' : 17 | $linktype = ''.$item->title.''; 18 | } 19 | else { 20 | $linktype = $item->title; 21 | } 22 | 23 | ?>> 24 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/mod_menu/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/html/mod_search/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/imgs/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/base/imgs/blank.gif -------------------------------------------------------------------------------- /source/plg_system_t3/base/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/js/jquery.noconflict.js: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | //jquery no-conflict 15 | if(typeof jQuery != 'undefined'){ 16 | window._jQuery = jQuery.noConflict(true); 17 | if(!window.jQuery){ 18 | window.jQuery = window._jQuery; 19 | window._jQuery = null; 20 | } 21 | 22 | //backup for T3 23 | window.$T3 = jQuery.noConflict(); 24 | } -------------------------------------------------------------------------------- /source/plg_system_t3/base/less/global-modules-responsive.less: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | /* MODULE STYLE 15 | --------------------------------------------------------- */ 16 | .module-style () { 17 | 18 | } -------------------------------------------------------------------------------- /source/plg_system_t3/base/less/global-modules.less: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | /* MODULE STYLE 15 | --------------------------------------------------------- */ 16 | .module-style () { 17 | 18 | } -------------------------------------------------------------------------------- /source/plg_system_t3/base/less/grid-ext.less: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | 15 | // Added "wrap" element 16 | .wrap { 17 | width: auto; 18 | clear: both; 19 | } 20 | 21 | // Fixed grid 22 | #grid-extend > .offset(@gridColumnWidth, @gridGutterWidth); 23 | 24 | // make to be first col - custom by JOOM 25 | .row-fluid .spanfirst { margin-left: 0 !important; } 26 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/less/non-responsive.less: -------------------------------------------------------------------------------- 1 | /* Non-responsive overrides 2 | * 3 | * Utilitze the following CSS to disable the responsive-ness of the container, 4 | * grid system, and navbar. 5 | */ 6 | 7 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/params/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/base/tpls/ajax.json.php: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/css/depend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/css/depend.css -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/css/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/admin-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/admin-bg.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/apply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/apply.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/arrow-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/arrow-blue.png -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/arrow-level1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/arrow-level1.png -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/arrow-list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/arrow-list.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/block-head.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/block-head.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/block-setting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/block-setting.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/bt-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/bt-close.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/cancel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/cancel.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/close-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/close-all.png -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/copy.png -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/del.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/del.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/del2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/del2.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/grad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/grad.png -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/icon-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/icon-default.png -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/icon-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/icon-message.png -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/icon-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/icon-move.png -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/icon-moved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/icon-moved.png -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/icon-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/icon-save.png -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/icon-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/icon-success.png -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/level1-block.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/level1-block.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/level2-block.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/level2-block.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/level2-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/level2-close.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/lightbulb.png -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/message-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/message-bg.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/normal-check.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/normal-check.jpg -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/open-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/open-all.png -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/popup-list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/popup-list.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/success-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/success-bg.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/table-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/table-bg.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/tabs-setting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/tabs-setting.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/themes-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/themes-default.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/toggle-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/toggle-btn.png -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/images/tooltip-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/depend/images/tooltip-bg.gif -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/includes/depend/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/includes/joomla25/html/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/plg_system_t3/includes/joomla25/html/bootstrap.php -------------------------------------------------------------------------------- /source/plg_system_t3/includes/joomla25/layout/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/plg_system_t3/includes/joomla25/layout/layout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/plg_system_t3/language/en-GB/en-GB.plg_system_t3.j25.compat.ini: -------------------------------------------------------------------------------- 1 | JGLOBAL_HITS_COUNT="Hits: %s" -------------------------------------------------------------------------------- /source/plg_system_t3/language/en-GB/en-GB.plg_system_t3.sys.ini: -------------------------------------------------------------------------------- 1 | PLG_T3_XML_DESCRIPTION="T3 Framework plugin" -------------------------------------------------------------------------------- /source/tpl_t3_blank/component.php: -------------------------------------------------------------------------------- 1 | addStylesheet (T3_TEMPLATE_URL.'/css/component.css'); -------------------------------------------------------------------------------- /source/tpl_t3_blank/css/component.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .com_content body, 4 | .com_mailto body { 5 | padding-top: 0; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/css/home-responsive.css: -------------------------------------------------------------------------------- 1 | @media (max-width: 767px) { 2 | .home .t3-sl-1, 3 | .home .t3-sl-5 { 4 | margin-left: -20px; 5 | margin-right: -20px; 6 | } 7 | .home .t3-sl-1 .jumbotron, 8 | .home .t3-sl-5 .jumbotron { 9 | padding-top: 30px; 10 | padding-bottom: 10px; 11 | } 12 | .home .t3-sl-1 .jumbotron .btn-large, 13 | .home .t3-sl-5 .jumbotron .btn-large { 14 | font-size: 16px; 15 | padding: 12px 16px; 16 | } 17 | .home .t3-sl-2 { 18 | text-align: center; 19 | } 20 | .home .t3-sl-2 p { 21 | font-size: 14px; 22 | line-height: 20px; 23 | } 24 | .home .t3-sl-3 p img { 25 | margin-bottom: 0; 26 | margin-top: 20px; 27 | } 28 | .home .t3-sl-3 p, 29 | .home .t3-sl-4 p { 30 | font-size: 14px; 31 | line-height: 20px; 32 | } 33 | .home .t3-sl-3 .jumbotron, 34 | .home .t3-sl-4 .jumbotron { 35 | padding-bottom: 0; 36 | } 37 | .home .t3-sl-3 .jumbotron h1, 38 | .home .t3-sl-4 .jumbotron h1 { 39 | margin-bottom: 10px; 40 | margin-top: 10px; 41 | } 42 | .home .t3-sl-3 .jumbotron p, 43 | .home .t3-sl-4 .jumbotron p { 44 | font-size: 14px; 45 | } 46 | } -------------------------------------------------------------------------------- /source/tpl_t3_blank/css/rtl/component.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .com_content body, 4 | .com_mailto body { 5 | padding-top: 0; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/css/rtl/dark/component.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .com_content body, 4 | .com_mailto body { 5 | padding-top: 0; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/css/rtl/green/component.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .com_content body, 4 | .com_mailto body { 5 | padding-top: 0; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/css/rtl/home-responsive.css: -------------------------------------------------------------------------------- 1 | @media (max-width: 767px) { 2 | .home .t3-sl-1, 3 | .home .t3-sl-5 { 4 | margin-right: -20px; 5 | margin-left: -20px; 6 | } 7 | .home .t3-sl-1 .jumbotron, 8 | .home .t3-sl-5 .jumbotron { 9 | padding-top: 30px; 10 | padding-bottom: 10px; 11 | } 12 | .home .t3-sl-1 .jumbotron .btn-large, 13 | .home .t3-sl-5 .jumbotron .btn-large { 14 | font-size: 16px; 15 | padding: 12px 16px; 16 | } 17 | .home .t3-sl-2 { 18 | text-align: center; 19 | } 20 | .home .t3-sl-2 p { 21 | font-size: 14px; 22 | line-height: 20px; 23 | } 24 | .home .t3-sl-3 p img { 25 | margin-bottom: 0; 26 | margin-top: 20px; 27 | } 28 | .home .t3-sl-3 p, 29 | .home .t3-sl-4 p { 30 | font-size: 14px; 31 | line-height: 20px; 32 | } 33 | .home .t3-sl-3 .jumbotron, 34 | .home .t3-sl-4 .jumbotron { 35 | padding-bottom: 0; 36 | } 37 | .home .t3-sl-3 .jumbotron h1, 38 | .home .t3-sl-4 .jumbotron h1 { 39 | margin-bottom: 10px; 40 | margin-top: 10px; 41 | } 42 | .home .t3-sl-3 .jumbotron p, 43 | .home .t3-sl-4 .jumbotron p { 44 | font-size: 14px; 45 | } 46 | } -------------------------------------------------------------------------------- /source/tpl_t3_blank/css/rtl/orange/component.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .com_content body, 4 | .com_mailto body { 5 | padding-top: 0; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/css/rtl/red/component.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .com_content body, 4 | .com_mailto body { 5 | padding-top: 0; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/css/themes/dark/component.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .com_content body, 4 | .com_mailto body { 5 | padding-top: 0; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/css/themes/green/component.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .com_content body, 4 | .com_mailto body { 5 | padding-top: 0; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/css/themes/orange/component.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .com_content body, 4 | .com_mailto body { 5 | padding-top: 0; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/css/themes/red/component.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .com_content body, 4 | .com_mailto body { 5 | padding-top: 0; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/etc/layout/default-joomla-2.5.ini: -------------------------------------------------------------------------------- 1 | 2 | [head-search] 3 | position="position-0" 4 | 5 | [mainnav] 6 | position="position-1" 7 | 8 | [sidebar-1] 9 | position="position-5" 10 | 11 | [sidebar-2] 12 | position="position-7" 13 | 14 | [navhelper] 15 | position="position-2" 16 | 17 | [footer] 18 | position="footer" 19 | 20 | [block1@spotlight-1] 21 | position="none" 22 | default="span12" 23 | 24 | [block1@spotlight-2] 25 | position="none" 26 | default="span12" 27 | 28 | [block1@footnav] 29 | position="position-9" 30 | default="span4" 31 | 32 | [block2@footnav] 33 | position="position-10" 34 | default="span4" 35 | 36 | [block3@footnav] 37 | position="position-11" 38 | default="span4" -------------------------------------------------------------------------------- /source/tpl_t3_blank/etc/layout/default-joomla-3.x.ini: -------------------------------------------------------------------------------- 1 | 2 | [head-search] 3 | position="position-0" 4 | 5 | [sidebar-1] 6 | position="None" 7 | 8 | [sidebar-2] 9 | position="position-7" 10 | 11 | [navhelper] 12 | position="position-2" 13 | 14 | [footer] 15 | position="footer" 16 | 17 | [block1@spotlight-1] 18 | position="none" 19 | default="span12" 20 | 21 | [block1@spotlight-2] 22 | position="none" 23 | default="span12" 24 | 25 | [block1@footnav] 26 | position="none" 27 | default="span12" -------------------------------------------------------------------------------- /source/tpl_t3_blank/etc/layout/home-1.ini: -------------------------------------------------------------------------------- 1 | 2 | [head-search] 3 | position="head-search" 4 | 5 | [languageswitcherload] 6 | position="languageswitcherload" 7 | 8 | [home-1] 9 | position="home-1" 10 | 11 | [home-2] 12 | position="home-2" 13 | 14 | [home-3] 15 | position="home-3" 16 | 17 | [home-4] 18 | position="home-4" 19 | 20 | [home-5] 21 | position="home-5" 22 | 23 | [footer] 24 | position="footer" 25 | 26 | [block1@footnav] 27 | position="footer-1" 28 | default="span2" 29 | xtablet="span4" 30 | tablet="span4" 31 | 32 | [block2@footnav] 33 | position="footer-2" 34 | default="span2" 35 | xtablet="span4" 36 | tablet="span4" 37 | 38 | [block3@footnav] 39 | position="footer-3" 40 | default="span2" 41 | xtablet="span4" 42 | tablet="span4" 43 | 44 | [block4@footnav] 45 | position="footer-4" 46 | default="span2" 47 | xtablet="span4 spanfirst" 48 | tablet="span4 spanfirst" 49 | 50 | [block5@footnav] 51 | position="footer-5" 52 | default="span2" 53 | xtablet="span4" 54 | tablet="span4" 55 | 56 | [block6@footnav] 57 | position="footer-6" 58 | default="span2" 59 | xtablet="span4" 60 | tablet="span4" -------------------------------------------------------------------------------- /source/tpl_t3_blank/etc/layout/home-2.ini: -------------------------------------------------------------------------------- 1 | 2 | [head-search] 3 | position="head-search" 4 | 5 | [home-1] 6 | position="home-1" 7 | 8 | [sidebar-1] 9 | position="sidebar-1" 10 | 11 | [sidebar-2] 12 | position="sidebar-2" 13 | 14 | [home-5] 15 | position="home-5" 16 | 17 | [footer] 18 | position="footer" 19 | 20 | [block1@footnav] 21 | position="footer-1" 22 | default="span2" 23 | xtablet="span4" 24 | tablet="span4" 25 | 26 | [block2@footnav] 27 | position="footer-2" 28 | default="span2" 29 | xtablet="span4" 30 | tablet="span4" 31 | 32 | [block3@footnav] 33 | position="footer-3" 34 | default="span2" 35 | xtablet="span4" 36 | tablet="span4" 37 | 38 | [block4@footnav] 39 | position="footer-4" 40 | default="span2" 41 | xtablet="span4" 42 | tablet="span4" 43 | 44 | [block5@footnav] 45 | position="footer-5" 46 | default="span2" 47 | xtablet="span4" 48 | tablet="span4" 49 | 50 | [block6@footnav] 51 | position="footer-6" 52 | default="span2" 53 | xtablet="span4" 54 | tablet="span4" -------------------------------------------------------------------------------- /source/tpl_t3_blank/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/favicon.ico -------------------------------------------------------------------------------- /source/tpl_t3_blank/fonts/font-awesome/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | *.db 4 | *.db.old 5 | *.swp 6 | *.db-journal 7 | 8 | .coverage 9 | .DS_Store 10 | .installed.cfg 11 | 12 | .idea/* 13 | .svn/* 14 | src/website/static/* 15 | src/website/media/* 16 | 17 | bin 18 | build 19 | cfcache 20 | develop-eggs 21 | dist 22 | downloads 23 | eggs 24 | parts 25 | tmp 26 | .sass-cache 27 | 28 | src/website/settingslocal.py 29 | stunnel.log -------------------------------------------------------------------------------- /source/tpl_t3_blank/fonts/font-awesome/README.md: -------------------------------------------------------------------------------- 1 | #Font Awesome 3.0 2 | ##the iconic font designed for use with Twitter Bootstrap 3 | 4 | The full suite of pictographic icons, examples, and documentation can be found at: 5 | http://fortawesome.github.com/Font-Awesome/ 6 | 7 | 8 | ##License 9 | - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL 10 | - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - http://opensource.org/licenses/mit-license.html 11 | - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/ 12 | - Attribution is no longer required in Font Awesome 3.0, but much appreciated: "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome" 13 | 14 | ##Contact 15 | - Email: dave@davegandy.com 16 | - Twitter: http://twitter.com/fortaweso_me 17 | - Work: Lead Product Designer @ http://kyru.us 18 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/fonts/font-awesome/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/fonts/font-awesome/font/FontAwesome.otf -------------------------------------------------------------------------------- /source/tpl_t3_blank/fonts/font-awesome/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/fonts/font-awesome/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/tpl_t3_blank/fonts/font-awesome/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/fonts/font-awesome/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/tpl_t3_blank/fonts/font-awesome/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/fonts/font-awesome/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /source/tpl_t3_blank/fonts/font-awesome/font/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/fonts/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{FontAwesomePath}/fontawesome-webfont.eot?v=@{FontAwesomeVersion}'); 7 | src: url('@{FontAwesomePath}/fontawesome-webfont.eot?#iefix&v=@{FontAwesomeVersion}') format('embedded-opentype'), 8 | url('@{FontAwesomePath}/fontawesome-webfont.woff?v=@{FontAwesomeVersion}') format('woff'), 9 | url('@{FontAwesomePath}/fontawesome-webfont.ttf?v=@{FontAwesomeVersion}') format('truetype'), 10 | url('@{FontAwesomePath}/fontawesome-webfont.svg#fontawesomeregular?v=@{FontAwesomeVersion}') format('svg'); 11 | // src: url('@{FontAwesomePath}/FontAwesome.otf') format('opentype'); // used when developing fonts 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/html/com_contact/contact/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/html/com_contact/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/html/mod_footer/default.php: -------------------------------------------------------------------------------- 1 | 13 |
14 | Designed by >JoomlArt.com. 15 | 16 |
-------------------------------------------------------------------------------- /source/tpl_t3_blank/images/arrow-section-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/images/arrow-section-alt.png -------------------------------------------------------------------------------- /source/tpl_t3_blank/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/images/arrow.png -------------------------------------------------------------------------------- /source/tpl_t3_blank/images/demo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/images/demo/logo.png -------------------------------------------------------------------------------- /source/tpl_t3_blank/images/ico/search-invert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/images/ico/search-invert.png -------------------------------------------------------------------------------- /source/tpl_t3_blank/images/ico/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/images/ico/search.png -------------------------------------------------------------------------------- /source/tpl_t3_blank/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/images/logo.png -------------------------------------------------------------------------------- /source/tpl_t3_blank/images/system/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/images/system/arrow.png -------------------------------------------------------------------------------- /source/tpl_t3_blank/images/system/arrow_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/images/system/arrow_rtl.png -------------------------------------------------------------------------------- /source/tpl_t3_blank/images/t3-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/images/t3-banner.png -------------------------------------------------------------------------------- /source/tpl_t3_blank/images/t3-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/images/t3-bg.png -------------------------------------------------------------------------------- /source/tpl_t3_blank/images/themes/dark/ico/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/images/themes/dark/ico/search.png -------------------------------------------------------------------------------- /source/tpl_t3_blank/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/js/script.js: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ -------------------------------------------------------------------------------- /source/tpl_t3_blank/language/en-GB/en-GB.tpl_t3_blank.sys.ini: -------------------------------------------------------------------------------- 1 | T3_OVERVIEW_TPL_SAME ="Congrats! You are using latest version of %s!" 2 | T3_OVERVIEW_TPL_SAME_MSG ="Your version is %s" 3 | T3_OVERVIEW_TPL_NEW_MSG ="Your version is %s. %s's latest version is %s." 4 | T3_OVERVIEW_TPL_NEW ="Dude! There's a newer version for your %s!" 5 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/less/component.less: -------------------------------------------------------------------------------- 1 | .com_content body, 2 | .com_mailto body { 3 | padding-top: 0; 4 | } 5 | 6 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/less/off-canvas.less: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | 15 | // VARIABLES & MIXINS 16 | // ------------------ 17 | @import "vars.less"; // Include Variables and Mixins 18 | 19 | 20 | // EXTEND STYLE IN BASE 21 | // -------------------- 22 | @import "../../../plugins/system/t3/base/less/off-canvas.less"; 23 | 24 | 25 | //overwrite 26 | @media (max-width: 767px) { 27 | .off-canvas .t3-mainnav .nav-collapse { 28 | margin-top: 0; 29 | } 30 | } -------------------------------------------------------------------------------- /source/tpl_t3_blank/less/rtl/joomla.less: -------------------------------------------------------------------------------- 1 | // --------------------------------------------------------- 2 | // SMART SEARCH 3 | // --------------------------------------------------------- 4 | 5 | .off-canvas body > .autocompleter-choices { 6 | width: 0px; 7 | left: auto; 8 | } 9 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/less/rtl/style.less: -------------------------------------------------------------------------------- 1 | // RTL STYLES 2 | // ------------------------------------------------------ 3 | 4 | // Article Images 5 | // -------------- 6 | article img[align=left], 7 | .img_caption.left, 8 | .pull-left.item-image { 9 | margin: 0 @gridGutterWidth @T3globalMargin 0; 10 | } 11 | 12 | article img[align=right], 13 | .img_caption.right, 14 | .pull-right.item-image { 15 | margin: 0 0 @T3globalMargin @gridGutterWidth; 16 | } 17 | 18 | .languageswitcherload { 19 | ul { 20 | float: left; 21 | } 22 | } -------------------------------------------------------------------------------- /source/tpl_t3_blank/less/rtl/template.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/less/rtl/template.less -------------------------------------------------------------------------------- /source/tpl_t3_blank/less/themes/dark/variables-custom.less: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/less/themes/green/template-responsive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/less/themes/green/template-responsive.less -------------------------------------------------------------------------------- /source/tpl_t3_blank/less/themes/green/variables-custom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/less/themes/green/variables-custom.less -------------------------------------------------------------------------------- /source/tpl_t3_blank/less/themes/orange/variables-custom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/less/themes/orange/variables-custom.less -------------------------------------------------------------------------------- /source/tpl_t3_blank/less/themes/red/variables-custom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/less/themes/red/variables-custom.less -------------------------------------------------------------------------------- /source/tpl_t3_blank/less/typo-responsive.less: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/less/typo.less: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | 15 | // -------------------------------------------------- 16 | // TYPOGRAPHY 17 | // -------------------------------------------------- 18 | 19 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/template_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/template_preview.png -------------------------------------------------------------------------------- /source/tpl_t3_blank/template_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_blank/template_thumbnail.png -------------------------------------------------------------------------------- /source/tpl_t3_blank/tpls/blocks/mainbody-home-2.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
12 | countModules('home-1')) : ?> 13 | 14 |
15 | 16 |
17 | 18 | 19 | 20 | loadBlock ('mainbody') ?> 21 | 22 | countModules('home-5')) : ?> 23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/tpls/blocks/mainnav.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 30 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/tpls/blocks/navhelper.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 17 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/tpls/blocks/spotlight-1.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | checkSpotlight('spotlight-1', 'position-1, position-2, position-3, position-4')) : ?> 12 | 13 |
14 | spotlight ('spotlight-1', 'position-1, position-2, position-3, position-4') 16 | ?> 17 |
18 | 19 | -------------------------------------------------------------------------------- /source/tpl_t3_blank/tpls/blocks/spotlight-2.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | checkSpotlight('spotlight-2', 'position-5, position-6, position-7, position-8')) : ?> 12 | 13 |
14 | spotlight ('spotlight-2', 'position-5, position-6, position-7, position-8') 16 | ?> 17 |
18 | 19 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/component.php: -------------------------------------------------------------------------------- 1 | addCss('windows'); -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/css/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/css/legacy-navigation.css: -------------------------------------------------------------------------------- 1 | .dropdown-submenu { 2 | position: relative; 3 | } 4 | .dropdown-submenu > .dropdown-menu { 5 | top: 0; 6 | left: 100%; 7 | margin-top: -5px; 8 | margin-left: -1px; 9 | } 10 | .dropdown-submenu.open > .dropdown-menu { 11 | display: block; 12 | } 13 | .dropdown-submenu > .dropdown-menu { 14 | border-radius: 4px; 15 | } 16 | .dropdown-submenu > a:after { 17 | display: block; 18 | content: " "; 19 | float: right; 20 | width: 0; 21 | height: 0; 22 | border-color: transparent; 23 | border-style: solid; 24 | border-width: 5px 0 5px 5px; 25 | border-left-color: #cccccc; 26 | margin-top: 5px; 27 | margin-right: -5px; 28 | } 29 | .dropdown-submenu.open > a:after { 30 | border-left-color: #262626; 31 | } -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/css/rtl/dark/legacy-navigation.css: -------------------------------------------------------------------------------- 1 | .dropdown-submenu { 2 | position: relative; 3 | } 4 | .dropdown-submenu > .dropdown-menu { 5 | top: 0; 6 | right: 100%; 7 | margin-top: -5px; 8 | margin-right: -1px; 9 | } 10 | .dropdown-submenu.open > .dropdown-menu { 11 | display: block; 12 | } 13 | .dropdown-submenu > .dropdown-menu { 14 | border-radius: 4px; 15 | } 16 | .dropdown-submenu > a:after { 17 | display: block; 18 | content: " "; 19 | float: left; 20 | width: 0; 21 | height: 0; 22 | border-color: transparent; 23 | border-style: solid; 24 | border-width: 5px 5px 5px 0; 25 | border-right-color: #000000; 26 | margin-top: 5px; 27 | margin-left: -5px; 28 | } 29 | .dropdown-submenu.open > a:after { 30 | border-right-color: #ffffff; 31 | } -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/css/rtl/dark/windows.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .window body { 4 | height: auto; 5 | padding: 0; 6 | margin: 0; 7 | } 8 | .window .window-mainbody { 9 | padding: 20px; 10 | } 11 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/css/rtl/legacy-navigation.css: -------------------------------------------------------------------------------- 1 | .dropdown-submenu { 2 | position: relative; 3 | } 4 | .dropdown-submenu > .dropdown-menu { 5 | top: 0; 6 | right: 100%; 7 | margin-top: -5px; 8 | margin-right: -1px; 9 | } 10 | .dropdown-submenu.open > .dropdown-menu { 11 | display: block; 12 | } 13 | .dropdown-submenu > .dropdown-menu { 14 | border-radius: 4px; 15 | } 16 | .dropdown-submenu > a:after { 17 | display: block; 18 | content: " "; 19 | float: left; 20 | width: 0; 21 | height: 0; 22 | border-color: transparent; 23 | border-style: solid; 24 | border-width: 5px 5px 5px 0; 25 | border-right-color: #cccccc; 26 | margin-top: 5px; 27 | margin-left: -5px; 28 | } 29 | .dropdown-submenu.open > a:after { 30 | border-right-color: #262626; 31 | } -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/css/rtl/red/legacy-navigation.css: -------------------------------------------------------------------------------- 1 | .dropdown-submenu { 2 | position: relative; 3 | } 4 | .dropdown-submenu > .dropdown-menu { 5 | top: 0; 6 | right: 100%; 7 | margin-top: -5px; 8 | margin-right: -1px; 9 | } 10 | .dropdown-submenu.open > .dropdown-menu { 11 | display: block; 12 | } 13 | .dropdown-submenu > .dropdown-menu { 14 | border-radius: 4px; 15 | } 16 | .dropdown-submenu > a:after { 17 | display: block; 18 | content: " "; 19 | float: left; 20 | width: 0; 21 | height: 0; 22 | border-color: transparent; 23 | border-style: solid; 24 | border-width: 5px 5px 5px 0; 25 | border-right-color: #cccccc; 26 | margin-top: 5px; 27 | margin-left: -5px; 28 | } 29 | .dropdown-submenu.open > a:after { 30 | border-right-color: #262626; 31 | } -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/css/rtl/red/windows.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .window body { 4 | height: auto; 5 | padding: 0; 6 | margin: 0; 7 | } 8 | .window .window-mainbody { 9 | padding: 20px; 10 | } 11 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/css/rtl/windows.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .window body { 4 | height: auto; 5 | padding: 0; 6 | margin: 0; 7 | } 8 | .window .window-mainbody { 9 | padding: 20px; 10 | } 11 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/css/themes/dark/legacy-navigation.css: -------------------------------------------------------------------------------- 1 | .dropdown-submenu { 2 | position: relative; 3 | } 4 | .dropdown-submenu > .dropdown-menu { 5 | top: 0; 6 | left: 100%; 7 | margin-top: -5px; 8 | margin-left: -1px; 9 | } 10 | .dropdown-submenu.open > .dropdown-menu { 11 | display: block; 12 | } 13 | .dropdown-submenu > .dropdown-menu { 14 | border-radius: 4px; 15 | } 16 | .dropdown-submenu > a:after { 17 | display: block; 18 | content: " "; 19 | float: right; 20 | width: 0; 21 | height: 0; 22 | border-color: transparent; 23 | border-style: solid; 24 | border-width: 5px 0 5px 5px; 25 | border-left-color: #000000; 26 | margin-top: 5px; 27 | margin-right: -5px; 28 | } 29 | .dropdown-submenu.open > a:after { 30 | border-left-color: #ffffff; 31 | } -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/css/themes/dark/windows.css: -------------------------------------------------------------------------------- 1 | .window body { 2 | height: auto; 3 | padding: 0; 4 | margin: 0; 5 | } 6 | .window .window-mainbody { 7 | padding: 20px; 8 | } -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/css/themes/red/legacy-navigation.css: -------------------------------------------------------------------------------- 1 | .dropdown-submenu { 2 | position: relative; 3 | } 4 | .dropdown-submenu > .dropdown-menu { 5 | top: 0; 6 | left: 100%; 7 | margin-top: -5px; 8 | margin-left: -1px; 9 | } 10 | .dropdown-submenu.open > .dropdown-menu { 11 | display: block; 12 | } 13 | .dropdown-submenu > .dropdown-menu { 14 | border-radius: 4px; 15 | } 16 | .dropdown-submenu > a:after { 17 | display: block; 18 | content: " "; 19 | float: right; 20 | width: 0; 21 | height: 0; 22 | border-color: transparent; 23 | border-style: solid; 24 | border-width: 5px 0 5px 5px; 25 | border-left-color: #cccccc; 26 | margin-top: 5px; 27 | margin-right: -5px; 28 | } 29 | .dropdown-submenu.open > a:after { 30 | border-left-color: #262626; 31 | } -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/css/themes/red/windows.css: -------------------------------------------------------------------------------- 1 | .window body { 2 | height: auto; 3 | padding: 0; 4 | margin: 0; 5 | } 6 | .window .window-mainbody { 7 | padding: 20px; 8 | } -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/css/windows.css: -------------------------------------------------------------------------------- 1 | .window body { 2 | height: auto; 3 | padding: 0; 4 | margin: 0; 5 | } 6 | .window .window-mainbody { 7 | padding: 20px; 8 | } -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/etc/assets.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | js/script.js 5 | 6 | 7 | 8 | fonts/font-awesome/css/font-awesome.min.css 9 | 10 | 11 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/favicon.ico -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/fonts/font-awesome/css/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/fonts/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/fonts/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/fonts/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/fonts/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/fonts/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/fonts/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/fonts/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/fonts/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/fonts/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/fonts/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/fonts/font-awesome/fonts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/html/com_media/imageslist/default_folder.php: -------------------------------------------------------------------------------- 1 | input; 13 | ?> 14 |
  • 15 | 16 |
    17 | 18 |
    19 |
    20 | escape($this->_tmp_folder->name), 10, false); ?> 21 |
    22 |
    23 |
  • 24 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/html/mod_footer/default.php: -------------------------------------------------------------------------------- 1 | 13 |
    14 | Designed by >JoomlArt.com. 15 | 16 |
    -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/images/arrow.png -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/images/demo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/images/demo/logo.png -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/images/ico/search-invert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/images/ico/search-invert.png -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/images/ico/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/images/ico/search.png -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/images/logo.png -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/images/system/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/images/system/arrow.png -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/images/system/arrow_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/images/system/arrow_rtl.png -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/images/t3-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/images/t3-banner.png -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/images/t3-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/images/t3-bg.png -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/images/themes/dark/ico/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/images/themes/dark/ico/search.png -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/js/script.js: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | jQuery(document).ready(function($) { 15 | 16 | if($('#jform_contact_email_copy').length) { 17 | $('#jform_contact_email_copy').parents('.control-group').addClass('inline'); 18 | } 19 | }) -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/language/en-GB/en-GB.tpl_t3_bs3_blank.sys.ini: -------------------------------------------------------------------------------- 1 | T3_OVERVIEW_TPL_SAME ="Congrats! You are using latest version of %s!" 2 | T3_OVERVIEW_TPL_SAME_MSG ="Your version is %s" 3 | T3_OVERVIEW_TPL_NEW_MSG ="Your version is %s. %s's latest version is %s." 4 | T3_OVERVIEW_TPL_NEW ="Dude! There's a newer version for your %s!" 5 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/less/rtl/joomla.less: -------------------------------------------------------------------------------- 1 | // --------------------------------------------------------- 2 | // SMART SEARCH 3 | // --------------------------------------------------------- 4 | 5 | .off-canvas body > .autocompleter-choices { 6 | width: 0px; 7 | left: auto; 8 | } 9 | 10 | .article-intro, 11 | .article-content { 12 | 13 | // Add proper margin 14 | img[align=left], 15 | .img_caption.left, 16 | .pull-left.item-image { 17 | margin: 0 @t3-global-margin*1.5 @t3-global-margin 0; 18 | } 19 | 20 | img[align=right], 21 | .img_caption.right, 22 | .pull-right.item-image { 23 | margin: 0 0 @t3-global-margin @t3-global-margin*1.5 ; 24 | } 25 | 26 | } -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/less/rtl/style.less: -------------------------------------------------------------------------------- 1 | // RTL STYLES 2 | // ------------------------------------------------------ 3 | 4 | // Article Images 5 | // -------------- 6 | article img[align=left], 7 | .img_caption.left, 8 | .pull-left.item-image { 9 | @media (max-width: @screen-sm) { 10 | margin: 0 @grid-gutter-width @t3-global-margin 0; 11 | } 12 | } 13 | 14 | article img[align=right], 15 | .img_caption.right, 16 | .pull-right.item-image { 17 | @media (max-width: @screen-sm) { 18 | margin: 0 0 @t3-global-margin @grid-gutter-width; 19 | } 20 | } 21 | 22 | .languageswitcherload { 23 | ul { 24 | float: left; 25 | } 26 | } 27 | 28 | .popover { 29 | direction: ltr; 30 | } 31 | 32 | .popover.left { 33 | right: auto; 34 | 35 | .arrow { 36 | border-right-width: 0; 37 | border-left: 11px solid rgba(0,0,0,0.25); 38 | left: auto; 39 | right: -11px; 40 | 41 | &:after { 42 | border-right-width: 0; 43 | border-left: 10px solid #fff; 44 | left: auto; 45 | right: 1px; 46 | } 47 | } 48 | } -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/less/rtl/template.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/less/rtl/template.less -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/less/themes/dark/template.less: -------------------------------------------------------------------------------- 1 | /** 2 | *------------------------------------------------------------------------------ 3 | * @package T3 Framework for Joomla! 4 | *------------------------------------------------------------------------------ 5 | * @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved. 6 | * @license GNU General Public License version 2 or later; see LICENSE.txt 7 | * @authors JoomlArt, JoomlaBamboo, (contribute to this project at github 8 | * & Google group to become co-author) 9 | * @Google group: https://groups.google.com/forum/#!forum/t3fw 10 | * @Link: http://t3-framework.org 11 | *------------------------------------------------------------------------------ 12 | */ 13 | 14 | 15 | // 16 | // GENERIC ARTICLE STYLES 17 | // --------------------------------------------------------- 18 | .page-header { 19 | border-bottom: 1px solid @gray-dark; 20 | } 21 | 22 | // Article Images 23 | // ------------------------- 24 | .img_caption p.img_caption { 25 | background: @gray-dark; 26 | color: @gray-light; 27 | } 28 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/less/themes/dark/variables-custom.less: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/less/themes/red/variables-custom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/less/themes/red/variables-custom.less -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/template_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/template_preview.png -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/template_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3framework/t3/1d83907aefd327b03b095d33de5be13583625566/source/tpl_t3_bs3_blank/template_thumbnail.png -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/tpls/blocks/mainbody/no-sidebar.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |
    16 |
    17 | 18 | 19 |
    20 | hasMessage()) : ?> 21 | 22 | 23 | 24 |
    25 | 26 | 27 |
    28 |
    -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/tpls/blocks/mainbody/one-sidebar-left.php: -------------------------------------------------------------------------------- 1 | 14 |
    15 |
    16 | 17 | 18 |
    19 | hasMessage()) : ?> 20 | 21 | 22 | 23 |
    24 | 25 | 26 | 27 |
    28 | 29 |
    30 | 31 | 32 |
    33 |
    -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/tpls/blocks/mainbody/one-sidebar-right.php: -------------------------------------------------------------------------------- 1 | 14 |
    15 |
    16 | 17 | 18 |
    19 | hasMessage()) : ?> 20 | 21 | 22 | 23 |
    24 | 25 | 26 | 27 |
    28 | 29 |
    30 | 31 | 32 |
    33 |
    34 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/tpls/blocks/navhelper.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | countModules('navhelper')) : ?> 12 | 13 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/tpls/blocks/spotlight-1.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | checkSpotlight('spotlight-1', 'position-1, position-2, position-3, position-4')) : ?> 12 | 13 |
    14 | spotlight('spotlight-1', 'position-1, position-2, position-3, position-4') ?> 15 |
    16 | 17 | -------------------------------------------------------------------------------- /source/tpl_t3_bs3_blank/tpls/blocks/spotlight-2.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | checkSpotlight('spotlight-2', 'position-5, position-6, position-7, position-8')) : ?> 12 | 13 |
    14 | spotlight('spotlight-2', 'position-5, position-6, position-7, position-8') ?> 15 |
    16 | 17 | -------------------------------------------------------------------------------- /translations/README.md: -------------------------------------------------------------------------------- 1 | T3 Translations 2 | =============== 3 | 4 | Get T3 Framework in your native language. 5 | 6 | Download 7 | -------- 8 | - All packages: https://github.com/t3framework/t3/tree/master/translations 9 | 10 | Bug Tracker 11 | ----------- 12 | Have a bug or a feature request? Feel free to open an issue via this link https://github.com/t3framework/t3/issues 13 | 14 | How to submit a language? 15 | ------------------------- 16 | 1. Fork https://github.com/t3framework/t3 17 | 2. Clone fr-FR folder and rename to new language code (example: ar-AR) 18 | 3. Replace all 'fr-FR' to language code 19 | 4. Create a pull-request to T3 Team (https://help.github.com/articles/creating-a-pull-request) 20 | 21 | Credits, Copyright and License 22 | ------------------------------ 23 | * Copyright (C) 2005 - 2013 T3-Framework.org. All rights reserved. 24 | * Distributed under the GNU General Public License version 2 or later 25 | * Speical Thanks to Anthony & JoomlaBamboo team for their continous support & Contribution. 26 | -------------------------------------------------------------------------------- /translations/fr-FR/plg_system_t3/fr-FR.plg_system_t3.j25.compat.ini: -------------------------------------------------------------------------------- 1 | JGLOBAL_HITS_COUNT="Visites: %s" 2 | -------------------------------------------------------------------------------- /translations/fr-FR/plg_system_t3/fr-FR.plg_system_t3.sys.ini: -------------------------------------------------------------------------------- 1 | PLG_T3_XML_DESCRIPTION="Plugin Framework T3" -------------------------------------------------------------------------------- /translations/fr-FR/plg_system_t3/install.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | T3 Framework (fr-FR) 4 | fr-FR 5 | 2.2.1 6 | Juin 2014 7 | Serge Berthier 8 | serge.berthier@gmail.com 9 | http://www.t3-framework.org 10 | Copyright (C) 2005 - 2013 Open Source Matters. All rights reserved. 11 | GNU General Public License version 2 or later; see LICENSE.txt 12 | French translation for T3 Framework 13 | 14 | fr-FR.plg_system_t3.ini 15 | fr-FR.plg_system_t3.sys.ini 16 | fr-FR.plg_system_t3.j25.compat.ini 17 | 18 | install.xml 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/fr-FR/tpl_t3_blank/fr-FR.tpl_t3_blank.sys.ini: -------------------------------------------------------------------------------- 1 | T3_OVERVIEW_TPL_SAME ="Félicitations! Vous avez la dernière version de %s!" 2 | T3_OVERVIEW_TPL_SAME_MSG ="Votre version est la %s" 3 | T3_OVERVIEW_TPL_NEW_MSG ="Votre version est la %s. la dernière version de %s est la %s." 4 | T3_OVERVIEW_TPL_NEW ="Hello! Il y a une nouvelle version pour %s!" 5 | -------------------------------------------------------------------------------- /translations/fr-FR/tpl_t3_blank/install.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | T3 Framework (fr-FR) 4 | fr-FR 5 | 1.0.0 6 | Decembre 2013 7 | Serge Berthier 8 | serge.berthier@gmail.com 9 | http://www.t3-framework.org 10 | Copyright (C) 2005 - 2013 Open Source Matters. All rights reserved. 11 | GNU General Public License version 2 or later; see LICENSE.txt 12 | French translation for T3 Framework 13 | 14 | fr-FR.tpl_t3_blank.ini 15 | fr-FR.tpl_t3_blank.sys.ini 16 | 17 | install.xml 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/fr-FR/tpl_t3_bs3_blank/fr-FR.tpl_t3_bs3_blank.sys.ini: -------------------------------------------------------------------------------- 1 | T3_OVERVIEW_TPL_SAME ="Félicitations! Vous avez la dernière version de %s!" 2 | T3_OVERVIEW_TPL_SAME_MSG ="Votre version est la %s" 3 | T3_OVERVIEW_TPL_NEW_MSG ="Votre version est la %s. la dernière version de %s est la %s." 4 | T3_OVERVIEW_TPL_NEW ="Hello! Il y a une nouvelle version pour %s!" 5 | -------------------------------------------------------------------------------- /translations/fr-FR/tpl_t3_bs3_blank/install.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | T3 Framework (fr-FR) 4 | fr-FR 5 | 1.0.0 6 | Decembre 2013 7 | Serge Berthier 8 | serge.berthier@gmail.com 9 | http://www.t3-framework.org 10 | Copyright (C) 2005 - 2013 Open Source Matters. All rights reserved. 11 | GNU General Public License version 2 or later; see LICENSE.txt 12 | French translation for T3 Framework 13 | 14 | fr-FR.tpl_t3_bs3_blank.ini 15 | fr-FR.tpl_t3_bs3_blank.sys.ini 16 | 17 | install.xml 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/hu-HU/plg_system_t3/hu-HU.plg_system_t3.sys.ini: -------------------------------------------------------------------------------- 1 | PLG_T3_XML_DESCRIPTION="A T3 keretrendszer beépülő modulja" -------------------------------------------------------------------------------- /translations/hu-HU/plg_system_t3/install.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | T3 Framework (hu-HU) 4 | hu-HU 5 | 2.1.2 6 | 2014-03-01 7 | Jozsef Tamas Herczeg 8 | jtherczeg@gmail.com 9 | http://www.t3-framework.org 10 | Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved. 11 | GNU General Public License version 2 or later; see LICENSE.txt 12 | Hungarian translation for T3 Framework 13 | 14 | hu-HU.plg_system_t3.ini 15 | hu-HU.plg_system_t3.sys.ini 16 | 17 | install.xml 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/hu-HU/tpl_t3_blank/hu-HU.tpl_t3_blank.sys.ini: -------------------------------------------------------------------------------- 1 | T3_OVERVIEW_TPL_SAME ="Gratulálunk! Ön a %s sablon legújabb verzióját használja!" 2 | T3_OVERVIEW_TPL_SAME_MSG ="Az Ön verziója: %s" 3 | T3_OVERVIEW_TPL_NEW_MSG ="Az Ön verziója: %s. A %s sablon legújabb verziója: %s." 4 | T3_OVERVIEW_TPL_NEW ="Haver! Jelent meg újabb verziója a %s sablonnak!" 5 | -------------------------------------------------------------------------------- /translations/hu-HU/tpl_t3_blank/install.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | T3 Blank Template (hu-HU) 4 | hu-HU 5 | 2.1.2 6 | 2014-03-01 7 | Jozsef Tamas Herczeg 8 | jtherczeg@gmail.com 9 | http://www.t3-framework.org 10 | Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved. 11 | GNU General Public License version 2 or later; see LICENSE.txt 12 | Hungarian translation for T3 Blank Template 13 | 14 | hu-HU.tpl_t3_blank.ini 15 | hu-HU.tpl_t3_blank.sys.ini 16 | 17 | install.xml 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/hu-HU/tpl_t3_bs3_blank/hu-HU.tpl_t3_bs3_blank.sys.ini: -------------------------------------------------------------------------------- 1 | T3_OVERVIEW_TPL_SAME ="Gratulálunk! Ön a %s sablon legújabb verzióját használja!" 2 | T3_OVERVIEW_TPL_SAME_MSG ="Az Ön verziója: %s" 3 | T3_OVERVIEW_TPL_NEW_MSG ="Az Ön verziója: %s. A %s sablon legújabb verziója: %s." 4 | T3_OVERVIEW_TPL_NEW ="Haver! Jelent meg újabb verziója a %s sablonnak!" 5 | 6 | -------------------------------------------------------------------------------- /translations/hu-HU/tpl_t3_bs3_blank/install.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | T3 Bs3 Blank Template (hu-HU) 4 | hu-HU 5 | 2.1.1 6 | 2014-03-01 7 | Jozsef Tamas Herczeg 8 | jtherczeg@gmail.com 9 | http://www.t3-framework.org 10 | Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved. 11 | GNU General Public License version 2 or later; see LICENSE.txt 12 | Hungarian translation for T3 Bs3 Blank template 13 | 14 | hu-HU.tpl_t3_bs3_blank.ini 15 | hu-HU.tpl_t3_bs3_blank.sys.ini 16 | 17 | install.xml 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/it-IT/plg_system_t3/install.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | T3 Framework (it-IT) 4 | it-IT 5 | 1.0.0 6 | Decembre 2013 7 | Andrea Mercati 8 | andreamercati@gmail.com 9 | http://www.t3-framework.org 10 | Copyright (C) 2005 - 2013 Open Source Matters. All rights reserved. 11 | GNU General Public License version 2 or later; see LICENSE.txt 12 | Italian translation for T3 Framework 13 | 14 | it-IT.plg_system_t3.ini 15 | it-IT.plg_system_t3.sys.ini 16 | 17 | install.xml 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/it-IT/plg_system_t3/it-IT.plg_system_t3.sys.ini: -------------------------------------------------------------------------------- 1 | PLG_T3_XML_DESCRIPTION="Plugin del T3 Framework" -------------------------------------------------------------------------------- /translations/it-IT/tpl_t3_blank/install.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | T3 Framework (it-IT) 4 | it-IT 5 | 1.0.0 6 | Decembre 2013 7 | Andrea Mercati 8 | andreamercati@gmail.com 9 | http://www.t3-framework.org 10 | Copyright (C) 2005 - 2013 Open Source Matters. All rights reserved. 11 | GNU General Public License version 2 or later; see LICENSE.txt 12 | Italian translation for T3 Framework 13 | 14 | it-IT.tpl_t3_blank.ini 15 | it-IT.tpl_t3_blank.sys.ini 16 | 17 | install.xml 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/it-IT/tpl_t3_blank/it-IT.tpl_t3_blank.sys.ini: -------------------------------------------------------------------------------- 1 | T3_OVERVIEW_TPL_SAME ="Congratulazioni! Stai usando la ultima versione del %s!" 2 | T3_OVERVIEW_TPL_SAME_MSG ="La tua versione: %s" 3 | T3_OVERVIEW_TPL_NEW_MSG ="La tua versione: %s. %s's ultima versione: %s." 4 | T3_OVERVIEW_TPL_NEW ="Ehi ragazzo! Esiste una nuova versione per il tuo %s!" 5 | -------------------------------------------------------------------------------- /translations/it-IT/tpl_t3_bs3_blank/install.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | T3 Framework (it-IT) 4 | it-IT 5 | 1.0.0 6 | Decembre 2013 7 | Andrea Mercati 8 | andreamercati@gmail.com 9 | http://www.t3-framework.org 10 | Copyright (C) 2005 - 2013 Open Source Matters. All rights reserved. 11 | GNU General Public License version 2 or later; see LICENSE.txt 12 | Italian translation for T3 Framework 13 | 14 | it-IT.tpl_t3_bs3_blank.ini 15 | it-IT.tpl_t3_bs3_blank.sys.ini 16 | 17 | install.xml 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/it-IT/tpl_t3_bs3_blank/it-IT.tpl_t3_bs3_blank.sys.ini: -------------------------------------------------------------------------------- 1 | T3_OVERVIEW_TPL_SAME ="Congratulazioni! Stai usando la ultima versione del %s!" 2 | T3_OVERVIEW_TPL_SAME_MSG ="La tua versione: %s" 3 | T3_OVERVIEW_TPL_NEW_MSG ="La tua versione: %s. %s's ultima versione: %s." 4 | T3_OVERVIEW_TPL_NEW ="Ehi ragazzo! Esiste una nuova versione per il tuo %s!" 5 | --------------------------------------------------------------------------------