src

Go monorepo.
git clone git://code.dwrz.net/src
Log | Files | Refs

entry.gohtml (491B)


      1 {{ define "entry" }}
      2   <article class="wide128 entry">
      3     <h2>{{ .Entry.Title }}</h2>
      4     {{ .Entry.Content }}
      5     <div class="entry-nav">
      6       <div>
      7 	{{ if .Entry.Previous }}
      8 	  <a href="/timeline/{{ .Entry.Previous.Link }}/">
      9 	    {{ .Entry.Previous.Title }}
     10 	  </a>
     11 	{{ end }}
     12       </div>
     13       <div class="text-right">
     14 	{{ if .Entry.Next }}
     15 	  <a href="/timeline/{{ .Entry.Next.Link }}/">
     16 	    {{ .Entry.Next.Title }}
     17 	  </a>
     18 	{{ end }}
     19       </div>
     20     </div>
     21   </article>
     22 {{ end }}