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

github.com/LordMathis/hugo-theme-nix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html41
1 files changed, 21 insertions, 20 deletions
diff --git a/layouts/index.html b/layouts/index.html
index 903315c..0fc3f0e 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -8,31 +8,32 @@
</head>
<body>
{{ partial "header.html" . }}
- <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 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>
- </div>
- {{ end }}
- <div class="row">
- <div class="col-xs-12 user-profile text-center">
- <h1 id="user-name">{{ .Site.Params.Name }}</h1>
+ {{ end }}
+ <div class="row">
+ <div class="col-xs-12 user-profile text-center">
+ <h1 id="user-name">{{ .Site.Params.Name }}</h1>
+ </div>
</div>
- </div>
- <div class="row">
- <div class="col-xs-12 user-social text-center">
- {{ partial "social.html" . }}
+ <div class="row">
+ <div class="col-xs-12 user-social text-center">
+ {{ partial "social.html" . }}
+ </div>
</div>
- </div>
- <div class="row">
- <div class="col-md-4 col-md-offset-4 user-description text-center">
- <p>{{ .Site.Params.About }}</p>
+ <div class="row">
+ <div class="col-md-4 col-md-offset-4 user-description text-center">
+ <p>{{ .Site.Params.About }}</p>
+ </div>
</div>
</div>
- <div class="push"></div>
+ {{ partial "footer.html" . }}
</div>
- {{ partial "footer.html" . }}
</body>
</html>