This commit is contained in:
sakrecoer 2020-12-25 17:34:40 +01:00
parent 9432fb5afd
commit 2b6d98748f
2 changed files with 20 additions and 1 deletions

View file

@ -373,3 +373,15 @@ footer {
justify-self: center;
}
}
#pleroma {
.container {
display: flex;
flex-wrap: wrap;
div {
flex: 1 0 280px;
}
}
}

View file

@ -133,10 +133,13 @@ apps:
{% endif %}
{% endfor %}
<section>
<section id="pleroma">
<div class="container">
{% assign nasa = site.data.pleroma.feed.entry | sort: 'published' | reverse %}
{% for item in nasa %}
{% unless item.in_reply_to %}
<div>
{% if item.summary %}
<h2 style="text-align: left;">{{ item.summary }}</h2>
{% endif %}
@ -172,6 +175,10 @@ apps:
{% endif %}
{% endfor %}
<hr />
</div>
{% endunless %}
{% endfor %}
</div>
</section>