Skip to content

Instantly share code, notes, and snippets.

@devi
Created February 15, 2011 12:32
Show Gist options
  • Save devi/827464 to your computer and use it in GitHub Desktop.
Save devi/827464 to your computer and use it in GitHub Desktop.
mustache template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>{{title}}</title>
{{#styles}}
{{#browser}}<!--[if {{logic}} ]>{{/browser}}<link rel="stylesheet" type="text/css" href="{{style}}" {{#media}}media="{{target}}"{{/media}} />{{#browser}}<![endif]-->{{/browser}}
{{/styles}}
{{#scripts}}
<script type="text/javascript" src="{{script}}"></script>
{{/scripts}}
</head>
<body>
{{>body}}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment