mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 23:13:15 +00:00
35 lines
991 B
Twig
35 lines
991 B
Twig
{% extends "common/indexfloat.html.twig" %}
|
|
|
|
{% set local_title = record.get_title() %}
|
|
|
|
{% block icon %}
|
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
|
|
{% endblock %}
|
|
|
|
{% block stylesheet %}
|
|
<link type="text/css" rel="stylesheet" href="/assets/permaview/css/permaview{% if not app.debug %}.min{% endif %}.css">
|
|
<style type="text/css"></style>
|
|
{% endblock %}
|
|
|
|
{% block rss %}
|
|
{% for metaKey, metaValue in ogMetaData %}
|
|
<meta property="{{ metaKey }}" content="{{ metaValue }}" />
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="content-container" >
|
|
<h1>{{ local_title }}</h1>
|
|
|
|
<div class="preview">
|
|
<iframe width="100%" height="{{ subdef.get_height() }}"
|
|
src="{{ recordUrl }}"
|
|
frameborder="0" allowfullscreen></iframe>
|
|
</div>
|
|
|
|
<div class="caption">
|
|
{% include 'common/caption.html.twig' %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|