layout: default


<section class=“home”>

<h2 class="page-title">
    {{ page.title }}
</h2>
<ul class="post-list">
    {% for post in paginator.posts %}
    <li class="post-list-item">
        <header>
            <h3 >
                <a href="{{ post.url }}"> {{ post.title }}</a>
            </h3>
            <time datetime="{{ post.date | date_to_xmlschema}}">{{post.date | date: "%d-%m-%Y"}}</time>

<ul class=“cat”>

{% for category in post.categories %}
<li>
    <a href="/categories/{{ category }}.html">
        {{ category }}
    </a>
</li>

{% endfor %}

</ul>

        </header>
        <div class="post-list-item-desc">
            <p>{{ post.excerpt | default: '' | strip_html | normalize_whitespace | truncate: 200 | escape }}
                <a href="{{ post.url }}"> Czytaj więcej</a>
            </p>
        </div>
    </li>
    {% endfor %}
</ul>
<a href="{{"/feeds/feed.xml " | relative_url }}" style="line-height:2em">
  <img src="{{ "img/rss.png" | relative_url }}" alt="Subskrybuj"
  title="Subskrybuj" style="width:1em;">
  Subskrybuj
</a>

</section>