Add favicon and title
This commit is contained in:
parent
fc82ffc481
commit
09429080b1
13 changed files with 62 additions and 12 deletions
|
|
@ -1,4 +1,9 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}
|
||||
{{ t!("error.error_404.title_tag") }}
|
||||
{% endblock %}
|
||||
|
||||
{% block main %}
|
||||
<div class="mt-4 text-center">
|
||||
<h1>{{ t!("error.error_404.title") }}</h1>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="/assets/css/bootstrap.css">
|
||||
<link rel="stylesheet" href="/assets/css/main.css">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon.png">
|
||||
|
||||
<link rel="stylesheet" href="/assets/css/fork-awesome.min.css">
|
||||
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.ico">
|
||||
|
|
|
|||
|
|
@ -2,6 +2,10 @@
|
|||
{% import "components/typography.html" as typography %}
|
||||
{% import "components/cards.html" as cards %}
|
||||
|
||||
{% block title %}
|
||||
{{ t!("book.edit.title_tag") }}
|
||||
{% endblock %}
|
||||
|
||||
{% block main %}
|
||||
{{ typography::heading(t!("book.edit.title")) }}
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,10 @@
|
|||
{% import "components/cards.html" as cards %}
|
||||
{% import "components/inputs.html" as form_helpers %}
|
||||
|
||||
{% block title %}
|
||||
{{ t!("book.new.title_tag") }}
|
||||
{% endblock %}
|
||||
|
||||
{% block main %}
|
||||
{{ typography::heading(t!("book.new.title")) }}
|
||||
|
||||
|
|
|
|||
|
|
@ -4,12 +4,16 @@
|
|||
{% import "components/fields.html" as fields %}
|
||||
{% import "components/cards.html" as cards %}
|
||||
|
||||
{% block title %}
|
||||
{{ t!("book.show.title_tag") }}
|
||||
{% endblock %}
|
||||
|
||||
{% block main %}
|
||||
{{ typography::book_heading(book.title, book, show = false) }}
|
||||
|
||||
{% call cards::card() %}
|
||||
<div class="mt-4">
|
||||
<h5 class="mt-4 fw-bold">{{ t!("book.show.book_details") }}</h5>
|
||||
<div class="">
|
||||
<h5 class="fw-bold text-decoration-underline">{{ t!("book.show.book_details") }}</h5>
|
||||
{{ fields::field(t!("book.attributes.title"), book.title) }}
|
||||
{{ fields::field(t!("book.attributes.authors"), book.authors) }}
|
||||
|
||||
|
|
@ -20,7 +24,7 @@
|
|||
{{ fields::field(t!("book.attributes.description"), "-") }}
|
||||
{% endmatch %}
|
||||
|
||||
<h5 class="mt-50px fw-bold">{{ t!("book.show.user_details") }}</h5>
|
||||
<h5 class="mt-50px fw-bold text-decoration-underline">{{ t!("book.show.user_details") }}</h5>
|
||||
{{ fields::field(t!("book.attributes.owner"), owner.name) }}
|
||||
|
||||
{% match current_holder %}
|
||||
|
|
@ -31,7 +35,7 @@
|
|||
{% endmatch %}
|
||||
|
||||
|
||||
<h5 class="mt-50px fw-bold">{{ t!("book.show.more_informations") }}</h5>
|
||||
<h5 class="mt-50px fw-bold text-decoration-underline">{{ t!("book.show.more_informations") }}</h5>
|
||||
{% match book.comment %}
|
||||
{% when Some with (comment) %}
|
||||
{{ fields::field(t!("book.attributes.comment"), comment) }}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,9 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}
|
||||
{{ t!("error.generic.title_tag") }}
|
||||
{% endblock %}
|
||||
|
||||
{% block main %}
|
||||
<div class="mt-4 text-center">
|
||||
<h1>{{ t!("error.generic.title") }}</h1>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,10 @@
|
|||
{% import "components/dropdown.html" as dropdown %}
|
||||
{% import "components/cards.html" as cards %}
|
||||
|
||||
{% block title %}
|
||||
{{ t!("book.index.title_tag") }}
|
||||
{% endblock %}
|
||||
|
||||
{% block main %}
|
||||
{% call typography::heading(t!("book.index.title")) %}
|
||||
<a href="/books/download_csv?{{ base_query }}" class="btn btn-info">
|
||||
|
|
|
|||
|
|
@ -1,7 +1,11 @@
|
|||
{% extends "base.html" %}
|
||||
{% import "components/typography.html" as typography %}
|
||||
{% import "components/cards.html" as cards %}
|
||||
o{% import "components/inputs.html" as form_helpers %}
|
||||
{% import "components/inputs.html" as form_helpers %}
|
||||
|
||||
{% block title %}
|
||||
{{ t!("book.edit.title_tag") }}
|
||||
{% endblock %}
|
||||
|
||||
{% block main %}
|
||||
{{ typography::heading(t!("user.edit.title")) }}
|
||||
|
|
|
|||
|
|
@ -4,6 +4,10 @@
|
|||
{% import "components/cards.html" as cards %}
|
||||
{% import "components/inputs.html" as form_helpers %}
|
||||
|
||||
{% block title %}
|
||||
{{ t!("user.index.title_tag") }}
|
||||
{% endblock %}
|
||||
|
||||
{% block main %}
|
||||
{% call typography::heading(t!("user.index.title")) %}
|
||||
<a class="btn-success btn" href="/users/new">{{ t!("user.index.button") }}</a>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,11 @@
|
|||
{% extends "base.html" %}
|
||||
{% import "components/typography.html" as typography %}
|
||||
{% import "components/cards.html" as cards %}
|
||||
o{% import "components/inputs.html" as form_helpers %}
|
||||
{% import "components/inputs.html" as form_helpers %}
|
||||
|
||||
{% block title %}
|
||||
{{ t!("user.new.title_tag") }}
|
||||
{% endblock %}
|
||||
|
||||
{% block main %}
|
||||
{{ typography::heading(t!("user.new.title")) }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue