social-icons: refactor

* use easier impl
This commit is contained in:
Aditya Telange 2020-10-02 13:46:49 +05:30
parent 8ff1f10eb7
commit 6dcd437146
No known key found for this signature in database
GPG Key ID: 82E844EF3DA99E77
3 changed files with 11 additions and 15 deletions

View File

@ -7,11 +7,7 @@
<p>{{- .Content | markdownify }}</p>
</section>
<footer class="entry-footer">
{{- with $.Site.Params.socialIcons }}
<div class="social-icons">
{{- partial "social_icons.html" . }}
</div>
{{- end }}
{{- partial "social_icons.html" $.Site.Params.socialIcons -}}
</footer>
</article>
{{- end}}

View File

@ -2,12 +2,10 @@
{{- with .Site.Params.profileMode }}
<div class="profile_inner">
{{- if .imageUrl}}<img src="{{ .imageUrl}}" alt="{{ .imageTitle | default "profile image" }}" />{{- end}}
<h1>{{ .title | default $.Site.Title }}</h1>
{{- with $.Site.Params.socialIcons }}
<div class="social-icons">
{{ partial "social_icons.html" . }}
</div>
{{- end }}
<h1>{{- .title | default $.Site.Title -}}</h1>
{{- partial "social_icons.html" $.Site.Params.socialIcons -}}
{{- with .buttons }}
<div class="buttons">
{{- range . -}}

View File

@ -1,4 +1,6 @@
{{- range . -}}
<a href="{{ .url }}" target="_blank" rel="noopener noreferrer"
title="{{ .name | humanize }}">{{ partial "svg.html" . }}</a>
{{- end -}}
<div class="social-icons">
{{- range . -}}
<a href="{{ .url }}" target="_blank" rel="noopener noreferrer"
title="{{ .name | humanize }}">{{ partial "svg.html" . }}</a>
{{- end -}}
</div>