Skip to content

Instantly share code, notes, and snippets.

@gabrielpoca
Last active August 29, 2015 14:17
Show Gist options
  • Select an option

  • Save gabrielpoca/6b5ce05d90967b4f5c6d to your computer and use it in GitHub Desktop.

Select an option

Save gabrielpoca/6b5ce05d90967b4f5c6d to your computer and use it in GitHub Desktop.
Meteor Packing like a Pro
<head>
 …
</head>
<body>
 {{#Layout}}
 <h1>Hello World</h1>
 {{/Layout}}
<body>
<template name="Layout">
<div class="Layout">
<div class="Layout-sidebar">{{> Sidebar}}</div>
<div class="Layout-content">{{> Template.contentBlock}}</div>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment