andersdamsgaard.com

my photography webpage
git clone git://src.adamsgaard.dk/andersdamsgaard.com # fast
git clone https://src.adamsgaard.dk/andersdamsgaard.com.git # slow
Log | Files | Refs | Submodules | README | LICENSE Back to index

list.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" . }}