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.html24
1 files changed, 13 insertions, 11 deletions
diff --git a/layouts/index.html b/layouts/index.html
index 9e93933..0d46702 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,19 +1,21 @@
{{ define "main" }}
-<div class="row no-gutters">
- <div class="col-sm-4 order-sm-2 bg-secondary text-white p-2">
+<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" . }}
- <hr style="width:50%;" />
{{ partial "language.html" . }}
- <hr style="width:50%;" />
{{ partial "hobby.html" . }}
</div>
+ {{- partial "footer.html" . -}}
+</section>
- <div class="col-sm-8 text-white p-2">
- {{ partial "experience.html" . }}
- {{ partial "education.html" . }}
- {{ partial "project.html" . }}
- {{ partial "skill.html" . }}
- </div>
-</div>
+<section class="w-full sm:w-3/5 px-3">
+ {{ partial "experience.html" . }}
+ {{ partial "education.html" . }}
+ {{ partial "project.html" . }}
+ {{ partial "skill.html" . }}
+</section>
{{ end }}