wizard

placeholder description
git clone git@git.shmage.xyz/wizard.git
Log | Files | Refs | README

single.html (756B)


      1 {{ define "main" }}
      2 	<main>
      3 	  <article>
      4 	      <div class="post">
      5 		<div class="border_stone">
      6 		  <div class="border">
      7 		    <h1>{{ .Title }}</h1>
      8 		    <h2><time datetime="{{ .Date.Format "2006/01/02" }}">{{ .Date.Format "02/01/2006" }}</time></h2>
      9 		    <div>
     10 		      {{ .Content }}
     11 		    </div>
     12 		    {{ with .Params.tags }}
     13 		    <div>
     14 		      <ul id="tags">
     15 			{{ range . }}
     16 			<li><a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a></li>
     17 			{{ end }}
     18 		      </ul>
     19 		    </div>
     20 		    {{ end }}
     21 		    {{ with .Site.DisqusShortname }}
     22 		    <div>
     23 		      {{ template "_internal/disqus.html" . }}
     24 		    </div>
     25 		    {{ end }}
     26 		    {{ partial "bottomlinks_post.html" }}
     27 		  </div>
     28 		</div>
     29 	      </div>
     30 	  </article>
     31 	</main>
     32 {{ end }}