-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathblog.html
29 lines (29 loc) · 1.05 KB
/
blog.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
{% include header.html %}
{% assign top_url = '/blog' %}
{% assign top_slug = 'blog' %}
{% assign author = site.authors[page.author] %}
<div class="docs">
{% include breadcrumbs.html %}
<div class="grid docs-content">
<div class="col-2-12 sidebar">
</div>
<div class="col-8-12">
<div class="post-header">
<h2 class="post-title">{{ page.title }}</h2>
<div class="post-meta">{{ page.date | date_to_long_string }}{% if author %} • <a href="{{author.url}}">{{author.display_name}}</a>{% endif %}</div>
</div>
<div class="post-content">
{{ content }}
</div>
<div class="post-footer">
To comment or leave feedback on this post, get in contact on
<a href="https://twitter.com/NodeRED">Twitter</a>,
the <a href="https://discourse.nodered.org">forum</a>
or join the conversation on <a href="/slack">Slack</a>.
</div>
</div>
<div class="col-2-12 docs-content sidebar">
</div>
</div>
</div>
{% include footer.html %}