-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathnews.html
35 lines (28 loc) · 1.03 KB
/
news.html
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
<!DOCTYPE html>
<html lang="en-US">
{% include head.html %}
<body>
<div class="site">
{% include header.html %}
<div class="site-content">
<section class="developer-update-detail site-section">
<div class="site-section__content">
<div class="dark-panel">
<div class="dark-panel__header">
<a class="developer-update-detail__view-all" href="{{ '/news/' | relative_url }}">
<svg class="icon">
<use xlink:href="{{ '/images/icons/icons.svg#icon-chevron-left' | relative_url }}"></use>
</svg>
View All Updates
</a>
</div>
{% include developer-update.html title=page.title author=page.author created_at=page.created_at body=content disqus_id=page.disqus_id disqus_link=page.permalink %}
</div>
</div>
</section>
</div>
{% include footer.html %}
</div>
{% include foot.html %}
</body>
</html>