change theme again :D

This commit is contained in:
naoufal zerai
2022-08-18 15:20:15 -04:00
parent dee5809c1a
commit 5dba10766d
287 changed files with 28330 additions and 1506 deletions

View File

@@ -0,0 +1,34 @@
{{- $profile := .Params.profile -}}
{{- if not $profile -}}
{{- $profile = site.Params.profile -}}
{{- end -}}
{{- with $profile -}}
{{- if eq .enable true -}}
<section class="article author">
{{- with .avatar -}}<img class="avatar" src="{{- . | relURL -}}" alt>{{- end -}}
{{- with .name -}}<p class="name">{{- . -}}</p>{{- end -}}
{{- with .bio -}}<div class="bio">{{- . | markdownify -}}</div>{{- end -}}
<div class="details">
{{- with .github -}}
<a class="item" href="https://github.com/{{- . | safeHTML -}}" target="_blank" rel="noopener noreferrer"><span class="iconfont icon-github"></span>&nbsp;{{- . -}}</a>
{{- end -}}
{{- with .docker -}}
<a class="item" href="https://hub.docker.com/u/{{- . | safeHTML -}}" target="_blank" rel="noopener noreferrer"><span class="iconfont icon-docker"></span>&nbsp;{{- . -}}</a>
{{- end -}}
{{- with .twitter -}}
<a class="item" href="https://twitter.com/{{- . | safeHTML -}}" target="_blank" rel="noopener noreferrer"><span class="iconfont icon-twitter"></span>&nbsp;@{{- . -}}</a>
{{- end -}}
{{- with .email -}}
<a class="item" href="mailto:{{- . | safeHTML -}}" target="_blank" rel="noopener noreferrer"><span class="iconfont icon-email"></span>&nbsp;{{- . -}}</a>
{{- end -}}
</div>
</section>
{{- end -}}
{{- end -}}