davideisinger.com

My personal website
Log | Files | Refs | README

list.html (284B)


      1 {{ define "main" }}
      2   <section>
      3     <hr>
      4 
      5     <h2>Notes</h2>
      6 
      7     <ul>
      8       {{ range (where .Site.RegularPages.ByLastmod.Reverse "Type" "in" "notes") }}
      9         <li>
     10           <a href="{{ .Permalink }}">{{ .Title }}</a>
     11         </li>
     12       {{ end }}
     13     </ul>
     14   </section>
     15 {{ end }}