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

list.html « current « layouts - github.com/epistemehealth/health-science-journal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 36ad9c1f7a9f948880d4d4697933922a87703993 (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
<!DOCTYPE html>
<html>
<head>
{{ partial "relcanonical.html" . }}
{{ partial "head.html" . }}
{{ partial "social-meta.html" . }}
{{ partial "stylesheets.html" . }}
</head>
<body>
{{ partial "global-header.html" . }}
<div class="container page-issue">
{{ if .Site.Params.currentissuepath }}
{{ with .Site.GetPage "article" }}
{{ with .Site.GetPage .Site.Params.currentissuepath }}
{{ partial "issue-header.html" . }}
{{ partial "issue-description.html" . }}
{{ partial "issue-contents.html" . }}
{{ end }}
{{ end }}
{{ else }}
{{ with .Site.GetPage "article" }}
{{ range first 1 .Pages }}
{{ partial "issue-header.html" . }}
{{ partial "issue-description.html" . }}
{{ partial "issue-contents.html" . }}
{{ end }}
{{ end }}
{{ end }}
</div>
{{ partial "footer.html" . }}
{{ partial "javascript-libraries.html" . }}
</body>
</html>