Related to MKWS-163.
authorMike Taylor <mike@indexdata.com>
Fri, 23 Jan 2015 09:30:19 +0000 (09:30 +0000)
committerMike Taylor <mike@indexdata.com>
Fri, 23 Jan 2015 09:30:19 +0000 (09:30 +0000)
The wikipedia widget now includes "Or did you mean a different XXX?"
links to disambiguation pages, when a disambiguationurl field is
present. These pages open in a new tab.

The main Wikipedia links now also open in a new tab.

src/templates/wikipedia.handlebars

index b2a92cb..8967945 100644 (file)
@@ -19,7 +19,7 @@ display only the first image
   <img src="{{this}}" alt="{{md-title}}">
 {{/each}}
 
-<h1><a href="{{md-electronic-url}}">{{md-title}}</a></h1>
+<h1><a href="{{md-electronic-url}}" target="_blank">{{md-title}}</a></h1>
 {{#if md-title-remainder}}
 <b>{{md-title-remainder}}</b>
 {{/if}}
@@ -27,4 +27,8 @@ display only the first image
 <i>{{md-title-responsibility}}</i>
 {{/if}}
 {{{mkws-paragraphs md-description paragraphs sentences}}}
+{{#if md-disambiguationurl}}
+<p>Or did you mean <a href="{{md-disambiguationurl}}" target="_blank"
+       >a different {{md-title}}</a>?</p>
+{{/if}}
 <p class="mkws-credit mkwsCredit">{{credit}}</p>