-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpost.html
34 lines (32 loc) · 1.2 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
<div class="page-content cuckoo">
<div class="wrapper">
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">{{ post.title }}</h1>
<div class="post-description">
{% if post.ext_excerpt.length %}
{{ post.ext_excerpt }}
{% /if %}
</div>
</header>
<div class="post-content" itemprop="articleBody">
{{ post.content }}
</div>
<div>
{{ commentAndShareCode }}
{% if ext_disqus_shortname.length %}
<div id="disqus_thread"></div>
{% /if %}
{% if ext_duoshuo_shortname.length %}
<div class="ds-thread" data-thread-key="{{ post.url }}" data-url="{{ siteURL }}{{ post.url }}" data-title="{{ post.title }}"></div>
{% /if %}
</div>
</article>
</div>
</div>
<script src="asset/jquery-3.3.1.min.js"></script>
<script>
$(document).ready(function() {
$('#footer').show()
})
</script>