diff options
Diffstat (limited to '')
| -rw-r--r-- | projects/index.html | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/projects/index.html b/projects/index.html index 9ffb78c..beb392c 100644 --- a/projects/index.html +++ b/projects/index.html @@ -2,23 +2,23 @@ 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> +    <h1 class="text-5xl">PROJECTS</h1> +    <p class="text-xl">Here's a bunch of things I've done.</p>  </div>  <div class="card-container"> -  {{ eachdo resources.projects }} +    {{ eachdo resources.projects }}      <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="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> +        <div class="text-center text-sm border-t-2 mt-3 py-1">{{ put languages }}</div>      </a> -  {{ endeachdo }} +    {{ endeachdo }}  </div> | 
