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: 40558174cf60561c103c63f201921b7068f47c01 (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
<!DOCTYPE html>
<html lang="{{ .Site.Language }}">
  {{ partial "head.html" . }}

  <body class="bg-dark container" style="font-family: 'Roboto', sans-serif;">
    {{ partial "header.html" . }}
    <div class="row mt-1">
      <div
        class="col-sm-4 order-sm-2 bg-secondary text-white border border-secondary rounded pt-3"
      >
        {{ partial "education.html" . }}
        <hr style="width:50%;" />
        {{ partial "language.html" . }}
        <hr style="width:50%;" />
        {{ partial "hobby.html" . }}
      </div>

      <div class="col-sm-8 text-white pt-3">
        {{ partial "experience.html" . }}
        {{ partial "project.html" . }}
        {{ partial "skill.html" . }}
      </div>
    </div>

    {{ partial "footer.html" . }}
  </body>
</html>