forked from kittv/web
1
0
Fork 0

Webová stránka v profilu pracovníka

search
Emil Miler 3 years ago
parent 33b7d1bd1d
commit a44365903c

@ -7,5 +7,6 @@ group = "ucitele"
email = "jakub.lapes@pedf.cuni.cz" email = "jakub.lapes@pedf.cuni.cz"
phone = "+420 221 900 239" phone = "+420 221 900 239"
sis = "18014" sis = "18014"
homepage = "https://kraken.pedf.cuni.cz/~lapej2ap/"
+++ +++

@ -7,5 +7,6 @@ group = "ucitele"
email = "jiri.leipert@pedf.cuni.cz" email = "jiri.leipert@pedf.cuni.cz"
phone = "+420 221 900 235" phone = "+420 221 900 235"
sis = "02772" sis = "02772"
homepage = "https://www.leipert.cz"
+++ +++

@ -228,7 +228,7 @@ main {
a:hover { text-decoration: underline } a:hover { text-decoration: underline }
} }
.mail, .tel, .cal { .mail, .tel, .cal, .homepage {
display: flex; display: flex;
align-items: center; align-items: center;
@ -241,6 +241,7 @@ main {
.mail::before { content: "\e90e" } .mail::before { content: "\e90e" }
.tel::before { content: "\e913" } .tel::before { content: "\e913" }
.cal::before { content: "\e905" } .cal::before { content: "\e905" }
.homepage::before { content: "\e907" }
} }
.people-profile .info { .people-profile .info {
@ -272,7 +273,6 @@ main {
.people-list { .people-list {
h1 { margin-bottom: 0 } h1 { margin-bottom: 0 }
h2 { h2 {
margin: 3rem 0; margin: 3rem 0;

@ -162,6 +162,11 @@
<a href="tel:{{ profile.extra.phone }}">{{ profile.extra.phone }}</a> <a href="tel:{{ profile.extra.phone }}">{{ profile.extra.phone }}</a>
</div> </div>
{% endif %} {% endif %}
{% if profile.extra.homepage %}
<div class="homepage">
<a href="{{ profile.extra.homepage }}">{{ profile.extra.homepage | replace(from="https://", to="") | replace(from="http://", to="") }}</a>
</div>
{% endif %}
{% if profile.extra.sis %} {% if profile.extra.sis %}
<div class="cal"> <div class="cal">
<a href="https://is.cuni.cz/studium/rozvrhng/roz_ucitel_macro.php?fak=11410&ucitel={{ profile.extra.sis }}">Rozvrh</a> <a href="https://is.cuni.cz/studium/rozvrhng/roz_ucitel_macro.php?fak=11410&ucitel={{ profile.extra.sis }}">Rozvrh</a>

Loading…
Cancel
Save