| 
									
										
										
										
											2014-12-22 16:07:02 +01:00
										 |  |  | <!-- Draw glyphicon icon from bootstrap-theme --> | 
					
						
							| 
									
										
										
										
											2014-09-27 10:23:05 +02:00
										 |  |  | {% macro icon(action) -%} | 
					
						
							|  |  |  |     <span class="glyphicon glyphicon-{{ action }}"></span> | 
					
						
							|  |  |  | {%- endmacro %} | 
					
						
							| 
									
										
										
										
											2014-12-22 16:07:02 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | <!-- Draw favicon --> | 
					
						
							|  |  |  | <!-- TODO: using url_for methode --> | 
					
						
							|  |  |  | {% macro draw_favicon(favicon) -%} | 
					
						
							| 
									
										
										
										
											2015-01-09 21:25:13 +01:00
										 |  |  |     <img width="32" height="32" class="favicon" src="static/themes/oscar/img/icons/{{ favicon }}.png" alt="{{ favicon }}" /> | 
					
						
							| 
									
										
										
										
											2014-12-22 16:07:02 +01:00
										 |  |  | {%- endmacro %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <!-- Draw result header --> | 
					
						
							| 
									
										
										
										
											2015-01-09 21:25:13 +01:00
										 |  |  | {% macro result_header(result, favicons) -%}  | 
					
						
							|  |  |  |     <h4 class="result_header">{% if result.engine~".png" in favicons %}{{ draw_favicon(result.engine) }} {% endif %}<a href="{{ result.url }}">{{ result.title|safe }}</a></h4> | 
					
						
							| 
									
										
										
										
											2014-12-22 16:07:02 +01:00
										 |  |  | {%- endmacro %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <!-- Draw result sub header --> | 
					
						
							|  |  |  | {% macro result_sub_header(result) -%} | 
					
						
							|  |  |  |     {% if result.publishedDate %}<time class="text-muted" datetime="{{ result.pubdate }}" >{{ result.publishedDate }}</time>{% endif %} | 
					
						
							|  |  |  |     <small><a class="text-info" href="https://web.archive.org/web/{{ result.url }}">{{ icon('link') }} {{ _('cached') }}</a></small> | 
					
						
							|  |  |  | {%- endmacro %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <!-- Draw result footer --> | 
					
						
							|  |  |  | {% macro result_footer(result) -%} | 
					
						
							|  |  |  |     <div class="clearfix"></div> | 
					
						
							|  |  |  |     <span class="label label-default pull-right">{{ result.engine }}</span> | 
					
						
							|  |  |  |     <p class="text-muted">{{ result.pretty_url }}</p> | 
					
						
							|  |  |  | {%- endmacro %} |