From bf293d57d5d2540e3c9ba33e8dedf2ad8c829029 Mon Sep 17 00:00:00 2001
From: Alexander Bilz <mail@alexbilz.com>
Date: Fri, 25 Jun 2021 12:00:26 +0000
Subject: [PATCH] fix: changed appearance of items

---
 layouts/portfolio/list.html |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/layouts/portfolio/list.html b/layouts/portfolio/list.html
index 6acabcd..1f39051 100644
--- a/layouts/portfolio/list.html
+++ b/layouts/portfolio/list.html
@@ -18,7 +18,7 @@
         {{ range $i, $p := .portfolioitem }}
           <div class="box-wrapper">
             <div
-              class="box-image {{ if not (modBool $i 2) }}
+              class="box-image {{ if (modBool $i 2) }}
                 box-image--right
 
               {{ else }}
@@ -31,7 +31,7 @@
               </a>
             </div>
             <div
-              class="box {{ if not (modBool $i 2) }}
+              class="box {{ if (modBool $i 2) }}
                 box--left
 
               {{ else }}

--
Gitblit v1.10.0