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

index.html « layouts - github.com/LordMathis/hugo-theme-nix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0fc3f0e56779e37e03754a9515862dbd9bd0a7ad (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
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
	<head>
		<title> {{ .Site.Title }} </title>

		{{ partial "head.html" . }}

	</head>
	<body>
		{{ partial "header.html" . }}
		<div class="flex-wrapper">
			<div class="container wrapper">
				{{ with .Site.Params.ProfilePicture }}
				<div class="row">
					<div class="col-sm-3 col-centered">
						<img alt="profile-picture" class="img-responsive img-circle user-picture center-block" src="{{.}}">
					</div>
				</div>
				{{ end }}
				<div class="row">
					<div class="col-xs-12 user-profile text-center">
						<h1 id="user-name">{{ .Site.Params.Name }}</h1>
					</div>
				</div>
				<div class="row">
					<div class="col-xs-12 user-social text-center">
					{{ partial "social.html" . }}
					</div>
				</div>
				<div class="row">
					<div class="col-md-4 col-md-offset-4 user-description text-center">
						<p>{{ .Site.Params.About }}</p>
					</div>
				</div>
			</div>
			{{ partial "footer.html" . }}
		</div>
	</body>
</html>