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/_default/baseof.html | 22 +++++++++++++---------
1 files changed, 13 insertions(+), 9 deletions(-)
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index b1023e9..11fb01c 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -5,16 +5,17 @@
{{ partial "head" . }}
</head>
-<body id="fullsingle" class="page-template-page-fullsingle-split">
+<body class="body">
- <div class="fs-split">
+ <div class="columns w-row">
+
+ <!-- Media Side -->
+ <div class="leftcontent w-col w-col-6 w-col-stack">
<!-- Image -->
{{ if .Params.visual.image.enable | default .Site.Params.visual.image.enable }}
- <div class="split-image">
-
- </div>
+ <div class="image"></div>
<!-- Video -->
{{ else if .Params.visual.video.enable | default .Site.Params.visual.video.enable }}
@@ -22,10 +23,12 @@
{{ partial "video" . }}
{{ end }}
+ </div>
<!-- Content Side -->
- <div class="split-content">
- <div class="split-content-vertically-center">
+ <div class="rightcontent w-col w-col-6 w-col-stack">
+
+ <div class="content">
<!-- Intro -->
{{ partial "intro" . }}
@@ -35,9 +38,10 @@
{{ partial "bio" . }}
{{ end }}
- <!-- Footer -->
- {{ partial "footer" . }}
+ <!-- Credit -->
+ {{ partial "credit" . }}
</div>
+
</div>
</div>
--
Gitblit v1.10.0