| 
									
										
										
										
											2022-01-26 21:10:09 +08:00
										 |  |  | <!DOCTYPE html> | 
					
						
							|  |  |  | <html lang="en"> | 
					
						
							|  |  |  | <head> | 
					
						
							|  |  |  |     <meta charset="UTF-8"> | 
					
						
							| 
									
										
										
										
											2024-03-18 13:21:46 +08:00
										 |  |  |     <title>单词词频</title> | 
					
						
							| 
									
										
										
										
											2022-01-26 21:10:09 +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 %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </head> | 
					
						
							|  |  |  | <body> | 
					
						
							|  |  |  |     <form method="post" action="/mark"> | 
					
						
							|  |  |  |     {% for x in lst %} | 
					
						
							|  |  |  |         <p> | 
					
						
							|  |  |  |             <font color="grey">{{loop.index}}</font> | 
					
						
							|  |  |  |             : | 
					
						
							|  |  |  |             <a href="http://youdao.com/w/eng/{{x[0]}}/#keyfrom=dict2.index">{{x[0]}}</a> | 
					
						
							|  |  |  |             ({{x[1]}}) | 
					
						
							|  |  |  |             <input type="checkbox" name="marked" value="{{x[0]}}"> | 
					
						
							|  |  |  |         </p> | 
					
						
							|  |  |  |     {% endfor %} | 
					
						
							|  |  |  |     <input type="submit" value="确定并返回"/> | 
					
						
							|  |  |  |     </form> | 
					
						
							|  |  |  |     {{ yml['footer'] | safe }} | 
					
						
							|  |  |  | {% if yml['js']['bottom'] %} | 
					
						
							|  |  |  |         {% for js in yml['js']['bottom'] %} | 
					
						
							|  |  |  |             <script src="{{ js }}" ></script> | 
					
						
							|  |  |  |         {% endfor %} | 
					
						
							|  |  |  |     {% endif %} | 
					
						
							|  |  |  | </body> | 
					
						
							|  |  |  | </html> |