uhh, lots of things in frontend

This commit is contained in:
Melody Becker 2024-09-19 13:50:04 +02:00
parent 76e8b183ca
commit 2d58312aa0
17 changed files with 30294 additions and 27939 deletions

View file

@ -0,0 +1,19 @@
<div class="note-content">
<p class="note-content-text">{{this.visibleContent}}</p>
{{#if this.canExpand}}
{{#if this.collapsed}}
<div
type="button"
class="note-content-toggle"
{{on "click" this.expand}}
>Expand</div>
{{else}}
<div
type="button"
class="note-content-toggle"
{{on "click" this.collapse}}
>Collapse</div>
{{/if}}
{{/if}}
</div>