Mauro Torrez 4db8e448b9
All checks were successful
continuous-integration/drone/push Build is passing
static theme include + languages setup
2020-05-06 01:52:41 -03:00

63 lines
1.9 KiB
HTML

{{ partial "head" . }}
<body>
<div id="wrap">
<!-- Header -->
{{ partial "header" . }}
{{ if (ne (strings.TrimSuffix "/projects/" .URL) .URL) }}
{{ .Render "projects" }}
{{ else if (ne (strings.TrimSuffix "/cv/" .URL) .URL) }}
{{ .Render "cv" }}
{{ else }}
<div class="container">
<div class="blog-post">
<h3>
<strong><a href="{{ .Permalink }}">{{ .Title }}</a></strong>
</h3>
</div>
<div class="blog-title">
<h4>
{{ .Date.Format "January 2, 2006" }}
&nbsp;&nbsp;
{{ range .Params.tags }}
<span class="label label-success">{{ . }}</span>
{{ end }}
</h4>
</div>
<div class="panel panel-default">
<div class="panel-body">
<div class="blogpost">
{{ .Content }}
<hr>
<div class="related-posts">
<h5>Related Posts</h5>
{{ range first 3 ( where ( where .Site.Pages.ByDate.Reverse ".Params.tags" "intersect" .Params.tags ) "Permalink" "!=" .Permalink ) }}
<div class="row">
<div class="col-sm-4 col-md-4 col-lg-4">
<h6 style="text-align: right">
{{ .Date.Format "January 2, 2006" }}
</h6>
</div>
<div class="col-sm-8 col-md-8 col-lg-8">
<h6 style="text-align: left">
<strong><a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a></strong>
</h6>
</div>
</div>
{{ end }}
</div>
</div>
</div>
<hr>
{{ partial "disqus" . }}
</div>
</div>
{{ end }}
</div>
<!-- Footer -->
{{ partial "footer" . }}
</body>
</html>