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

about.html « section « layouts - github.com/darshanbaral/ghazal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b3c0640bb8a3b77857765930b45952805c13e8f1 (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
{{ define "main" }}
{{ partial "social" . }}
<img
  src="{{ .Params.profileImage }}"
  style="
    display: block;
    margin: 1em auto 0 auto;
    max-width: 300px;
    border-radius: 50%;
  "
/>

<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 }}
{{ partial "about/education" . }}
{{ partial "about/publications" . }}
{{ end }}