forked from mirrors/bookwyrm
Convert h2s to h1s where obvious
This commit is contained in:
parent
79f7c55a04
commit
7042e59402
14 changed files with 16 additions and 16 deletions
|
@ -2,7 +2,7 @@
|
|||
{% load fr_display %}
|
||||
{% block content %}
|
||||
<div class="block">
|
||||
<h2 class="title">{{ author.display_name }}</h2>
|
||||
<h1 class="title">{{ author.display_name }}</h1>
|
||||
|
||||
{% if author.bio %}
|
||||
<p>
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
|
||||
<div class="block">
|
||||
<div class="level">
|
||||
<h2 class="title level-left">
|
||||
<h1 class="title level-left">
|
||||
<span>{% include 'snippets/book_titleby.html' with book=book %}</span>
|
||||
</h2>
|
||||
</h1>
|
||||
|
||||
{% if request.user.is_authenticated and perms.bookwyrm.edit_book %}
|
||||
<div class="level-right">
|
||||
|
|
|
@ -3,9 +3,9 @@
|
|||
{% block content %}
|
||||
<div class="block">
|
||||
<div class="level">
|
||||
<h2 class="title level-left">
|
||||
<h1 class="title level-left">
|
||||
Edit "{{ book.title }}"
|
||||
</h2>
|
||||
</h1>
|
||||
<div class="level-right">
|
||||
<a href="/book/{{ book.id }}">
|
||||
<span class="edit-link icon icon-close">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{% block content %}
|
||||
<div class="block columns">
|
||||
<div class="column is-half">
|
||||
<h2 class="title">Profile</h2>
|
||||
<h1 class="title">Profile</h1>
|
||||
{% if form.non_field_errors %}
|
||||
<p class="notification is-danger">{{ form.non_field_errors }}</p>
|
||||
{% endif %}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{% load fr_display %}
|
||||
{% block content %}
|
||||
<div class="block">
|
||||
<h2 class="title">Editions of <a href="/book/{{ work.id }}">"{{ work.title }}"</a></h2>
|
||||
<h1 class="title">Editions of <a href="/book/{{ work.id }}">"{{ work.title }}"</a></h1>
|
||||
|
||||
{% include 'snippets/book_tiles.html' with books=editions %}
|
||||
</div>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{% block content %}
|
||||
|
||||
<div class="block">
|
||||
<h2 class="title">Server Error</h2>
|
||||
<h1 class="title">Server Error</h1>
|
||||
<p>Something went wrong! Sorry about that.</p>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{% load humanize %}
|
||||
{% block content %}
|
||||
<div class="block">
|
||||
<h2 class="title">Import Books from GoodReads</h2>
|
||||
<h1 class="title">Import Books from GoodReads</h1>
|
||||
<form name="import" action="/import_data/" method="post" enctype="multipart/form-data">
|
||||
{% csrf_token %}
|
||||
<div class="field">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<div class="columns">
|
||||
<div class="column">
|
||||
<div class="block login">
|
||||
<h2 class="title">Create an Account</h2>
|
||||
<h1 class="title">Create an Account</h1>
|
||||
<div>
|
||||
<form name="register" method="post" action="/user-register">
|
||||
<input type=hidden name="invite_code" value="{{ invite.code }}">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{% load humanize %}
|
||||
{% block content %}
|
||||
<div class="block">
|
||||
<h2 class="title">Invites</h2>
|
||||
<h1 class="title">Invites</h1>
|
||||
<table class="table is-striped">
|
||||
<tr>
|
||||
<th>Link</th>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{% block content %}
|
||||
|
||||
<div class="block">
|
||||
<h2 class="title">Not Found</h2>
|
||||
<h1 class="title">Not Found</h1>
|
||||
<p>The page your requested doesn't seem to exist!</p>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{% load humanize %}l
|
||||
{% block content %}
|
||||
<div class="block">
|
||||
<h2 class="title">Notifications</h2>
|
||||
<h1 class="title">Notifications</h1>
|
||||
|
||||
<form name="clear" action="/clear-notifications" method="POST">
|
||||
{% csrf_token %}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<div class="columns">
|
||||
<div class="column">
|
||||
<div class="block">
|
||||
<h2 class="title">Reset Password</h2>
|
||||
<h1 class="title">Reset Password</h1>
|
||||
{% for error in errors %}
|
||||
<p class="is-danger">{{ error }}</p>
|
||||
{% endfor %}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<div class="columns is-centered">
|
||||
<div class="column is-half">
|
||||
<div class="block">
|
||||
<h2 class="title">Reset Password</h2>
|
||||
<h1 class="title">Reset Password</h1>
|
||||
{% if message %}<p>{{ message }}</p>{% endif %}
|
||||
<p>A link to reset your password will be sent to your email address</p>
|
||||
<form name="reset-password" method="post" action="/reset-password-request">
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{% block content %}
|
||||
|
||||
<div class="block">
|
||||
<h2 class="title">Books tagged "{{ tag.name }}"</h2>
|
||||
<h1 class="title">Books tagged "{{ tag.name }}"</h1>
|
||||
{% include 'snippets/book_tiles.html' with books=books.all %}
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue