tlist.html - andersdamsgaard.com - my photography webpage
 (HTM) git clone git://src.adamsgaard.dk/andersdamsgaard.com
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
       tlist.html (481B)
       ---
            1 {{ partial "header.html" . }}
            2 
            3 <main>
            4         <div class="post">
            5 
            6                 <h1 class="post-title">{{ .Title }}</h1>
            7                 <div class="post-line"></div>
            8 
            9                 {{ .Content }}
           10 
           11         </div>
           12 
           13         <div class="pagination">
           14                 {{ if .PrevPage }}
           15                 <a href="{{ .PrevPage.RelPermalink }}" class="left arrow">&#8592;</a>
           16                 {{ end }}
           17                 {{ if .NextPage }}
           18                 <a href="{{ .NextPage.RelPermalink }}" class="right arrow">&#8594;</a>
           19                 {{ end }}
           20 
           21                 <a href="#" class="top">Top</a>
           22         </div>
           23 </main>
           24 
           25 {{ partial "footer.html" . }}