mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
19 lines
688 B
Twig
19 lines
688 B
Twig
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html lang="{{ app['locale'] }}">
|
|
<head>
|
|
<title>{{ 'thesaurus:: export au format texte' | trans }}</title>
|
|
<link REL="stylesheet" TYPE="text/css" href="{{ path('minifier', { 'f' : 'skins/thesaurus/thesaurus.css' }) }}" />
|
|
<script type="text/javascript">
|
|
function loaded()
|
|
{
|
|
self.focus();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body id="idbody" onload="loaded();" style="background-color:#ffffff" >
|
|
<pre style='font-size: {% if smp %}9{% else %}12{% endif %}px;'>
|
|
{{ output }}
|
|
</pre>
|
|
</body>
|
|
</html>
|