Last active
August 29, 2015 14:03
-
-
Save thotbox/c1684c1b2b0bdf982d8c to your computer and use it in GitHub Desktop.
ExpressionEngine: Foundation Bootstrap Template
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
<!doctype html> | |
{if '{exp:browser_detect:browser}' == 'IE8'} | |
<html class="no-js lt-ie9" lang="en"> | |
{if:elseif '{exp:browser_detect:browser}' == 'IE9'} | |
<html class="no-js lt-ie10" lang="en"> | |
{if:else} | |
<html class="no-js" lang="en"> | |
{/if} | |
<head> | |
{if '{exp:browser_detect:family}' == 'IE'} | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
{/if} | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width" /> | |
<title>Page Title</title> | |
<meta name="description" content=""> | |
<meta property="og:title" content="" /> | |
<meta property="og:description" content=""/> | |
<meta property="og:image" content="" /> | |
<meta property="og:image:type" content="image/jpg" /> | |
<meta property="og:url" content="{current_url}"/> | |
<meta property="og:type" content="website"/> | |
<meta property="fb:admins" content="1549615513" /> | |
{if '{exp:browser_detect:browser}' == 'IE8'} | |
<link rel="stylesheet" href="{global_theme_url}/legacy/css/foundation.css" /> | |
<link rel="stylesheet" href="{global_theme_url}/css/screen.css" /> | |
<link rel="stylesheet" href="{global_theme_url}/css/ie8.css" /> | |
<script src="{global_theme_url}/legacy/js/jquery.js"></script> | |
<script src="{global_theme_url}/legacy/js/modernizr.foundation.js"></script> | |
{if:else} | |
<link rel="stylesheet" href="{global_theme_url}/css/foundation.css" /> | |
<link rel="stylesheet" href="{global_theme_url}/css/screen.css" /> | |
<script src="{global_theme_url}/js/vendor/jquery.js"></script> | |
<script src="{global_theme_url}/js/vendor/modernizr.js"></script> | |
{/if} | |
<link rel="icon" type="image/png" href="{global_theme_url}/img/favicon.ico" /> | |
<link rel="shortcut icon" href="{global_theme_url}/img/favicon.ico" /> | |
</head> | |
<body> | |
<div class="off-canvas-wrap" data-offcanvas> | |
<div class="inner-wrap"> | |
<aside class="left-off-canvas-menu"> | |
<ul id="mobile-nav" class="off-canvas-list"> | |
<li><a href="#">MENU</a></li> | |
<li><a href="#">MENU</a></li> | |
<li><a href="#">MENU</a></li> | |
</ul> | |
</aside> | |
<div id="header"> | |
</div> | |
<div id="content"> | |
</div> | |
<div id="footer"> | |
</div> | |
<a class="exit-off-canvas"></a> | |
</div> | |
</div> | |
{if '{exp:browser_detect:browser}' == 'IE8'} | |
<script src="{global_theme_url}/legacy/foundation-shim.js"></script> | |
<script src="{global_theme_url}/legacy/js/foundation.min.js"></script> | |
<script src="{global_theme_url}/legacy/js/app.js"></script> | |
<script src="{global_theme_url}/js/script.js"></script> | |
{if:else} | |
<script src="{global_theme_url}/js/foundation.min.js"></script> | |
<script src="{global_theme_url}/js/script.js"></script> | |
{/if} | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment