From d0f943c6623e8ff538e8d8c48283831e9f3c1147 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Thu, 31 Jul 2025 21:30:37 +0530 Subject: site: update layout & msg --- base.html | 17 -------- config.cfg | 8 ++++ index.html | 80 ++++++++----------------------------- partials/footer.html | 5 +++ partials/navbar.html | 18 +++++---- partials/project-list.html | 30 ++++++++++++++ partials/tailwind_class_groups.css | 9 +++++ partials/tailwind_class_groups.html | 7 ---- posts/a.html | 4 -- posts/b.md | 8 ---- templates/base.html | 18 +++++++++ 11 files changed, 97 insertions(+), 107 deletions(-) delete mode 100644 base.html create mode 100644 config.cfg create mode 100644 partials/footer.html create mode 100644 partials/project-list.html create mode 100644 partials/tailwind_class_groups.css delete mode 100644 partials/tailwind_class_groups.html delete mode 100644 posts/a.html delete mode 100644 posts/b.md create mode 100644 templates/base.html diff --git a/base.html b/base.html deleted file mode 100644 index 042ee4d..0000000 --- a/base.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Home | COMPROMYSE - - - - - - {{ include "navbar.html" }} - - {{ body }} - - diff --git a/config.cfg b/config.cfg new file mode 100644 index 0000000..3e6e710 --- /dev/null +++ b/config.cfg @@ -0,0 +1,8 @@ +resources = { + index.html, + projects.html +} + +static = { + assets +} diff --git a/index.html b/index.html index 37441b7..1fb7412 100644 --- a/index.html +++ b/index.html @@ -1,74 +1,28 @@ -
-
- -{{ eachdo posts }} -KSFAISO - ASHIAUHSFI -HERE -HERETOO{{ put title }}ENDIT -ASJFHAIS -{{ endeachdo }} - -
- -
- -
-

- Hi there! I'm RAGHU. -

-

Programmer and Hacker.

- - -
-
- -
+{{ contentfor "title" }}HOME{{ endcontent }} - -
-

[ PROJECTS ]

+
- + {{ include "footer.html" }} -
-
-

The Quieter You Become, The More You Are Able To Hear.

-
-
- -{{ include "tailwind_class_groups.html" }} +
diff --git a/partials/footer.html b/partials/footer.html new file mode 100644 index 0000000..e5e870f --- /dev/null +++ b/partials/footer.html @@ -0,0 +1,5 @@ +
+
+

The Quieter You Become, The More You Are Able To Hear.

+
+
diff --git a/partials/navbar.html b/partials/navbar.html index d97ebb3..893659c 100644 --- a/partials/navbar.html +++ b/partials/navbar.html @@ -1,17 +1,19 @@ diff --git a/partials/project-list.html b/partials/project-list.html new file mode 100644 index 0000000..d9833b6 --- /dev/null +++ b/partials/project-list.html @@ -0,0 +1,30 @@ + diff --git a/partials/tailwind_class_groups.css b/partials/tailwind_class_groups.css new file mode 100644 index 0000000..1bae0be --- /dev/null +++ b/partials/tailwind_class_groups.css @@ -0,0 +1,9 @@ +@layer components { + .project-list-heading { + @apply text-lg group-hover:underline group-hover:text-pink-900 group-hover:bg-pink-100 p-1; + } + + .project-list-description { + @apply pl-3 border-l-3 border-dashed border-pink-300 group-hover:text-pink-900 group-hover:bg-pink-100 group-hover:underline flex items-center; + } +} diff --git a/partials/tailwind_class_groups.html b/partials/tailwind_class_groups.html deleted file mode 100644 index ef1c6f2..0000000 --- a/partials/tailwind_class_groups.html +++ /dev/null @@ -1,7 +0,0 @@ - diff --git a/posts/a.html b/posts/a.html deleted file mode 100644 index 8237d7f..0000000 --- a/posts/a.html +++ /dev/null @@ -1,4 +0,0 @@ -title = A.html ---- - -

a.html

diff --git a/posts/b.md b/posts/b.md deleted file mode 100644 index 51817b8..0000000 --- a/posts/b.md +++ /dev/null @@ -1,8 +0,0 @@ -title = B.md ---- - -# Hi there!!!! - -``` -AHH -``` diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..f00ce3e --- /dev/null +++ b/templates/base.html @@ -0,0 +1,18 @@ + + + + + + + {{ content "title" }} | COMPROMYSE + + + + + + + {{ body }} + + -- cgit v1.2.3