pedf
/
fakulta-online
Archived
1
0
Fork 0

Compare commits

...

3 Commits

@ -8,6 +8,7 @@ categories = ["chci-ucit-online"]
tags = ["Elektronické informační zdroje"]
[extra]
logo = "centralni-katalog-uk.png"
linkto = "https://ckis.cuni.cz/"
directlink = true
+++

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

@ -10,7 +10,7 @@ tags = ["Asynchronní komunikace"]
[extra]
logo = "microsoft-planner.png"
positive_short = [
"Nástroj MS Office"
"nástroj MS Office"
]
negative_short = [
"chybí podstatné funkce",

@ -12,7 +12,7 @@ logo = "moodle.png"
linkto = "https://dl1.cuni.cz/"
positive_short = [
"mnoho funkcí",
"izálohy, importy"
"zálohy, importy"
]
negative_short = [
"složitější na ovládání",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 14 KiB

@ -15,8 +15,8 @@ positive_short = [
"virtuální pozadí"
]
negative_short = [
"Časté výpadky",
"Složité ovládání",
"časté výpadky",
"složité ovládání",
"malá kompatibilita prohlížečů"
]
positive = [

@ -21,12 +21,12 @@
<div class="stats">
<ul class="positive">
{% for item in program.extra.positive_short %}
<li>{{ item }}</li>
<li>{{ item | safe }}</li>
{% endfor %}
</ul>
<ul class="negative">
{% for item in program.extra.negative_short %}
<li>{{ item }}</li>
<li>{{ item | safe }}</li>
{% endfor %}
</ul>
</div>

@ -8,7 +8,7 @@
{% endif %}
{% if email or phone %}
<div>
<strong>{{ name }}</strong>
<strong>{{ name | safe }}</strong>
<ul>
{% if email %}<li><a href="mailto:{{ email }}">{{ email }}</a></li>{% endif %}
{% if phone %}<li>{{ phone }}</li>{% endif %}

@ -18,12 +18,12 @@
<div class="stats">
<ul class="positive">
{% for item in page.extra.positive %}
<li>{{ item }}</li>
<li>{{ item | safe }}</li>
{% endfor %}
</ul>
<ul class="negative">
{% for item in page.extra.negative %}
<li>{{ item }}</li>
<li>{{ item | safe }}</li>
{% endfor %}
</ul>
</div>