Welcome to mirror list, hosted at ThFree Co, Russian Federation.

single.html « archive « layouts - github.com/syui/hugo-theme-wave.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a5b01679d85bde86c4263982be6a7c02c627d7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{{ 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>