Skip to content

Latest commit

 

History

History
62 lines (58 loc) · 1.74 KB

File metadata and controls

62 lines (58 loc) · 1.74 KB
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 %}

{{ post.title }}

    {% 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 %}
{% endfor %}