diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-02 22:16:39 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-02 22:16:39 +0530 | 
| commit | 8e824d37627b5e874469301755ca5593a4580ff6 (patch) | |
| tree | 48f623fce9afa1ccc59e99d44c6a8fc6fbda3b4e /projects/index.html | |
| parent | 9ca232e2154a8037fa5c4d7804b79576d09d1583 (diff) | |
site: abstract into class groups
Diffstat (limited to '')
| -rw-r--r-- | projects/index.html | 19 | 
1 files changed, 9 insertions, 10 deletions
| diff --git a/projects/index.html b/projects/index.html index ab4e50d..6648101 100644 --- a/projects/index.html +++ b/projects/index.html @@ -1,23 +1,22 @@ -{{ contentfor "title" }}PROJECTS{{ endcontent }} +title = PROJECTS +---  <div class="p-16">    <h1 class="text-5xl">PROJECTS</h1>    <p class="text-xl">Here's a bunch of things I've done.</p>  </div> -<div class="px-16 flex flex-wrap gap-8 items-stretch justify-center"> +<div class="card-container">    {{ eachdo projects }} -    <a href="{{ put url }}" class="flex-grow flex-shrink basis-128 min-w-64 max-w-128"> -      <div class="button-inverted py-2 px-4 flex flex-col justify-between"> -        <div class="flex flex-col gap-2 pt-2 items-center items-center"> -          <p class="text-2xl font-semibold text-center">{{ put name }}</p> -          <p class="text-xl text-center text-wrap">{{ put description }}</p> -        </div> - -        <div class="text-center text-sm border-t-2 mt-3 py-1">{{ put languages }}</div> +    <a href="{{ put url }}" class="card-anchor button-inverted"> +      <div class="flex flex-col gap-2 pt-2 items-center items-center"> +        <p class="text-2xl font-semibold text-center">{{ put name }}</p> +        <p class="text-xl text-center text-wrap">{{ put description }}</p>        </div> + +      <div class="text-center text-sm border-t-2 mt-3 py-1">{{ put languages }}</div>      </a>    {{ endeachdo }} | 
