aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/_includes/notes.html
blob: ca91e5415ee504dfb571fba4fbb2282cef667545 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                           


                                                  

                                                                  
                                                    
                                   
                                                                                                                            
         


              
{% assign note_list = site.notes | sort_natural: 'title' %}
<div class="list-group wide-enough">
  <div class="list-group-item disabled">
    <h4 class="list-group-item-heading">notes</h4>
  </div>
  {% for note in note_list %}
  <a href="{{ note.url | relative_url }}" class="list-group-item">
    <h5 class="list-group-item-heading flex-header">
      <span>{{ note.title }}</span>
      <small class="flex-header-right"><span class="glyphicon glyphicon-menu-right"></span>&nbsp;{{ note.subtitle }}</small>
    </h5>
  </a>
  {% endfor %}
</div>