blob: 9f9b6b7a009625aba362814b757b7b3526b627be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends "base.html" %}
{% block head_extra %}
{% if page.path == "/guestbook/" or page.path == "/guestbook/success/" or page.path == "/guestbook/nonsuccess/" %}
<meta name="robots" content="noindex">
{% endif %}
{% if page.path == "/guestbook/" %}
<link rel="stylesheet" type="text/css" href="/css/guestbook.css">
{% endif %}
{% endblock head_extra %}
{% block title %}{{ page.title }} - {{ config.title }}{% endblock title %}
{% block description %}{{ page.description }}{% endblock description %}
{% block og_title %}{{ page.title }} - {{ config.title }}{% endblock og_title %}
{% block og_description %}{{ page.description }}{% endblock og_description %}
{% block og_type %}website{% endblock og_type %}
|