website/themes/hugo-theme-wave/layouts/archive/single.html
Paul Lecuq 26f1f90c1d
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
cleaned website stylesheets, reactivated ip address ws on artible pages
2020-06-06 02:32:29 +02:00

41 lines
1.1 KiB
HTML

{{ partial "head" . }}
{{ partial "header" . }}
<div id="container">
<div class="outer">
<div id="cal-heatmap"></div>
<div id="example-heatmap"></div>
<script type="text/javascript">
var cal = new CalHeatMap();
cal.init({
itemSelector: "#example-heatmap",
domain: "week",
subDomain: "hour",
data: "/hugo-theme-wave/json/datas-years.json",
start: new Date(2000, 0, 5),
cellSize: 10,
range: 2,
previousSelector: "#example-c-PreviousDomain-selector",
nextSelector: "#example-c-NextDomain-selector",
legend: [2, 4, 6, 8],
tooltip: true
});
</script>
<div id="blog-archives" class="category">
{{ .Content }}
{{ range (where .Site.RegularPages "Type" "post") }}
<h1>
<time datetime="{{ .Date }}" itemprop="datePublished">{{ .Date.Format "2006-01-02" }}</time>
<a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a>
</h1>
{{ end }}
</div>
</div>
</div>
</div>
{{ partial "footer" . }}
</body>
</html>