diff --git a/content/_index.md b/content/_index.md
index f4e0a2e..d7081e9 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -1,6 +1,7 @@
---
title: yequari.com
---
-# Back at it again, for the very first time
-Welcome to my homepage! I like to program and tinker with computers. My other hobbies include video games, tabletop RPGs, and collecting Transformers figures. On this site I like to write about the web, games, and random thoughts I have. I also publish my notes on various topics.
+# Hello
+
+Welcome to my homepage! I program and tinker with computers. This site is a collection of notes, ramblings, things I like, and more. My hobbies include video games, TTRPGs, and collecting Transformers figures.
diff --git a/layouts/index.html b/layouts/index.html
index fad2158..0e4367f 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,29 +1,20 @@
{{ define "main" }}
-
-
-
- {{ .Content }}
-
-
-
Latest Blog Posts
-
- {{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
- {{ .Title }}
- {{ end }}
-
-
-
-
Social
- {{- partial "social.html" . -}}
-
-
-
+
+ {{ .Content }}
+
+
+ {{- partial "index-latest-blogs.html" . -}}
+
+
+ {{- partial "index-socials.html" . -}}
+
+
+
+
+ {{- partial "index-now.html" . -}}
+
+
+
{{ end }}
diff --git a/layouts/partials/index-article-recs.html b/layouts/partials/index-article-recs.html
new file mode 100644
index 0000000..ca14c44
--- /dev/null
+++ b/layouts/partials/index-article-recs.html
@@ -0,0 +1 @@
+Read These Articles
diff --git a/layouts/partials/index-latest-blogs.html b/layouts/partials/index-latest-blogs.html
new file mode 100644
index 0000000..720b32b
--- /dev/null
+++ b/layouts/partials/index-latest-blogs.html
@@ -0,0 +1,9 @@
+Latest Blog Posts
+
+ {{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
+
+ {{ .PublishDate.Format "1/2/06" }}
+ {{ .Title }}
+
+ {{ end }}
+
diff --git a/layouts/partials/index-link-banners.html b/layouts/partials/index-link-banners.html
new file mode 100644
index 0000000..254234f
--- /dev/null
+++ b/layouts/partials/index-link-banners.html
@@ -0,0 +1,12 @@
+Check Out These Sites
+
+
+/links =>
+
diff --git a/layouts/partials/index-now.html b/layouts/partials/index-now.html
new file mode 100644
index 0000000..b14b528
--- /dev/null
+++ b/layouts/partials/index-now.html
@@ -0,0 +1,6 @@
+What I'm Up To
+
+ Helping out at the 32-Bit Cafe
+ Playing Zenless Zone Zero
+ Learning C#
+
diff --git a/layouts/partials/social.html b/layouts/partials/index-socials.html
similarity index 95%
rename from layouts/partials/social.html
rename to layouts/partials/index-socials.html
index 2ec2048..a42ab2f 100644
--- a/layouts/partials/social.html
+++ b/layouts/partials/index-socials.html
@@ -1,3 +1,4 @@
+Socials
{{ range site.Menus.social }}
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html
index 746440f..cc8d043 100644
--- a/layouts/partials/sidebar.html
+++ b/layouts/partials/sidebar.html
@@ -15,7 +15,7 @@
- {{ partial "social.html" .}}
+ {{ partial "index-socials.html" .}}
diff --git a/static/css/custom.css b/static/css/custom.css
index 0740436..e2cec13 100644
--- a/static/css/custom.css
+++ b/static/css/custom.css
@@ -72,9 +72,8 @@
.index-wrapper {
display: grid;
- grid-template-columns: repeat(5, 20% [col-start]);
- grid-template-rows: repeat(5, 33% [row-start]);
- column-gap: 0.5vw;
+ grid-template-columns: repeat(10, 10% [col-start]);
+ grid-template-rows: repeat(6, 33% [row-start]);
}
.box {
@@ -85,7 +84,7 @@
.index-content {
grid-row: 1 / 2;
- grid-column: 2 / 5;
+ grid-column: 1 / span 6;
}
/* .index-status { */
@@ -96,38 +95,53 @@
.index-social {
grid-row: 2 / 3;
- grid-column: 5 / 6;
+ grid-column: 9 / span 2;
}
.index-blog {
grid-row: 2 / 3;
- grid-column: 3 / 5;
+ grid-column: 5 / span 4;
}
.index-banners {
- grid-row: 2 / 3;
- grid-column: 1 / 3
+ grid-row: 3 / 4;
+ grid-column: 1 / span 5;
+}
+
+.index-recent {
+ grid-row: 1 / 2;
+ grid-column: 7 / span 4;
+}
+
+.index-bookmarks {
+ grid-row: 3 / 4;
+ grid-column: 6 / span 5;
}
@media only screen and (max-width: 700px) {
- .index-content {
- grid-row: 1 / 2;
+ .box {
grid-column: 1 / 6;
}
- .index-status {
+ .index-content {
+ grid-row: 1 / 2;
+ }
+
+
+ .index-recent {
grid-row: 2 / 3;
- grid-column: 1 / 6;
+ }
+
+ .index-banners {
+ grid-row: 3 / 4;
}
.index-social {
- grid-row: 3 / 4;
- grid-column: 1 / 6;
+ grid-row: 4 / 5;
}
.index-blog {
- grid-row: 4 / 5;
- grid-column: 1 / 6;
+ grid-row: 5 / 6;
}
}