├── .editorconfig ├── .gitignore ├── .travis.yml ├── Configuration └── TypoScript │ ├── constants.txt │ └── setup.txt ├── README.md ├── Resources ├── Private │ ├── Language │ │ └── locallang.xlf │ ├── Layouts │ │ ├── Content.html │ │ ├── ErrorPage.html │ │ ├── FrontPage.html │ │ ├── Render.html │ │ └── WithSideBar.html │ ├── Partials │ │ ├── ContentRender.html │ │ ├── Footer.html │ │ ├── HeroUnit.html │ │ ├── Jumbotron.html │ │ ├── Navigation.html │ │ ├── Page │ │ │ └── WithSideBar.html │ │ ├── Sidebar.html │ │ ├── SubNavigation.html │ │ └── TabNavigation.html │ ├── Schema │ │ └── fluid-master.xsd │ └── Templates │ │ ├── Content │ │ ├── Accordion.html │ │ ├── Alert.html │ │ ├── Button.html │ │ ├── Carousel.html │ │ ├── EmbedVideo.html │ │ ├── FourColumn.html │ │ ├── ImageGallery.html │ │ ├── Jumbotron.html │ │ ├── ModalLight.html │ │ ├── NavigationList.html │ │ ├── PageHeader.html │ │ ├── ProgressBar.html │ │ ├── Row.html │ │ ├── SimpleResponsiveImage.html │ │ ├── SixColumn.html │ │ ├── Tabs.html │ │ ├── ThreeColumn.html │ │ ├── ThumbnailBox.html │ │ ├── TwoColumn.html │ │ └── Well.html │ │ ├── Page │ │ ├── Error.html │ │ ├── FrontPage.html │ │ ├── Render.html │ │ └── WithSidebar.html │ │ └── ViewHelpers │ │ └── Widget │ │ └── Paginate │ │ └── Index.html └── Public │ ├── Icons │ ├── Content │ │ ├── Accordion.png │ │ ├── Alert.png │ │ ├── Button.png │ │ ├── Carousel.png │ │ ├── EmbedVideo.png │ │ ├── FourColumn.png │ │ ├── ImageGallery.png │ │ ├── Jumbotron.png │ │ ├── ModalLight.png │ │ ├── NavigationList.png │ │ ├── PageHeader.png │ │ ├── ProgressBar.png │ │ ├── Row.png │ │ ├── SimpleResponsiveImage.png │ │ ├── SixColumn.png │ │ ├── Tabs.png │ │ ├── ThreeColumn.png │ │ ├── ThumbnailBox.png │ │ ├── TwoColumn.png │ │ └── Well.png │ ├── Page │ │ ├── FrontPage.png │ │ ├── Render.png │ │ └── WithSidebar.png │ ├── bootstrap │ │ ├── glyphicons_156_show_thumbnails.png │ │ ├── glyphicons_158_show_lines.png │ │ └── glyphicons_360_bug.png │ └── icon-twitter.png │ ├── Javascript │ ├── eqheight.js │ └── jquery.matchHeight-min.js │ └── Stylesheets │ └── ResponsiveVideo.css ├── class.ext_update.php ├── composer.json ├── doc └── manual.sxw ├── ext_conf_template.txt ├── ext_emconf.php ├── ext_icon.gif ├── ext_tables.php └── phpunit.xml.dist /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .idea 3 | composer.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/.travis.yml -------------------------------------------------------------------------------- /Configuration/TypoScript/constants.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Configuration/TypoScript/constants.txt -------------------------------------------------------------------------------- /Configuration/TypoScript/setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Configuration/TypoScript/setup.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Private/Language/locallang.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Language/locallang.xlf -------------------------------------------------------------------------------- /Resources/Private/Layouts/Content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Layouts/Content.html -------------------------------------------------------------------------------- /Resources/Private/Layouts/ErrorPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Layouts/ErrorPage.html -------------------------------------------------------------------------------- /Resources/Private/Layouts/FrontPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Layouts/FrontPage.html -------------------------------------------------------------------------------- /Resources/Private/Layouts/Render.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Layouts/Render.html -------------------------------------------------------------------------------- /Resources/Private/Layouts/WithSideBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Layouts/WithSideBar.html -------------------------------------------------------------------------------- /Resources/Private/Partials/ContentRender.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Partials/ContentRender.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Partials/Footer.html -------------------------------------------------------------------------------- /Resources/Private/Partials/HeroUnit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Partials/HeroUnit.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Jumbotron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Partials/Jumbotron.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Partials/Navigation.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Page/WithSideBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Partials/Page/WithSideBar.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Partials/Sidebar.html -------------------------------------------------------------------------------- /Resources/Private/Partials/SubNavigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Partials/SubNavigation.html -------------------------------------------------------------------------------- /Resources/Private/Partials/TabNavigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Partials/TabNavigation.html -------------------------------------------------------------------------------- /Resources/Private/Schema/fluid-master.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Schema/fluid-master.xsd -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/Accordion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/Accordion.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/Alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/Alert.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/Button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/Button.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/Carousel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/Carousel.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/EmbedVideo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/EmbedVideo.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/FourColumn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/FourColumn.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/ImageGallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/ImageGallery.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/Jumbotron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/Jumbotron.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/ModalLight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/ModalLight.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/NavigationList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/NavigationList.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/PageHeader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/PageHeader.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/ProgressBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/ProgressBar.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/Row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/Row.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/SimpleResponsiveImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/SimpleResponsiveImage.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/SixColumn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/SixColumn.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/Tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/Tabs.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/ThreeColumn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/ThreeColumn.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/ThumbnailBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/ThumbnailBox.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/TwoColumn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/TwoColumn.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Content/Well.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Content/Well.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Page/Error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Page/Error.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Page/FrontPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Page/FrontPage.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Page/Render.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Page/Render.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Page/WithSidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/Page/WithSidebar.html -------------------------------------------------------------------------------- /Resources/Private/Templates/ViewHelpers/Widget/Paginate/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Private/Templates/ViewHelpers/Widget/Paginate/Index.html -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/Accordion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/Accordion.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/Alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/Alert.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/Button.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/Carousel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/Carousel.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/EmbedVideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/EmbedVideo.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/FourColumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/FourColumn.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/ImageGallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/ImageGallery.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/Jumbotron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/Jumbotron.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/ModalLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/ModalLight.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/NavigationList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/NavigationList.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/PageHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/PageHeader.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/ProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/ProgressBar.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/Row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/Row.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/SimpleResponsiveImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/SimpleResponsiveImage.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/SixColumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/SixColumn.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/Tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/Tabs.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/ThreeColumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/ThreeColumn.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/ThumbnailBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/ThumbnailBox.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/TwoColumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/TwoColumn.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Content/Well.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Content/Well.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Page/FrontPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Page/FrontPage.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Page/Render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Page/Render.png -------------------------------------------------------------------------------- /Resources/Public/Icons/Page/WithSidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/Page/WithSidebar.png -------------------------------------------------------------------------------- /Resources/Public/Icons/bootstrap/glyphicons_156_show_thumbnails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/bootstrap/glyphicons_156_show_thumbnails.png -------------------------------------------------------------------------------- /Resources/Public/Icons/bootstrap/glyphicons_158_show_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/bootstrap/glyphicons_158_show_lines.png -------------------------------------------------------------------------------- /Resources/Public/Icons/bootstrap/glyphicons_360_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/bootstrap/glyphicons_360_bug.png -------------------------------------------------------------------------------- /Resources/Public/Icons/icon-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Icons/icon-twitter.png -------------------------------------------------------------------------------- /Resources/Public/Javascript/eqheight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Javascript/eqheight.js -------------------------------------------------------------------------------- /Resources/Public/Javascript/jquery.matchHeight-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Javascript/jquery.matchHeight-min.js -------------------------------------------------------------------------------- /Resources/Public/Stylesheets/ResponsiveVideo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/Resources/Public/Stylesheets/ResponsiveVideo.css -------------------------------------------------------------------------------- /class.ext_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/class.ext_update.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/composer.json -------------------------------------------------------------------------------- /doc/manual.sxw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/doc/manual.sxw -------------------------------------------------------------------------------- /ext_conf_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/ext_conf_template.txt -------------------------------------------------------------------------------- /ext_emconf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/ext_emconf.php -------------------------------------------------------------------------------- /ext_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/ext_icon.gif -------------------------------------------------------------------------------- /ext_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstraptheme-for-typo3/fluidbootstraptheme/HEAD/ext_tables.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------