Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/hossainemruz/toha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo MARTIN <hugo.martin@epitech.eu>2020-10-03 06:59:28 +0300
committerGitHub <noreply@github.com>2020-10-03 06:59:28 +0300
commit46b21e028c0a183ac1a7db40a9cd6479e7eafc22 (patch)
treef45056c43ef87ec0c706b335ae693e41ef38a96d /layouts/partials/cards/skill.html
parent6c2cca012758803802a81d06dccb60c2d2d48b66 (diff)
Translations and i18n (#60)
* Managing i18n * Fix absolute path * Config files * Home link manage langage * Fixing footer i18n * Implemented i18n on newsletter * Implemented two languages in example * Removed old section directory * Using yaml in data to organize home summary * Fully working for old versions without i18n * Integrating language menu CSS * Fix language dropdown CSS * Refactor translation codes * Remove duplicate code * Fix URL issues * Move customMenus and other site related config into data section * Fix error during language toggle * Only show the available translation for the posts * Handle navbar brand URL properly * Fix responsiveness Co-authored-by: Hugo MARTIN <hugo.martin.69@gmail.com> Co-authored-by: hossainemruz <emruz@appscode.com>
Diffstat (limited to 'layouts/partials/cards/skill.html')
-rw-r--r--layouts/partials/cards/skill.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/cards/skill.html b/layouts/partials/cards/skill.html
index ee8c488..b911405 100644
--- a/layouts/partials/cards/skill.html
+++ b/layouts/partials/cards/skill.html
@@ -3,7 +3,7 @@
<div class="card">
<div class="card-head d-flex">
{{ if .icon }}
- <img class="card-img-xs" src="{{ .icon }}" alt="{{ .name }}" />
+ <img class="card-img-xs" src="{{ .icon | absURL }}" alt="{{ .name }}" />
{{ end }}
<h5 class="card-title">{{ .name }}</h5>
</div>