No Jira issue. Microformat was causing an anchor tag to be incorrectly formatted.
This commit is contained in:
parent
d2312a8e15
commit
ffb8ed6409
1 changed files with 3 additions and 1 deletions
|
@ -31,7 +31,9 @@
|
||||||
<#if subclass?contains("Educational") >
|
<#if subclass?contains("Educational") >
|
||||||
<#assign schemaType = "http://schema.org/CollegeOrUniversity" />
|
<#assign schemaType = "http://schema.org/CollegeOrUniversity" />
|
||||||
</#if>
|
</#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>
|
<#elseif editable>
|
||||||
<#-- Show the link to the context node only if the user is editing the page. -->
|
<#-- 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>
|
<a href="${profileUrl(statement.uri("edTraining"))}" title="${i18n().missing_organization}">${i18n().missing_organization}</a>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue