---
title: Blog
layout: blog
description: Welcome to NewPipe!
short: All posts
---
{% for post in paginator.posts %}
{{ post.date | date_to_string }}, by {{ post.author }}
{% if post.image %}
{% if post.excerpt_separator %}
{{ post.excerpt }}
{% else %}
{%- assign exc = post.content | normalize_whitespace | split: '' -%}
{%- for excs in exc -%}
{%- if forloop.index < 3 -%}{{ excs | append : ''}}{%- endif -%}
{%- endfor -%}
{% endif %}
Read more...
{% for category in post.categories %}
{{ category }}
{% endfor %}
{% else %}
{% if post.excerpt_separator %}
{{ post.excerpt }}
{% else %}
{{ post.content | truncatewords:100 }}
{% endif %}
Read more...
{% for category in post.categories %}
{{ category }}
{% unless forloop.last %} | {% endunless %}
{% endfor %}
{% endif %}
{% endfor %}