Skip to content
Snippets Groups Projects
notes.html 194 B
Newer Older
  • Learn to ignore specific revisions
  • ---
    title: Notes
    ---
    <h1>Notes</h1>
    
    <ul>
      {% for note in site.notes %}
        <li>
          <h2><a href="{{ note.url | real_relative_url }}">{{ note.title }}</a></h2>
        </li>
      {% endfor %}
    </ul>