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

index.html « layouts - github.com/salsysd/hugo-assembly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d73191baf502c2991012d5373e6595dbafd781f (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
<!DOCTYPE html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]>      <html class="no-js"> <![endif]-->
<html>
  <head>
    {{ partial "head.html" . }}
  </head>

</head>
<body>

<div id="header-wrapper">
	{{ partial "header.html" . }}

	{{ partial "banner.html" . }}

</div>

<div id="wrapper">
	{{ if .Site.Params.services.enable }}
	{{ partial "services.html" . }}
	{{ end }}
</div>
<div id="welcome">
	{{ if .Site.Params.welcome.enable }}
	{{ partial "welcome.html" . }}
	{{ end }}
</div>
	{{ if .Site.Params.footer.enable }}
	{{ partial "footer.html" .}}
	{{ end }}
</body>
</html>