linstrom/frontend-reactive/app/templates/application.hbs

11 lines
163 B
Handlebars
Raw Normal View History

{{page-title "FrontendReactive"}}
{{outlet}}
2024-09-20 14:35:59 +00:00
{{#each @model.notes as |note|}}
2024-09-19 11:50:04 +00:00
<Note
2024-09-20 14:35:59 +00:00
@note={{note}}
2024-09-19 11:50:04 +00:00
@isInTimeline="false"
2024-09-20 14:35:59 +00:00
/>
{{/each}}
2024-09-19 11:50:04 +00:00
2024-09-23 07:18:35 +00:00
{{!--<Timeline />--}}