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

index.html « layouts - github.com/aerohub/hugo-orbit-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 728fd60b577fe5974ccba9a68d3bb27db6ecad0c (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
<!DOCTYPE html>
    {{ partial "lang.html" . }}
<head>
    {{ partial "head.html" . }}
</head>

<body>
    <div class="wrapper">

    {{ partial "sidebar.html" . }}

	<div class="main-wrapper">

    {{ if .Site.Params.summary.enable }}
	{{ partial "summary.html" . }}
    {{ end }}

    {{ if .Site.Params.experiences.enable }}
    {{ partial "experiences.html" . }}
    {{ end }}

    {{ if .Site.Params.projects.enable }}
    {{ partial "projects.html" . }}
    {{ end }}

    {{ if .Site.Params.skills.enable }}
	{{ partial "skills.html" . }}
    {{ end }}

	</div><!--//main-body-->
    </div>

	{{ partial "footer.html" . }}

    {{ partial "scripts.html" . }}
</body>
</html>