This repository was archived by the owner on Sep 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy patharticle.html
More file actions
54 lines (44 loc) · 1.37 KB
/
article.html
File metadata and controls
54 lines (44 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<article class="article">
<header class="article-header">
{{#if displayConcept}}
<h2 class="primary-theme">
{{> link href=displayConcept.url class='primary-theme__link' text=displayConcept.prefLabel type='primary-theme'}}
</h2>
{{/if}}
<h1 class="headline" itemprop="headline">
{{title}}
</h1>
{{#if standfirst}}
<h2 class="article-standfirst">{{standfirst}}</h2>
{{/if}}
{{{mainImageHtml}}}
{{#if enableSocialShare}}
{{>social}}
{{/if}}
<div class="article-dateline">
{{{displayDate}}}
{{#if byline}}
<span class="article-author">
<span class="article-author-byline">
by
<span itemscope itemtype="http://schema.org/Person" itemprop="author">
{{{byline}}}
</span>
</span>
</span>
{{/if}}
</div>
</header>
<div class="article-body" itemprop="articleBody">
{{{htmlBody}}}
<p class="article__copyright-notice">
{{> link href='https://www.ft.com/servicestools/help/copyright' type='footer-copyright' text='Copyright'}}
The Financial Times Limited {{thisYear}}. All rights reserved. Please don't copy articles from FT.com and redistribute by email or post to the web.
</p>
</div>
</article>
<div class="comments">
{{> link class='comments-button' href=(concat canonicalURL '#comments-anchor') type='view-comments' text='View comments'}}
</div>
{{> related/story-package}}
{{> related/more-ons}}