gabrielgio.me @ a42f79ec30d915b45793d7d3c6964845bd5f4946

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