show.html 239 B

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