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

github.com/darshanbaral/mero.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.html19
1 files changed, 15 insertions, 4 deletions
diff --git a/layouts/index.html b/layouts/index.html
index ce0b696..b4deed2 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,5 +1,16 @@
{{ define "main" }}
-<main>
- {{ partial "intro.html" . }}
-</main>
-{{ end }} \ No newline at end of file
+<div class="d-flex flex-row flex-wrap justify-content-around">
+ <div class="mt-4 home-flex-item" style="width: calc(35% - 20px); min-width: 250px;">
+ {{ partial "image-social" . }}
+ </div>
+
+ <div class="home-flex-item mt-4" style="width: calc(65% - 20px);">
+ <div class="position-relative border rounded p-2" style="margin-bottom: 40px;">
+ {{ partial "about" . }}
+ </div>
+ <div class="home-flex-item position-relative p-2 border rounded text-center">
+ {{ partial "recentarticles" . }}
+ </div>
+ </div>
+</div>
+{{ end }}