forked from StarterSquad/startersquad.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.html
56 lines (52 loc) · 1.89 KB
/
post.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
layout: default
menu_index: 3
force_menu_link: true
---
{% include blog/headline.html %}
<div class="arkush">
<table class="layout-table">
<col width="72%">
<col width="9%">
<col width="19%">
<tr>
<td class="layout-table-cell">
<div class="article text-bound">
<div class="blog-post">
<h1 class="blog-title">{{ page.title }}</h1>
<div class="blog-meta">
<span class="blog-meta-date">{{ page.date | date: '%A, %B %d, %Y' }}</span>
<span class="blog-meta-author">by <span class="__red">{{ page.author }}</span></span>
</div>
</div>
{{ content }}
<div class="article-tags">
<b>Tags:</b>
{% for tag in page.tags %}
<a href="/blog/tags.html#{{ tag }}">{{ tag }}{% unless forloop.last %},{% endunless %}</a>
{% endfor %}
</div>
<div class="article-share">
<b>Share this post:</b>
<a href="http://twitter.com/share?url={{ site.domain }}{{ page.url }}" target="_blank">Twitter</a>,
<a href="https://plus.google.com/share?&hl=en&url={{ site.domain }}{{ page.url }}" target="_blank">Google+</a>,
<a href="http://www.linkedin.com/shareArticle?mini=true&url={{ site.domain }}{{ page.url }}" target="_blank">Linkedin</a>,
<a href="http://www.facebook.com/sharer.php?u={{ site.domain }}{{ page.url }}" target="_blank">Facebook</a>
</div>
</div>
</td>
<td class="layout-table-cell"></td>
<td class="layout-table-cell">
{% include blog/facebook.html %}
{% include blog/tags.html %}
</td>
</tr>
<tr>
<td class="layout-table-cell">
{% include disqus_comments.html %}
</td>
<td class="layout-table-cell"></td>
<td class="layout-table-cell"></td>
</tr>
</table>
</div>