forked from zaclys/searxng
		
	[simple theme] add products.html template
This commit is contained in:
		
							parent
							
								
									035a4eaa09
								
							
						
					
					
						commit
						392c9c4243
					
				
					 2 changed files with 22 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -262,11 +262,18 @@ article[data-vim-selected].category-social {
 | 
			
		|||
 | 
			
		||||
  .published_date,
 | 
			
		||||
  .result_length,
 | 
			
		||||
  .result_author {
 | 
			
		||||
  .result_author,
 | 
			
		||||
  .result_shipping,
 | 
			
		||||
  .result_source_country {
 | 
			
		||||
    font-size: 0.8em;
 | 
			
		||||
    color: var(--color-result-publishdate-font);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .result_price {
 | 
			
		||||
    font-size: 1.2em;
 | 
			
		||||
    color: var(--color-result-description-highlight-font);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  img {
 | 
			
		||||
    &.thumbnail {
 | 
			
		||||
      .ltr-float-left();
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										14
									
								
								searx/templates/simple/result_templates/products.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								searx/templates/simple/result_templates/products.html
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,14 @@
 | 
			
		|||
{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer, result_footer_rtl with context %}
 | 
			
		||||
 | 
			
		||||
{{ result_header(result, favicons, image_proxify) -}}
 | 
			
		||||
{{- result_sub_header(result) -}}
 | 
			
		||||
{% if result.price %}<div class="result_price">{{ result.price }}</div></br>{% endif %}
 | 
			
		||||
{% if result.shipping %}<div class="result_shipping">{{ result.shipping }}</div></br>{% endif %}
 | 
			
		||||
{% if result.source_country %}<div class="result_source_country">{{ result.source_country }}</div></br>{% endif %}
 | 
			
		||||
{%- if result.content %}
 | 
			
		||||
  <p class="content">
 | 
			
		||||
    {{ result.content }}
 | 
			
		||||
  </p>
 | 
			
		||||
{% endif -%}
 | 
			
		||||
{{- result_sub_footer(result, proxify) -}}
 | 
			
		||||
{{- result_footer(result) }}
 | 
			
		||||
		Loading…
	
	Add table
		
		Reference in a new issue