You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
565 B
29 lines
565 B
{% assign page = include.page %}
|
|
|
|
<h1>
|
|
{% if include.isPermalink %}
|
|
{{ page.title }}
|
|
{% else %}
|
|
<a href="/react{{ page.url }}">{{ page.title }}</a>
|
|
{% endif %}
|
|
</h1>
|
|
|
|
<p class="meta">
|
|
{{ page.date | date: "%B %e, %Y" }}
|
|
by
|
|
{% if page.author.url %}
|
|
<a href="{{page.author.url}}">{{ page.author.name }}</a>
|
|
{% else %}
|
|
{{ page.author.name }}
|
|
{% endif %}
|
|
</p>
|
|
|
|
<hr>
|
|
|
|
<div class="post">
|
|
{{ include.content }}
|
|
</div>
|
|
|
|
{% if include.isPermalink %}
|
|
<div class="fb-like" data-send="true" data-width="650" data-show-faces="false"></div>
|
|
{% endif %}
|
|
|