Created
February 27, 2014 13:41
-
-
Save anonymous/9250177 to your computer and use it in GitHub Desktop.
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
<head> | |
<title>ffff</title> | |
</head> | |
<body> | |
<h1>ffff</h1> | |
{{> welcome }} | |
{{> persons }} | |
</body> | |
<template name="welcome"> | |
<p> | |
Hello. | |
</p> | |
</template> | |
<template name="persons"> | |
{{-- Session.set("whatever", 1)}} | |
{{#each persons(1)}} | |
<strong>@{{twitter}}:</strong> | |
{{/each}} | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Template.persons.persons = function (whatever) {
return Persons.find({}, { sort: { time: -1 }});
}