Skip to content

Instantly share code, notes, and snippets.

{
"packages": {
"bootstrap-3": {},
"fastclick": {},
"roles": {},
"iron-router": {
"version": "0.6.4"
},
"collectionFS": {
"version": "0.3.7"
<!-- rename to testProd.html -->
<template name="layoutTemplate">
<head>
<title>testProd</title>
</head>
<body>
{{loginButtons}}
{{yield}}
</body>
</template>
@sylido
sylido / testProd.js.txt
Created May 28, 2014 00:14
test js file
// rename to testProd.js
Router.configure({
layoutTemplate : "layoutTemplate"
});
Router.map(function() {
this.route('/', {
template: "blobImage"
});
});