Add meta tags
This commit is contained in:
parent
38b6016e0d
commit
46b5d4c107
6 changed files with 27 additions and 0 deletions
|
@ -2,6 +2,11 @@
|
|||
|
||||
{% block title %}Home{% endblock %}
|
||||
|
||||
{% block meta %}
|
||||
<meta name="description" content="A platform to trade plants." >
|
||||
{% endblock %}
|
||||
|
||||
|
||||
{% block body %}
|
||||
<div class="jumbotron">
|
||||
<h1 class="display-4">Welcome to Pflänz.li</h1>
|
||||
|
|
|
@ -2,6 +2,11 @@
|
|||
|
||||
{% block title %}Offer: {{ offer.title }}{% endblock %}
|
||||
|
||||
{% block meta %}
|
||||
<meta name="description" content="{{offer.byuser }} offers {{ offer.title}}!" >
|
||||
<meta name="author" content="{{ offer.byUser }}">
|
||||
{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{% for message in app.flashes('error') %}
|
||||
<div class="alert alert-danger" role="alert">
|
||||
|
|
Reference in a new issue