15 lines
		
	
	
		
			339 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			339 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'layout.html' %}
 | 
						|
{% load i18n %}
 | 
						|
{% load bookwyrm_tags %}
 | 
						|
 | 
						|
{% block title %}{{ tag.name }}{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<div class="block">
 | 
						|
    <h1 class="title">{% blocktrans %}Books tagged "{{ tag.name }}"{% endblocktrans %}</h1>
 | 
						|
    {% include 'snippets/book_tiles.html' with books=books.all %}
 | 
						|
</div>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
 |