forked from pmem/pmem.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.html
80 lines (76 loc) · 2.77 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>{% if page.title %}pmem.io: {{ page.title }}{% else %}pmem.io{% endif %}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="/css/pmem.css" type="text/css">
<link rel="stylesheet" href="/css/pygment_trac.css" type="text/css">
<link rel="shortcut icon" href="/favicon.ico">
<link href="http://pmem.io/feed.xml" rel="alternate" type="application/atom+xml">
</head>
<body>
<!-- _layouts/post.html -->
<div id="wrap">
<div id="header">
<a href="http://pmem.io/">
<h2>pmem.io<br>Persistent Memory Programming</h2>
</a>
</div>
<div id="nav">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/glossary/">Glossary</a></li>
<li><a href="/documents/">Documents</a></li>
<li><a href="/nvml/">NVM Library</a></li>
<li><a href="/blog/" class="sel">Blog</a></li>
<li><a href="/about/">About</a></li>
</ul>
</div>
<br>
<h3>{{ page.title }}</h3>
<ul>
</ul>
<div id="postinfo">Posted {{ page.date | date: '%B %d, %Y' }}
{% if page.previous.url %}
<font size="-1"><a href="{{ page.previous.url }}" title="{{ page.previous.title }}">« Previous post</a></font>
{% endif %}
{% if page.next.url %}
<font size="-1"><a href="{{ page.next.url }}" title="{{ page.next.title }}">Next post »</a></font>
{% endif %}
</div>
<br>
{{ content }}
<br>
<br>
<div id="postinfo">Posted by <a href="https://github.com/{{ page.author }}">@{{ page.author }}</a>
{% if page.previous.url %}
<font size="-1"><a href="{{ page.previous.url }}" title="{{ page.previous.title }}">« Previous post</a></font>
{% endif %}
{% if page.next.url %}
<font size="-1"><a href="{{ page.next.url }}" title="{{ page.next.title }}">Next post »</a></font>
{% endif %}
</div>
{% if page.identifier %}
<div id="disqus_thread"></div>
<script>
var disqus_config = function () {
this.page.url = '{{ site.url }}{{ page.url }}'; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = '{{ page.identifier }}'; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = '//nvml.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 id="footer">
<hr>
{% include pagefooter.html %}
</div>
</div>
</body>
</html>