changes
This commit is contained in:
parent
9432fb5afd
commit
2b6d98748f
|
@ -373,3 +373,15 @@ footer {
|
||||||
justify-self: center;
|
justify-self: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#pleroma {
|
||||||
|
.container {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
div {
|
||||||
|
flex: 1 0 280px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -133,10 +133,13 @@ apps:
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
<section>
|
<section id="pleroma">
|
||||||
|
<div class="container">
|
||||||
|
|
||||||
{% assign nasa = site.data.pleroma.feed.entry | sort: 'published' | reverse %}
|
{% assign nasa = site.data.pleroma.feed.entry | sort: 'published' | reverse %}
|
||||||
{% for item in nasa %}
|
{% for item in nasa %}
|
||||||
{% unless item.in_reply_to %}
|
{% unless item.in_reply_to %}
|
||||||
|
<div>
|
||||||
{% if item.summary %}
|
{% if item.summary %}
|
||||||
<h2 style="text-align: left;">{{ item.summary }}</h2>
|
<h2 style="text-align: left;">{{ item.summary }}</h2>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -172,6 +175,10 @@ apps:
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
|
</div>
|
||||||
{% endunless %}
|
{% endunless %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
Loading…
Reference in a new issue