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

index.html « layouts - github.com/darshanbaral/sada.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d4670263ddf02f9545613c89b9f5d87430957f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ define "main" }}
<section
  class="w-full sm:w-2/5 bg-gray-200 dark:bg-dark2 p-3 rounded shadow flex flex-col justify-between"
>
  <div>
    {{ partial "profilePhoto" . }}
    {{ partial "social.html" . }}
    {{ partial "aboutDesc" . }}
    {{ partial "language.html" . }}
    {{ partial "hobby.html" . }}
  </div>
  {{- partial "footer.html" . -}}
</section>

<section class="w-full sm:w-3/5 px-3">
  {{ partial "experience.html" . }}
  {{ partial "education.html" . }}
  {{ partial "project.html" . }}
  {{ partial "skill.html" . }}
</section>
{{ end }}