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

index.html « layouts - github.com/darshanbaral/ghazal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 93dd66698477085c6c23a2681e9079d121e472c8 (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
{{ define "main" }}
<div
  style="
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  "
>
  {{ partial "intro.html" . }}
  <img
    src="{{ .Site.Params.mainImage | relURL }}"
    style="
      border-radius: 50%;
      background-color: inherit;
      opacity: 1;
      visibility: visible;
      transition: opacity 0.8s, width 0.8s, transform 0.8s;
      width: 100%;
      min-width: 250px;
      min-height: 250px;
      max-width: 300px;
      max-height: 300px;
      transform: none;
    "
  />
  {{ partial "social.html" . }}
  {{ .Site.Params.shortAbout }}
</div>
{{ end }}