Created
August 5, 2014 13:38
-
-
Save saintc0d3r/b161529c42f83c7050ff to your computer and use it in GitHub Desktop.
[Zurb] Basic HTML Template
This file contains 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>{{mainTitle}}</title> | |
<link rel="stylesheet" href="assets/css/foundation.css" /> | |
<script src="assets/js/vendor/modernizr.js"></script> | |
</head> | |
<body> | |
<!-- TODO: Write the main layouts here --> | |
<script src="assets/js/vendor/jquery.js"></script> | |
<script src="assets/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