| layout | page |
|---|---|
| title | Emre Dündar |
| subtitle | personal website |
| css | /css/index.css |
| meta-title | Emre Dündar - Posts in English |
| meta-description |
TR
EN
{% for post in site.tags.en %}
{% endfor %}
{% if post.subtitle %}
<h3 class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
<p class="post-meta">
Posted on {{ post.date | date: "%B %-d, %Y" }}
</p>
</a>
{% if post.image %}
{% endif %}
{{ post.excerpt | strip_html | xml_escape | truncatewords: site.excerpt_length }}
{% assign excerpt_word_count = post.excerpt | number_of_words %}
{% if post.content != post.excerpt or excerpt_word_count > site.excerpt_length %}
[Read More]
{% endif %}
{% if post.tags.size > 0 %}
<div class="blog-tags">
Tags:
{% if site.link-tags %}
{% for tag in post.tags %}
<a href="{{ site.baseurl }}/tag/{{ tag }}">{{ tag }}</a>
{% endfor %}
{% else %}
{{ post.tags | join: ", " }}
{% endif %}
</div>
{% endif %}