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