moviewyrm/bookwyrm/templates/discover.html

104 lines
3.6 KiB
HTML
Raw Normal View History

2021-01-03 19:10:04 +00:00
{% extends 'layout.html' %}
{% block content %}
{% if not request.user.is_authenticated %}
2021-02-02 18:13:35 +00:00
<header class="block has-text-centered">
<h1 class="title">{{ site.name }}</h1>
<h2 class="subtitle">{{ site.instance_tagline }}</h2>
2021-01-31 14:52:18 +00:00
</header>
<section class="level is-mobile">
<div class="level-item has-text-centered">
<div>
2021-02-02 18:13:35 +00:00
<p class="title has-text-weight-normal"><span class="icon icon-graphic-paperplane"></span></p>
<p class="heading">Decentralized</p>
2021-01-31 14:52:18 +00:00
</div>
</div>
<div class="level-item has-text-centered">
<div>
2021-02-02 18:13:35 +00:00
<p class="title has-text-weight-normal"><span class="icon icon-graphic-heart"></span></p>
<p class="heading">Friendly</p>
2021-01-31 14:52:18 +00:00
</div>
</div>
<div class="level-item has-text-centered">
<div>
2021-02-02 18:13:35 +00:00
<p class="title has-text-weight-normal"><span class="icon icon-graphic-banknote"></span></p>
<p class="heading">Anti-Corporate</p>
2021-01-31 14:52:18 +00:00
</div>
</div>
</section>
2021-01-03 19:10:04 +00:00
<section class="tile is-ancestor">
<div class="tile is-7 is-parent">
<div class="tile is-child box">
2021-01-03 19:10:04 +00:00
{% include 'snippets/about.html' %}
</div>
</div>
<div class="tile is-5 is-parent">
<div class="tile is-child box has-background-primary-light content">
2021-01-03 19:10:04 +00:00
{% if site.allow_registration %}
<h2 class="title">Join {{ site.name }}</h2>
2021-01-12 16:19:08 +00:00
<form name="register" method="post" action="/register">
2021-01-03 19:10:04 +00:00
{% include 'snippets/register_form.html' %}
</form>
{% else %}
<h2 class="title">This instance is closed</h2>
<p>{{ site.registration_closed_text | safe}}</p>
2021-01-03 19:10:04 +00:00
{% endif %}
</div>
</div>
</section>
2021-01-31 14:52:18 +00:00
{% else %}
<div class="block">
<h1 class="title has-text-centered">Discover</h1>
</div>
{% endif %}
2021-01-03 19:10:04 +00:00
2021-01-03 20:53:51 +00:00
<div class="block is-hidden-tablet">
<h2 class="title has-text-centered">Recent Books</h2>
</div>
2021-01-03 19:10:04 +00:00
<section class="tile is-ancestor">
<div class="tile is-vertical">
<div class="tile is-parent">
<div class="tile is-child box has-background-white-ter">
{% include 'snippets/discover/large-book.html' with book=books.0 %}
2021-01-03 19:10:04 +00:00
</div>
</div>
<div class="tile">
<div class="tile is-parent is-6">
<div class="tile is-child box has-background-white-ter">
{% include 'snippets/discover/small-book.html' with book=books.1 %}
2021-01-03 19:10:04 +00:00
</div>
</div>
<div class="tile is-parent is-6">
<div class="tile is-child box has-background-white-ter">
{% include 'snippets/discover/small-book.html' with book=books.2 %}
2021-01-03 19:10:04 +00:00
</div>
</div>
</div>
</div>
<div class="tile is-vertical">
<div class="tile">
<div class="tile is-parent is-6">
<div class="tile is-child box has-background-white-ter">
{% include 'snippets/discover/small-book.html' with book=books.3 %}
2021-01-03 19:10:04 +00:00
</div>
</div>
<div class="tile is-parent is-6">
<div class="tile is-child box has-background-white-ter">
{% include 'snippets/discover/small-book.html' with book=books.4 %}
2021-01-03 19:10:04 +00:00
</div>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-white-ter">
{% include 'snippets/discover/large-book.html' with book=books.5 %}
2021-01-03 19:10:04 +00:00
</div>
</div>
</div>
</section>
{% endblock %}