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

github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/components/post-author.html')
-rw-r--r--layouts/partials/components/post-author.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/components/post-author.html b/layouts/partials/components/post-author.html
index 22e4a77..c809763 100644
--- a/layouts/partials/components/post-author.html
+++ b/layouts/partials/components/post-author.html
@@ -1,7 +1,7 @@
<div class="py-2">
{{ range . }}
<div class="flex flex-col md:flex-row items-center my-8">
- <a href="{{ .Permalink }}" class="w-24 h-24 md:mr-4">
+ <a href="{{ .Permalink }}" class="w-24 h-24 md:me-4">
{{ $img := partial "utils/get-image" (dict "context" . "url" .Params.avatar "keyword" "*avatar*")}}
{{ with $img }}
<img src="{{ . }}" class="w-full bg-primary-bg rounded-full" alt="Avatar">
@@ -17,7 +17,7 @@
{{ $iconPack := .iconPack | default .icon_pack }}
{{/* Deprecation warning(v1.0.0) ends */}}
{{ $src := print $iconPack " fa-" .icon }}
- <a href="{{ .url }}" class="mr-1">
+ <a href="{{ .url }}" class="me-1">
<i class="{{ print $src }}"></i>
</a>
{{ end }}