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

{{ partial "head.html" . }}

<body class="bg-dark" style="font-family: 'Roboto', sans-serif;">

    <div class="container">
        {{ partial "header.html" . }}
        <div class="row mt-1">
            <div class="col-sm-4 order-sm-2 bg-secondary text-white 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>
    </div>

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

</html>