pedf
/
fakulta-online
Archived
1
0
Fork 0

Změna zobrazení seznamu statistik nástroje

master
Emil Miler 5 years ago
parent ec33d28dc7
commit c099e21d0a

@ -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;
@ -171,8 +170,6 @@ main {
}
}
}
}
}
}
body.index {

@ -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 %}
<div class="stats">
<ul class="positive">
{% for item in page.extra.positive %}
<li>{{ item }}</li>
{% endfor %}
</ul>
<ul class="negative">
{% for item in page.extra.negative %}
<li>{{ item }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
{{ page.content | safe }}
</section>
{% endblock %}