git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3460 f459cee4-fb09-11de-96c3-f9c5f16c3c76
18 lines
No EOL
780 B
Twig
18 lines
No EOL
780 B
Twig
{% extends get_base_template() %}
|
|
|
|
{% block meta_robots %}
|
|
<meta name="robots" content="noindex,nofollow" />
|
|
{% if app.debug %}<!-- meta-robots wurde durch das Twig-Seitentemplate festgelegt -->{% endif %}
|
|
{% endblock %}
|
|
{% block canonical_tag %}{% if app.debug %}<!-- Die canonical URL wird für diese Seite bewusst nicht definiert, da sie vom Suchindex ausgeschlossen wurde (Siehe meta robots) -->{% endif %}{% endblock %}
|
|
|
|
|
|
{% block body %}
|
|
{% if tt_url is defined %}
|
|
<iframe src="{{ tt_url|raw }}" scrolling="auto" width="100%" height="5500"
|
|
onload="window.parent.parent.scrollTo(0,0);"
|
|
></iframe>
|
|
{% else %}
|
|
<p>Es konnten leider keine Ergebnisse gefunden werden.</p>
|
|
{% endif %}
|
|
{% endblock body %} |