Update icon-gitlab.html - Added the missing forward slash from the url. (#80)

The missing `/` was causing the url to be incorrect in the finally generated web page.
The url got rendered as https://gitlab.comusername instead of https://gitlab.com/username
This commit is contained in:
Raju Devidas 2018-11-12 05:17:03 +05:30 committed by Michael Rose
parent 94e9efafe1
commit 8886f6a2c0
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<a href="https://gitlab.com{{ include.username }}"> <a href="https://gitlab.com/{{ include.username }}">
<span class="icon icon--gitlab">{% include icon-gitlab.svg %}</span> <span class="icon icon--gitlab">{% include icon-gitlab.svg %}</span>
<span class="label">{{ include.label | default: include.username }}</span> <span class="label">{{ include.label | default: include.username }}</span>
</a> </a>