From 704595fc28ac2baddc35404d9f6d7e357fb88c38 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Sun, 15 Nov 2020 19:32:44 +0100
Subject: [PATCH] Fix id/class mix-up.

---
 views/_card.tpl | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/views/_card.tpl b/views/_card.tpl
index d5a541a..e7533dd 100644
--- a/views/_card.tpl
+++ b/views/_card.tpl
@@ -1,15 +1,15 @@
 <div class="card">
   % if card["type"] == 'guilt':
-  <h1 id="title">GUILT CARD</h1>
-  <p id="prompt">Choose at least one of these guilts as your own:</p>
-  <ul id="answers">
+  <h1 class="title">GUILT CARD</h1>
+  <p class="prompt">Choose at least one of these guilts as your own:</p>
+  <ul class="answers">
   % for answer in card["answers"]:
     <li>{{ answer }}</li>
   % end
   <ul/>
   % end
   % if card["type"] == 'action':
-  <h1 id="title">ACTION CARD<br />{{ card["title"] }}</h1>
+  <h1 class="title">ACTION CARD<br />{{ card["title"] }}</h1>
   % for paragraph in card["paragraphs"]:
   <p>{{ paragraph }}</p>
   % end
-- 
2.30.2