show.html 328 B

123456789101112
  1. <div class="card" title="{{showController.note.title}}">
  2. <h1>{{ showController.note.title }}</h1>
  3. <p>Created by: {{ showController.note.user || showController.note.username }}</p>
  4. <h3>Description</h3>
  5. <p>{{ showController.note.description }}</p>
  6. <h3>Contents</h3>
  7. <p>{{ showController.note.content }}</p>
  8. </div>