-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.html
77 lines (65 loc) · 2.44 KB
/
single.html
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{{ partial "header.html" . }}
{{ partial "navbar.html" . }}
<article class="article article-project" itemscope itemtype="http://schema.org/Article">
{{ partial "page_header.html" . }}
<div class="article-container">
<div class="article-style" itemprop="articleBody">
{{ .Content }}
</div>
{{ partial "tags.html" . }}
{{ partial "page_author.html" . }}
{{ $page := . }}
{{ $project := .File.ContentBaseName }}
{{ $items := where (where .Site.RegularPages "Type" "post") ".Params.projects" "intersect" (slice $project) }}
{{ $count := len $items }}
{{ if ge $count 1 }}
<h2>{{ (i18n "posts") }}</h2>
{{ range $items }}
{{ if eq $page.Site.Params.projects.post_view 1 }}
{{ partial "li_list" . }}
{{ else if eq $page.Site.Params.projects.post_view 3 }}
{{ partial "post_li_card" . }}
{{ else }}
{{ partial "li_compact" . }}
{{ end }}
{{ end }}
{{ end }}
{{ $items := where (where .Site.RegularPages "Type" "publication") ".Params.projects" "intersect" (slice $project) }}
{{ $pubs_len := len $items }}
{{ if ge $pubs_len 1 }}
<h2>{{ (i18n "publications") }}</h2>
{{ range $items }}
{{ if eq $page.Site.Params.projects.publication_view 1 }}
{{ partial "li_list" . }}
{{ else if eq $page.Site.Params.projects.publication_view 3 }}
{{ partial "publication_li_card" . }}
{{ else if eq $page.Site.Params.projects.publication_view 4 }}
{{ partial "publication_li_citation" . }}
{{ else }}
{{ partial "li_compact" . }}
{{ end }}
{{ end }}
{{ end }}
{{ $items := where (where .Site.RegularPages "Type" "talk") ".Params.projects" "intersect" (slice $project) }}
{{ $talks_len := len $items }}
{{ if ge $talks_len 1 }}
<h2>{{ (i18n "talks") }}</h2>
{{ range sort $items ".Params.time_start" "desc" }}
{{ if eq $page.Site.Params.projects.talk_view 1 }}
{{ partial "li_list" . }}
{{ else if eq $page.Site.Params.projects.talk_view 3 }}
{{ partial "talk_li_card" . }}
{{ else }}
{{ partial "li_compact" . }}
{{ end }}
{{ end }}
{{ end }}
</div>
</article>
{{ if .Site.Params.section_pager }}
<div class="article-container article-widget">
{{ partial "section_pager.html" . }}
</div>
{{ end }}
{{ partial "footer_container.html" . }}
{{ partial "footer.html" . }}