added bg image to header. Fixed backtotop link and icons in home and footer.
[theme-danix.xyz.git] / layouts / partials / home-social-links.html
index cb921a0..3c9c151 100644 (file)
@@ -1,13 +1,13 @@
-<div id="home-social-links">
-       <h3 class="screen-reader-text social-links-title">my socials</h3>
-       <ul class="social-links-list">
-               {{ range site.Data.socials.sites }}
+<div class="inner">
+       <header class="major">
+               <h3 class="screen-reader-text social-links-title">my socials</h3>
+       </header>
+       <ul class="social-sites align-center">
+               {{ range site.Data.socials.sites | shuffle }}
                        <li>
-                               <a href="{{ .url }}/{{ .user }}"><i class="fa-brands fa-square-{{ .name }}"></i><span class="screen-reader-text">{{ .name }}</span></a>
+                               {{$name := .name}}
+                               <a href="{{ .url }}/{{ .user }}">{{ partial "funcs/svg.html" (dict "context" . "username" $name) }}</a>
                        </li>
                {{ end }}
-                       <li>
-                               <a href=""><i class="fa-solid fa-angles-up"></i><span class="screen-reader-text">suca</span></a>
-                       </li>
        </ul>
 </div>