home · contact · privacy
Initial commit.
[guiltcards] / views / card.tpl
1 <!DOCTYPE HTML>
2 <html>
3 <style>
4   #card {
5       box-sizing: border-box;
6       border: 30px solid #aaaaaa;
7       width: 200px;
8       height: 400px; }
9 </style>
10 <body>
11   <div id="card">
12     <h1 id="title">{{ title }}</h1>
13     <p id="prompt">{{ prompt }}</p>
14     <ul id="answers">
15     % for answer in answers:
16       <li>{{ answer }}</li>
17     % end
18     <ul/>
19   </div>
20 <a href="{{ web_path }}/cards">back to overview</a>
21 </body>
22 </html>