|  | @@ -4,9 +4,11 @@
 | 
	
		
			
			| 4 | 4 |  
 | 
	
		
			
			| 5 | 5 |  {% if result.publishedDate %}<time class="text-muted" datetime="{{ result.pubdate }}" >{{ result.publishedDate }}</time>{% endif %}
 | 
	
		
			
			| 6 | 6 |  <small><a class="text-info" href="https://web.archive.org/web/{{ result.url }}">{{ icon('link') }} {{ _('cached') }}</a></small>
 | 
	
		
			
			|  | 7 | +{% if result.magnetlink %}<small> • <a href="{{ result.magnetlink }}" class="magnetlink">{{ icon('magnet') }} {{ _('magnet link') }}</a></small>{% endif %}
 | 
	
		
			
			|  | 8 | +{% if result.torrentfile %}<small> • <a href="{{ result.torrentfile }}" class="torrentfile">{{ icon('download-alt') }} {{ _('torrent file') }}</a></small>{% endif %}
 | 
	
		
			
			| 7 | 9 |  
 | 
	
		
			
			| 8 | 10 |  <p class="result-content">{{ icon('transfer') }} {{ _('Seeder') }} <span class="badge">{{ result.seed }}</span> • {{ _('Leecher') }} <span class="badge">{{ result.leech }}</span>
 | 
	
		
			
			| 9 |  | -{% if result.filesize %}</br>{{ icon('floppy-disk') }} {{ _('Filesize') }} 
 | 
	
		
			
			|  | 11 | +{% if result.filesize %}<br />{{ icon('floppy-disk') }} {{ _('Filesize') }} 
 | 
	
		
			
			| 10 | 12 |      <span class="badge">
 | 
	
		
			
			| 11 | 13 |          {% if result.filesize < 1024 %}{{ result.filesize }} Byte
 | 
	
		
			
			| 12 | 14 |          {% elif result.filesize < 1024*1024 %}{{ '{0:0.2f}'.format(result.filesize/1024) }} kb
 | 
	
	
		
			
			|  | @@ -14,13 +16,11 @@
 | 
	
		
			
			| 14 | 16 |          {% elif result.filesize < 1024*1024*1024*1024 %}{{ '{0:0.2f}'.format(result.filesize/1024/1024/1024) }} GB
 | 
	
		
			
			| 15 | 17 |          {% else %}{{ '{0:0.2f}'.format(result.filesize/1024/1024/1024/1024) }} TB{% endif %}
 | 
	
		
			
			| 16 | 18 |      </span>{% endif %}
 | 
	
		
			
			| 17 |  | -{% if result.files %}</br>{{ icon('file') }} {{ _('Number of Files') }} <span class="badge">{{ result.files }}</span>{% endif %}</p>
 | 
	
		
			
			| 18 |  | -<p class="result-content">
 | 
	
		
			
			| 19 |  | -    <a href="{{ result.magnetlink }}" class="magnetlink">{{ icon('magnet') }} {{ _('magnet link') }}</a>
 | 
	
		
			
			| 20 |  | -    {% if result.torrentfile %}</br><a href="{{ result.torrentfile }}" class="torrentfile">{{ icon('download-alt') }} {{ _('torrent file') }}</a>{% endif %}
 | 
	
		
			
			| 21 |  | -</p>
 | 
	
		
			
			|  | 19 | +{% if result.files %}<br />{{ icon('file') }} {{ _('Number of Files') }} <span class="badge">{{ result.files }}</span>{% endif %}
 | 
	
		
			
			|  | 20 | +
 | 
	
		
			
			|  | 21 | +{% if result.content %}<br />{{ result.content|safe }}{% endif %}
 | 
	
		
			
			| 22 | 22 |  
 | 
	
		
			
			| 23 |  | -{% if result.content %}<p class="result-content">{{ result.content|safe }}</p>{% endif %}
 | 
	
		
			
			|  | 23 | +</p>
 | 
	
		
			
			| 24 | 24 |  
 | 
	
		
			
			| 25 | 25 |  <div class="clearfix"></div>
 | 
	
		
			
			| 26 | 26 |  
 |