18 lines
		
	
	
	
		
			564 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			564 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <html>
 | |
|     <head>
 | |
|         <title>{{ title }}</title>
 | |
|         <link rel="stylesheet" type="text/css" href="/css/ab.css" />
 | |
|     </head>
 | |
|     <body>
 | |
|         <div id="content">
 | |
|             <div id="header">{{ title }}</div>
 | |
|             {% for question in content %}
 | |
|                 <div class="ab">
 | |
|                     <div class="a">{{ question['A'] }}</div>
 | |
|                     <div class="separator">{{ separator }}</div>
 | |
|                     <div class="b">{{ question['B'] }}</div>
 | |
|                 </div>
 | |
|             {% endfor %}
 | |
|         </div>
 | |
|     </body>
 | |
| </html>
 |