No Jira issue. Microformat was causing an anchor tag to be incorrectly formatted.

This commit is contained in:
Tim Worrall 2015-04-07 15:36:47 -04:00
parent d2312a8e15
commit ffb8ed6409

View file

@ -31,7 +31,9 @@
<#if subclass?contains("Educational") >
<#assign schemaType = "http://schema.org/CollegeOrUniversity" />
</#if>
<a itemscope itemtype="${schemaType}" href="${profileUrl(statement.uri("org"))}" title="${i18n().organization_name}"><span itemprop="name">${statement.orgName}</span></a>
<span itemscope itemtype="${schemaType}" >
<a itemprop="name" href="${profileUrl(statement.uri("org"))}" title="${i18n().organization_name}">${statement.orgName}</a>
</span>
<#elseif editable>
<#-- Show the link to the context node only if the user is editing the page. -->
<a href="${profileUrl(statement.uri("edTraining"))}" title="${i18n().missing_organization}">${i18n().missing_organization}</a>