From: Christian Heller <c.heller@plomlompom.de>
Date: Sun, 15 Nov 2020 18:32:44 +0000 (+0100)
Subject: Fix id/class mix-up.
X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/%7B%7Bdb.prefix%7D%7D/%7B%7Bprefix%7D%7D/ledger?a=commitdiff_plain;h=704595fc28ac2baddc35404d9f6d7e357fb88c38;p=guiltcards

Fix id/class mix-up.
---

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