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

github.com/darshanbaral/ghazal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/section/about.html')
-rw-r--r--layouts/section/about.html43
1 files changed, 25 insertions, 18 deletions
diff --git a/layouts/section/about.html b/layouts/section/about.html
index 1b0c414..8c60c1e 100644
--- a/layouts/section/about.html
+++ b/layouts/section/about.html
@@ -1,5 +1,4 @@
-{{ define "main" }}
-{{ partial "social" . }}
+{{ define "main" }} {{ partial "social" . }}
<img
src="{{ .Params.profileImage }}"
alt="profile image of {{ .Site.Params.author }}"
@@ -11,21 +10,29 @@
"
/>
-<div
- style="
- display: flex;
- justify-content: center;
- flex-direction: column;
- border-bottom: solid 3px;
- "
->
- <h1 style="margin: 1em 0 0.15em 0;">
- {{ .Params.prefix }} {{ .Params.name }}, {{ .Params.suffix }}
- </h1>
- <h2 style="margin: 0.15em 0;">{{ .Params.jobTitle }}</h2>
- <h3 style="margin: 0.15em 0;">{{ .Params.office }}, {{ .Params.location }}</h3>
+<div style="margin-bottom: 3em;">
+ <div
+ style="
+ display: flex;
+ justify-content: center;
+ flex-direction: column;
+ border-bottom: solid 3px;
+ "
+ >
+ <h1 style="margin: 1em 0 0.15em 0;">
+ {{ .Params.prefix }} {{ .Params.name }}, {{ .Params.suffix }}
+ </h1>
+ <h2 style="margin: 0.15em 0;">{{ .Params.jobTitle }}</h2>
+ <h3 style="margin: 0.15em 0;">
+ {{ .Params.office }}, {{ .Params.location }}
+ </h3>
+ </div>
+ {{ .Content }}
+</div>
+<div style="margin-bottom: 3em;">
+ {{ partial "about/education" . }}
+</div>
+<div>
+ {{ partial "about/publications" . }}
</div>
-{{ .Content }}
-{{ partial "about/education" . }}
-{{ partial "about/publications" . }}
{{ end }}