changes
This commit is contained in:
parent
9432fb5afd
commit
2b6d98748f
|
@ -373,3 +373,15 @@ footer {
|
|||
justify-self: center;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#pleroma {
|
||||
.container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
div {
|
||||
flex: 1 0 280px;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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>
|
Loading…
Reference in a new issue