@ -150,11 +150,10 @@ main {
max-height: 4em;
max-width: 100%;
}
div {
display: flex;
justify-content: space-between;
div.stats {
ul.positive, ul.negative {
padding-left: .5em;
list-style-type: none;
@ -172,8 +171,6 @@ main {
body.index {
background-image: url(/index-bg.png), url(/body-index-bg.svg);
@ -22,7 +22,7 @@
<a href="{{ program.permalink }}"><img src="/software/{{ program.extra.logo }}" alt="{{ program.title }}"></a>
<p>{{ program.description }}</p>
{% if program.extra.positive and program.extra.negative %}
<div>
<div class="stats">
<ul class="positive">
{% for item in program.extra.positive %}
<li>{{ item }}</li>
@ -4,6 +4,20 @@
<section>
<img src="{{ "../"~page.extra.logo }}" alt="{{ page.extra.logo }}" class="logo">
<p>{{ page.description }}</p>
{% if page.extra.positive and page.extra.negative %}
{% for item in page.extra.positive %}
{% endfor %}
</ul>
<ul class="negative">
{% for item in page.extra.negative %}
</div>
{% endif %}
{{ page.content | safe }}
</section>
{% endblock %}