1
0
Fork 0
bookwyrm/bookwyrm/templates/landing/landing.html

57 lines
1.9 KiB
HTML
Raw Normal View History

2021-09-18 15:56:29 -07:00
{% extends 'landing/layout.html' %}
2021-02-27 18:48:10 -08:00
{% load i18n %}
{% load cache %}
2022-01-18 12:28:59 -08:00
{% load landing_page_tags %}
2022-01-09 13:04:41 -08:00
2021-02-27 11:53:36 -08:00
{% block panel %}
2021-01-03 11:10:04 -08:00
2021-01-03 12:53:51 -08:00
<div class="block is-hidden-tablet">
2021-02-27 18:48:10 -08:00
<h2 class="title has-text-centered">{% trans "Recent Books" %}</h2>
2021-01-03 12:53:51 -08:00
</div>
2022-01-09 13:00:02 -08:00
{% get_current_language as LANGUAGE_CODE %}
{% cache 60 * 60 LANGUAGE_CODE %}
2022-01-09 13:04:41 -08:00
{% get_landing_books as books %}
2021-01-03 11:10:04 -08:00
<section class="tile is-ancestor">
<div class="tile is-vertical is-6">
2021-01-03 11:10:04 -08:00
<div class="tile is-parent">
<div class="tile is-child box has-background-secondary">
{% include 'landing/large-book.html' with book=books.0 %}
2021-01-03 11:10:04 -08:00
</div>
</div>
<div class="tile">
<div class="tile is-parent is-6">
<div class="tile is-child box has-background-secondary">
{% include 'landing/small-book.html' with book=books.1 %}
2021-01-03 11:10:04 -08:00
</div>
</div>
<div class="tile is-parent is-6">
<div class="tile is-child box has-background-secondary">
{% include 'landing/small-book.html' with book=books.2 %}
2021-01-03 11:10:04 -08:00
</div>
</div>
</div>
</div>
<div class="tile is-vertical is-6">
2021-01-03 11:10:04 -08:00
<div class="tile">
<div class="tile is-parent is-6">
<div class="tile is-child box has-background-secondary">
{% include 'landing/small-book.html' with book=books.3 %}
2021-01-03 11:10:04 -08:00
</div>
</div>
<div class="tile is-parent is-6">
<div class="tile is-child box has-background-secondary">
{% include 'landing/small-book.html' with book=books.4 %}
2021-01-03 11:10:04 -08:00
</div>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-secondary">
{% include 'landing/large-book.html' with book=books.5 %}
2021-01-03 11:10:04 -08:00
</div>
</div>
</div>
</section>
{% endcache %}
2021-01-03 11:10:04 -08:00
{% endblock %}