| 
									
										
										
										
											2022-01-26 21:10:09 +08:00
										 |  |  | <!DOCTYPE html> | 
					
						
							|  |  |  | <html lang="en"> | 
					
						
							| 
									
										
										
										
											2023-08-11 18:39:36 +08:00
										 |  |  |     <head> | 
					
						
							| 
									
										
										
										
											2024-03-27 12:39:42 +08:00
										 |  |  |        <meta charset="UTF-8"> | 
					
						
							|  |  |  |        <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=3.0, user-scalable=yes" /> | 
					
						
							|  |  |  |        <meta name="format-detection" content="telephone=no" /> | 
					
						
							| 
									
										
										
										
											2022-01-26 21:10:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-27 12:39:42 +08:00
										 |  |  |        {{ yml['header'] | safe }} | 
					
						
							|  |  |  |        {% if yml['css']['item'] %} | 
					
						
							|  |  |  |          {% for css in yml['css']['item'] %} | 
					
						
							|  |  |  |          <link href="{{ css }}" rel="stylesheet"> | 
					
						
							|  |  |  |          {% endfor %} | 
					
						
							|  |  |  |         {% endif %} | 
					
						
							|  |  |  |         {% if yml['js']['head'] %} | 
					
						
							|  |  |  |          {% for js in yml['js']['head'] %} | 
					
						
							|  |  |  |          <script src="{{ js }}" ></script> | 
					
						
							|  |  |  |          {% endfor %} | 
					
						
							|  |  |  |         {% endif %} | 
					
						
							| 
									
										
										
										
											2022-01-26 21:10:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-27 12:39:42 +08:00
										 |  |  |        <title>EnglishPal Study Room for {{username}}</title> | 
					
						
							| 
									
										
										
										
											2023-08-11 18:39:36 +08:00
										 |  |  |     </head> | 
					
						
							|  |  |  |     <body> | 
					
						
							| 
									
										
										
										
											2024-03-27 12:39:42 +08:00
										 |  |  |       <div class="container-fluid"> | 
					
						
							|  |  |  |           <p class="mt-md-3"> | 
					
						
							|  |  |  |                <input type="button" id="btn-cancel-selection" value="取消勾选" onclick="toggleCheckboxSelection(false)" /> | 
					
						
							|  |  |  |                <input type="button" id="btn-selection" value="全部勾选" onclick="toggleCheckboxSelection(true)" /> | 
					
						
							|  |  |  |           </p> | 
					
						
							|  |  |  |           <form method="post" action="/{{username}}/mark"> | 
					
						
							|  |  |  |               <button type="submit" name="add-btn" class="btn btn-outline-primary btn-lg" onclick="clearSelectedWords()">加入我的生词簿</button> | 
					
						
							|  |  |  |               {% for x in lst %} | 
					
						
							|  |  |  |               {% set word = x[0]%} | 
					
						
							|  |  |  |               <p> | 
					
						
							|  |  |  |                     <font color="grey">{{loop.index}}</font> | 
					
						
							|  |  |  |                     : | 
					
						
							|  |  |  |                     <a href='http://youdao.com/w/eng/{{word}}/#keyfrom=dict2.index' title={{word}}>{{word}}</a> | 
					
						
							|  |  |  |                     ({{x[1]}}) | 
					
						
							|  |  |  |                     <input type="checkbox" name="marked" value="{{word}}" checked> | 
					
						
							|  |  |  |               </p> | 
					
						
							| 
									
										
										
										
											2022-01-26 21:10:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-27 12:39:42 +08:00
										 |  |  |                {% endfor %} | 
					
						
							|  |  |  |            </form> | 
					
						
							|  |  |  |            {{ yml['footer'] | safe }} | 
					
						
							|  |  |  |            {% if yml['js']['bottom'] %} | 
					
						
							| 
									
										
										
										
											2023-08-11 18:39:36 +08:00
										 |  |  |             {% for js in yml['js']['bottom'] %} | 
					
						
							| 
									
										
										
										
											2024-03-27 12:39:42 +08:00
										 |  |  |              <script src="{{ js }}" ></script> | 
					
						
							| 
									
										
										
										
											2023-08-11 18:39:36 +08:00
										 |  |  |             {% endfor %} | 
					
						
							| 
									
										
										
										
											2024-03-27 12:39:42 +08:00
										 |  |  |         {% endif %} | 
					
						
							|  |  |  |       </div> | 
					
						
							| 
									
										
										
										
											2023-08-11 18:39:36 +08:00
										 |  |  |     </body> | 
					
						
							| 
									
										
										
										
											2022-07-29 15:26:19 +08:00
										 |  |  | </html> |