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: 84625a18eab145fdcef79028d4922ecc7d38db17 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{{ define "main" }}
<div
  style="
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  "
>
  {{ partial "intro.html" . }}
  <div
    style="
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 80vw;
      height: 80vw;
      min-width: 250px;
      min-height: 250px;
      max-width: 400px;
      max-height: 400px;
    "
  >
    <div
      style="
        position: absolute;
        opacity: 0;
        padding: 25px;
        min-width: 250px;
        min-height: 250px;
        max-width: 400px;
        max-height: 400px;
        box-sizing: border-box;
        transition: opacity 0.8s;
        z-index: 10;
      "
      class="more-info"
    >
      <p style="margin: 0 0 0.25em 0; font-size: 0.9em; text-align: center;">
        {{ .Site.Params.about }}
      </p>
      {{ partial "social.html" . }}
    </div>
    <div
      class="profile-image"
      style="
        background-color: inherit;
        opacity: 1;
        visibility: visible;
        transition: opacity 0.8s, width 0.8s, transform 0.8s;
        cursor: pointer;
        width: 100%;
        transform: none;
      "
    >
      <img
        src="{{ .Site.Params.image | relURL }}"
        style="width: 100%; height: 100%; border-radius: 100%;"
      />
    </div>
  </div>
</div>
{{ end }}