vitro/webapp/web/templates/freemarker/page/partials/copyright.ftl

12 lines
354 B
Text
Raw Normal View History

<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#if copyright??>
<div class="copyright">
&copy;${copyright.year?c}
<#if copyright.url??>
<a href="${copyright.url}">${copyright.text}</a>
<#else>
${copyright.text}
</#if>
</div>
</#if>