pedf
/
fakulta-online
Archived
1
0
Fork 0

Zobrazení koordinátora dle grafického návrhu

master
Emil Miler 4 years ago
parent 6af2af38a2
commit 87f9d18970

@ -36,6 +36,15 @@ main {
.program { width: 100%; }
.program img { max-width: 100%; }
}
div.coordinator>div {
flex-direction: column;
&>div {
margin-top: 2em;
text-align: center;
}
}
}
}

@ -207,6 +207,30 @@ main {
}
}
}
div.coordinator {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 8em;
&>div {
display: flex;
align-items: center;
img {
width: 10em;
margin: 0 2em;
border-radius: 50%;
}
ul {
padding: 0;
list-style-type: none;
}
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

@ -0,0 +1,19 @@
<div class="coordinator">
<h3>Koordinátor</h3>
<div>
{% if image %}
<img src="/coordinators/{{ image }}" alt="Obrázek koordinátora">
{% else %}
<img src="/coordinators/placeholder.jpg" alt="Obrázek koordinátora">
{% endif %}
{% if email or phone %}
<div>
<strong>{{ name }}</strong>
<ul>
{% if email %}<li><a href="mailto:{{ email }}">{{ email }}</a></li>{% endif %}
{% if phone %}<li>{{ phone }}</li>{% endif %}
</ul>
</div>
{% endif %}
</div>
</div>