Skip to content

Instantly share code, notes, and snippets.

@kenrogers
Created May 11, 2017 01:02
Show Gist options
  • Save kenrogers/997b62e09fbbfc34663e1405abb63714 to your computer and use it in GitHub Desktop.
Save kenrogers/997b62e09fbbfc34663e1405abb63714 to your computer and use it in GitHub Desktop.
The modified default template file of our Foundation 6 starter site
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Econothought</title>
<meta name="description" content="Learn real economics">
<link rel="stylesheet" href="{{root}}assets/css/app.css">
</head>
<body>
<div class="title-bar" data-responsive-toggle="animated-nav" data-hide-for="medium">
<button class="menu-icon" type="button" data-toggle></button>
<div class="title-bar-title">Menu</div>
</div>
<div class="top-bar" id="animated-nav" data-animate="hinge-in-from-top hinge-out-from-top">
<div class="top-bar-left">
<ul class="menu">
<li class="menu-text">Econothought</li>
</ul>
</div>
<div class="top-bar-right">
<ul class="menu">
<li><a href="beginner.html">Beginner</a></li>
<li><a href="intermediate.html">Intermediate</a></li>
<li><a href="advanced.html">Advanced</a></li>
<li><a href="resources.html">Resources</a></li>
</ul>
</div>
</div>
{{> body}}
<script src="{{root}}assets/js/app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment