react/docs/_includes/blog_post.html

33 lines
656 B
HTML
Raw Normal View History

2015-05-02 09:03:46 +08:00
{% assign page = include.page %}
2013-06-03 06:48:15 +08:00
2015-05-02 09:03:46 +08:00
<h1>
{% if include.isPermalink %}
{{ page.title }}
2013-06-03 06:48:15 +08:00
{% else %}
2015-05-02 09:03:46 +08:00
<a href="/react{{ page.url }}">{{ page.title }}</a>
2013-06-03 06:48:15 +08:00
{% endif %}
2015-05-02 09:03:46 +08:00
</h1>
<p class="meta">
{{ page.date | date: "%B %e, %Y" }}
by
2015-10-15 08:32:57 +08:00
{% for author in page.authors %}
{% if author.url %}
<a href="{{author.url}}">{{ author.name }}</a>
{% else %}
{{ author.name }}
{% endif %}
{% if forloop.last == false %} and {% endif %}
{% endfor %}
2015-05-02 09:03:46 +08:00
</p>
<hr>
<div class="post">
{{ include.content }}
2013-06-03 06:48:15 +08:00
</div>
2015-05-02 09:03:46 +08:00
{% if include.isPermalink %}
<div class="fb-like" data-send="true" data-width="650" data-show-faces="false"></div>
{% endif %}