From cc4ee741999e3a7223bddb6f494f363aef295c3d Mon Sep 17 00:00:00 2001 From: Michael Kohlhase <michael.kohlhase@fau.de> Date: Sun, 16 Dec 2018 07:50:54 +0100 Subject: [PATCH] fixing invalid values --- _layouts/person.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/_layouts/person.html b/_layouts/person.html index ccc57b7..bb67393 100644 --- a/_layouts/person.html +++ b/_layouts/person.html @@ -66,28 +66,28 @@ layout: default </div> <div class="card-action"> {% if page.publink == "auto" %} - <a href="http://kwarc.github.io/bibs/{{username}}/"><img style="width:100;height:100" src="/public/pubs.jpg"/></a> + <a href="http://kwarc.github.io/bibs/{{username}}/"><img style="width:60px;height:60px" src="/public/pubs.jpg"/></a> {% elsif page.publink %} - <a href="{{page.publink}}"><img style="width:100;height:100" src="/public/pubs.jpg"/></a> + <a href="{{page.publink}}"><img style="width:60px;height:60px" src="/public/pubs.jpg"/></a> {% endif %} {% if page.website %} - <a target="_blank" href="{{page.website}}"><img style="width:100;height:100" src="/public/www.jpg"/></a> + <a target="_blank" href="{{page.website}}"><img style="width:60px;height:60px" src="/public/www.jpg"/></a> {% endif %} {% if page.orcid %} - <a target="_blank" href="http://orcid.org/{{page.orccid}}"><img style="width:100;height:100" src="/public/orcid.png"/> </a> + <a target="_blank" href="http://orcid.org/{{page.orccid}}"><img style="width:60px;height:60px" src="/public/orcid.png"/> </a> {% endif %} {% if page.github %} - <a target="_blank" href="http://github.com/{{page.github}}"><img style="width:100;height:100" src="/public/github.png"/></a> + <a target="_blank" href="http://github.com/{{page.github}}"><img style="width:60px;height:60px" src="/public/github.png"/></a> {% endif %} {% if page.gitlab %} - <a target="_blank" href="http://gitlab.com/{{page.gitlab}}"><img style="width:100;height:100" src="/public/gitlab.png"/></a> + <a target="_blank" href="http://gitlab.com/{{page.gitlab}}"><img style="width:60px;height:60px" src="/public/gitlab.png"/></a> {% endif %} {% if page.mathhub %} - <a target="_blank" href="http://gl.mathhub.info/{{page.mathhub}}"><img style="width:100;height:100" src="/public/mathHubLogo.png"/></a> + <a target="_blank" href="http://gl.mathhub.info/{{page.mathhub}}"><img style="width:60px;height:60px" src="/public/mathHubLogo.png"/></a> {% endif %} </div> -- GitLab