forked from webmachinelearning/webmachinelearning.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpost.html
More file actions
51 lines (43 loc) · 1.5 KB
/
post.html
File metadata and controls
51 lines (43 loc) · 1.5 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
---
layout: postlayout
---
<article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h1 class="post-title p-name" itemprop="name headline"><a
href="{{ page.url | relative_url }}">{{ page.title | escape }}</a></h1>
<p class="post-meta">
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
Last updated: {{ page.date | date: date_format }}
</time>
</p>
</header>
<div class="post-content e-content" itemprop="articleBody">
{{ content }}
</div>
<div class="blflex">
<span class="postimg">
<img alt="profile" src="{{ page.avatar }}">
</span>
<div class="postsub">
<p class="postauthor">{{ page.author | escape }}</p>
<p class="postdate">Last updated: {{ page.date | date: date_format }}</p>
</div>
</div>
{%- if site.disqus.shortname -%}
{%- include disqus_comments.html -%}
{%- endif -%}
<!-- <div class="post-nav">
<div>
{% if page.previous.url %}
<a href="{{page.previous.url | relative_url }}">« {{page.previous.title}}</a>
{% endif %}
</div>
<div class="post-nav-next">
{% if page.next.url %}
<a href="{{page.next.url | relative_url }}">{{page.next.title}} »</a>
{% endif %}
</div>
</div> -->
<a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
</article>