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

github.com/darshanbaral/sada.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html43
1 files changed, 20 insertions, 23 deletions
diff --git a/layouts/index.html b/layouts/index.html
index c30e407..4055817 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,30 +1,27 @@
<!DOCTYPE html>
<html lang="{{ .Site.Language }}">
+ {{ partial "head.html" . }}
-{{ 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>
-<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 class="col-sm-8 text-white pt-3">
+ {{ partial "experience.html" . }}
+ {{ partial "project.html" . }}
+ {{ partial "skill.html" . }}
+ </div>
</div>
{{ partial "footer.html" . }}
-</body>
-
-</html> \ No newline at end of file
+ </body>
+</html>