Last active
August 29, 2015 13:57
-
-
Save jdabs/9354940 to your computer and use it in GitHub Desktop.
Example Foundation index.html converted for use with Soholaunch
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> | |
<html class="no-js" lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>#title#</title> | |
<link rel="stylesheet" href="#relative_template_path#/css/foundation.css" /> | |
<script src="js/vendor/modernizr.js"></script> | |
</head> | |
<body> | |
<nav class="top-bar" data-topbar data-options="mobile_show_parent_link: true" role="primary"> | |
<ul class="title-area"> | |
<li class="name"> | |
<h1></h1> <!--Have to have this to make menu work, even if it's empty --> | |
</li> | |
<li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li> | |
</ul> | |
<section class="top-bar-section"> | |
#hmains# | |
</section> | |
</nav> | |
<section class="logo glass"> | |
<div class="row"> | |
<div class="large-12 columns"> | |
<a href="/" style="text-decoration:none; border:none;"> | |
<h1>#logo#</h1> | |
</a> | |
<div class="logo-rule"><hr></div> | |
<h2 class="slogan">#slogan#</h2> | |
</div> | |
</div> | |
</section> | |
<div class="clear"></div> | |
<section class="content"> | |
<div class="row"> | |
<div class="large-8 columns drop-shadow lifted"> | |
<div class="noBorder-panel"> | |
#content# | |
</div> | |
</div> | |
<div class="large-4 medium-4 columns"> | |
<div class="boxOne-panel drop-shadow lifted">#BOX1#</div> | |
</div> | |
</div> | |
</section> | |
<section class="footer"> | |
<div class="row"> | |
<div class="large-12 columns"> | |
#copyright# #biz-company#<br /> | |
#biz-phone#<br /> | |
#biz-email# | |
</div> | |
</div> | |
</section> | |
#jquery# | |
<script src="js/foundation.min.js"></script> | |
<script> | |
$(document).foundation(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment