Created
March 20, 2015 09:17
-
-
Save andyhausmann/851d1b855dbacbcd432f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{namespace ts=TYPO3\TypoScript\ViewHelpers} | |
{namespace bootstrap=TYPO3\Twitter\Bootstrap\ViewHelpers} | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<f:section name="metadata"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
</f:section> | |
<f:section name="stylesheets"> | |
<link rel="stylesheet" href="{f:uri.resource(path: '3/css/bootstrap.min.css', package: 'TYPO3.Twitter.Bootstrap')}" media="all" /> | |
<link rel="stylesheet" href="{f:uri.resource(path: 'Styles/NeosDemo.css', package: 'TYPO3.NeosDemoTypo3Org')}" media="all" /> | |
<link rel="stylesheet" href="{f:uri.resource(path: 'Styles/Print.css', package: 'TYPO3.NeosDemoTypo3Org')}" media="print" /> | |
<link rel="stylesheet" href="{f:uri.resource(path: 'Styles/typeaheadjs.css', package: 'SotaStudio.LocationManagement')}" media="print" /> | |
<f:if condition="{node.context.workspace.name} != 'live'"> | |
<link rel="stylesheet" href="{f:uri.resource(path: 'Styles/Backend.css', package: 'TYPO3.NeosDemoTypo3Org')}" media="all" /> | |
</f:if> | |
</f:section> | |
<f:section name="javascripts"> | |
<script src="{f:uri.resource(path: 'Libraries/jQuery/jquery-1.10.1.min.js', package: 'TYPO3.Twitter.Bootstrap')}"></script> | |
<script src="{f:uri.resource(path: '3/js/bootstrap.min.js', package: 'TYPO3.Twitter.Bootstrap')}"></script> | |
<script src="{f:uri.resource(path: 'Scripts/typeahead.js', package: 'SotaStudio.LocationManagement')}"></script> | |
</f:section> | |
</head> | |
<body> | |
<f:section name="body"> | |
<div class="top-navigation-wrap"> | |
<div class="container"> | |
{parts.languageMenu -> f:format.raw()} | |
{parts.mainMenu -> f:format.raw()} | |
{parts.secondLevelMenu -> f:format.raw()} | |
</div> | |
</div> | |
<f:if condition="{landingPage}"> | |
<div class="main-header{f:if(condition: imageUri, then: ' image" style="background-image: url({imageUri});')}"{f:if(condition: imageTitleText, then: ' title="{imageTitleText}"')}> | |
<div class="container"> | |
{content.teaser -> f:format.raw()} | |
</div> | |
</div> | |
</div> | |
</f:if> | |
<div class="container"> | |
{parts.breadcrumb -> f:format.raw()} | |
{content.main -> f:format.raw()} | |
</div> | |
<footer role="navigation" class="navbar navbar-default"> | |
<div class="panel panel-default"> | |
<div class="panel-body clearfix"> | |
<div class="container"> | |
{parts.metaMenu -> f:format.raw()} | |
</div> | |
</div> | |
<div class="panel-footer"> | |
<div class="container"> | |
{footer -> f:format.raw()} | |
</div> | |
</div> | |
</div> | |
</footer> | |
</f:section> | |
<f:section name="bodyScripts"> | |
<script src="{f:uri.resource(path: 'JavaScript/scrollstart.js', package: 'TYPO3.NeosDemoTypo3Org')}"></script> | |
<script src="{f:uri.resource(path: 'JavaScript/main.js', package: 'TYPO3.NeosDemoTypo3Org')}"></script> | |
</f:section> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment