-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharticle.html
More file actions
62 lines (62 loc) · 2.03 KB
/
article.html
File metadata and controls
62 lines (62 loc) · 2.03 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
55
56
57
58
59
60
61
62
<template id="article-template">
<nav itemprop="breadcrumb" itemtype="http://schema.org/BreadcrumbList" itemscope>
<span itemprop="itemListElement" itemtype="http://schema.org/ListItem" itemscope>
<span itemprop="item">
<a href="/" itemprop="url">
<span itemprop="name">Home</span>
</a>
<meta itemprop="position" content="1" />
</span>
</span>
<span itemprop="itemListElement" itemtype="http://schema.org/ListItem" itemscope>
<span itemprop="item">
<a href="" itemprop="url">
<span itemprop="name"></span>
</a>
<meta itemprop="position" content="2" />
</span>
</span>
<span itemprop="itemListElement" itemtype="http://schema.org/ListItem" itemscope>
<span itemprop="item">
<a href="" itemprop="url">
<span itemprop="name"></span>
</a>
<meta itemprop="position" content="3" />
</span>
</span>
</nav>
<article itemscope="" itemtype="https://schema.org/Article" itemprop="mainEntityOfPage">
<header>
<meta itemprop="dateModified" content="">
<h2>
<span itemprop="articleSection"></span>
<span>»</span>
<span itemprop="headline"></span>
</h2>
<div itemprop="keywords"></div>
<b>By <span itemprop="author"></span></b>
<br>
<i>on <time itemprop="datePublished"></time></i>
<br>
<h4>Published by <span itemscope="" itemprop="publisher" itemtype="https://schema.org/Organization">
<a itemprop="url"><span itemprop="name"></span></a>
<meta itemprop="logo"></span>
</h4>
<hr>
</header>
<div itemprop="articleBody"></div>
<footer>
<button type="button" data-share="facebook">Share on Facebook</button>
<button type="button" data-share="twitter">Share on Twitter</button>
<button type="button" data-share="g+">Share on Google+</button>
<form name="comments" action="/api.php" method="POST">
<fieldset>
<legend>Comment</legend>
<textarea name="comments[text]" required></textarea>
</fieldset>
<button type="submit">Post comment</buton>
</form>
<hr/>
</footer>
</article>
</template>