Removiendo nombres de clases item y usando selectores CSS a cambio
authorOdairTrujillo <haldrik@gmail.com>
Mon, 17 Apr 2023 22:13:13 +0000 (17:13 -0500)
committerOdairTrujillo <haldrik@gmail.com>
Mon, 17 Apr 2023 22:13:13 +0000 (17:13 -0500)
themes/droda/layouts/partials/aside.html

index c084298af3d906eac480b8b46444c724f053f21a..26ed52e38e87c3675abd2f0a45ae5108526a6fbf 100644 (file)
@@ -1,11 +1,11 @@
 {{ "<!-- Bloque parcial para el aside -->" | safeHTML }}
 <aside>
   {{ range .Site.Menus.main }}
-  <div class="item">
+  <div>
     {{ .Pre }}<a href="{{ .URL }}" title="{{ .Identifier }}" target="_blank">{{ .Name }}</a>
   </div>
   {{ end }}
   {{ range .Site.Sections }}
-    <li class="item"><a class="hover" href="{{ .Permalink }}">{{ .Title }}</a></li>
+    <li><a class="hover" href="{{ .Permalink }}">{{ .Title }}</a></li>
   {{ end }}
 </aside>