forked from sh-akira/VirtualMotionCapture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.html
More file actions
45 lines (40 loc) · 1.61 KB
/
Copy pathpost.html
File metadata and controls
45 lines (40 loc) · 1.61 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
---
layout: page
---
<div class="blog-post text-container">
{% include post-title.html post=page %}
<div class="post-content">
{{ content }}
<div class="author">
{% assign author_id = page.author_staff_member | prepend: "/staff_members/" | append: "/" %}
{% assign author = site.staff_members | where: "url", author_id | first %}
<div class="square-image"><img src="{% include relative-src.html src=author.image_path %}" alt="{{ author.name }}"/></div>
<p class="blurb">{{ author.blurb }}</p>
</div>
<div class="blog-navigation">
{% if page.previous.url %}
<a class="prev" href="{% include relative-src.html src=page.previous.url %}">« {{ page.previous.title }}</a>
{% endif %}
{% if page.next.url %}
<a class="next" href="{% include relative-src.html src=page.next.url %}">{{ page.next.title }} »</a>
{% endif %}
</div>
{% if site.disqus_shortname and page.comments %}
<div id="disqus_thread"></div>
<script>
var disqus_shortname = '{{ site.disqus_shortname }}';
var disqus_config = function () {
this.page.url = "{{ page.url | prepend: site.url }}";
this.page.identifier = "{{ page.id }}";
};
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = '//' + disqus_shortname + '.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
{% endif %}
</div>
</div>