From c8ea989882e27b831c76e4bbcc47e6caada1e415 Mon Sep 17 00:00:00 2001
From: Felix Boerner <ich@felix-boerner.de>
Date: Mon, 11 Nov 2024 13:26:11 +0000
Subject: [PATCH] feat: use webflow html
---
layouts/partials/links.html | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/layouts/partials/links.html b/layouts/partials/links.html
index 3313bc9..fc662c3 100644
--- a/layouts/partials/links.html
+++ b/layouts/partials/links.html
@@ -1,14 +1,14 @@
-<div class="split-lists">
+<div class="links w-row">
{{ range $key, $value := .Site.Params.links }}
{{ range $key, $list := $value }}
{{ if $list.link }}
- <div class="split-list">
- <h3>{{ $list.heading }}</h3>
- <ul>
+ <div class="column w-col w-col-4">
+ <h3 class="text-block-2">{{ $list.heading }}</h3>
+ <ul class="list w-list-unstyled">
{{ range $list.link }}
- <li><a href="{{ .url | safeURL }}" title="{{ .text }}" target="{{ cond (.new_tab | default false) "_blank" "_self" }}">{{ .text }}</a></li>
+ <li><a href="{{ .url | safeURL }}" target="{{ cond (.new_tab | default false) "_blank" "_self" }}">{{ .text }}</a></li>
{{ end }}
</ul>
</div>
--
Gitblit v1.10.0