@if (!selectedTag()) {
Select a tag to see its notes
} @else if (loadingNotes()) {

Loading notes...

} @else if (tagNotes().length === 0) {
No notes with tag "{{ selectedTag() }}"
} @else {

Notes tagged "{{ selectedTag() }}"

{{ tagNotes().length }} note(s)
@for (note of tagNotes(); track note.path) {
{{ note.path }}
@if (note.updated_at) {

Updated {{ note.updated_at | date:'medium' }}

}

{{ note.content | slice:0:200 }}{{ note.content.length > 200 ? '...' : '' }}

}
}