diff --git a/www/public/config.yaml b/www/public/config.yaml index 1a35e95..a83350b 100644 --- a/www/public/config.yaml +++ b/www/public/config.yaml @@ -1,3 +1,2 @@ pinned: - - now.txt - - cv.txt + - none diff --git a/www/src/pages/index.astro b/www/src/pages/index.astro index 483af09..0303c8b 100644 --- a/www/src/pages/index.astro +++ b/www/src/pages/index.astro @@ -59,8 +59,8 @@ const urls = [
 {
   const prefix = i === 0 ? labelPrefix(SECTIONS.guestbook, `?just=${SECTIONS.guestbook}`) : blankPrefix;
   const nameHtml = e.url ? `${e.name}` : `${e.name}`;
-  return `${prefix}${formatDate(e.createdAt)}  ${nameHtml} ${e.message}`;
-}).join('\n')} />
+  return `${prefix}${formatDate(e.createdAt)}  ${nameHtml} ${e.message}`;
+}).join('')} />
   


diff --git a/www/src/styles/global.css b/www/src/styles/global.css index 524c5d9..c18363d 100644 --- a/www/src/styles/global.css +++ b/www/src/styles/global.css @@ -104,6 +104,10 @@ section pre { white-space: pre-wrap; } +.guestbook-entry { + display: block; +} + .guestbook-form { margin-top: 0.5rem; font-family: monospace;