{{title}}{{domain}}
5 |6 | submitted by {{author}}, 7 | {{commentsCount}} comments 8 | {{#if ownPost}}Edit{{/if}} 9 |
10 |├── server ├── fixtures.js └── publication.coffee ├── .meteor ├── .gitignore ├── release └── packages ├── client ├── coffee │ ├── main.coffee │ ├── config.coffee │ ├── errors.coffee │ └── layout.coffee ├── main.html ├── views │ ├── loading.html │ ├── access_denied.html │ ├── layout.html │ ├── errors.html │ └── header.html ├── features │ ├── comments │ │ ├── helpers │ │ │ └── comments_helper.coffee │ │ ├── views │ │ │ ├── comment.html │ │ │ └── comments_create.html │ │ └── scripts │ │ │ └── comments_create.coffee │ └── posts │ │ ├── views │ │ ├── posts_index.html │ │ ├── posts_show.html │ │ ├── post.html │ │ ├── posts_edit.html │ │ └── posts_submit.html │ │ ├── helpers │ │ └── posts_helper.coffee │ │ └── scripts │ │ ├── posts_create.coffee │ │ └── posts_edit.coffee └── sass │ └── style.css ├── lib ├── permissions.coffee └── router.coffee ├── packages └── .gitignore ├── smart.json ├── collections ├── errors.coffee ├── comments.coffee └── posts.coffee └── smart.lock /server/fixtures.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | 0.8.1.2 2 | -------------------------------------------------------------------------------- /client/coffee/main.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/main.html: -------------------------------------------------------------------------------- 1 |
{{body}}
8 |6 | submitted by {{author}}, 7 | {{commentsCount}} comments 8 | {{#if ownPost}}Edit{{/if}} 9 |
10 |