💄 emojis everywhere
Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
parent
583f723318
commit
cb7edef515
8 changed files with 26 additions and 14 deletions
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
title: "Connect"
|
title: "🌐 Connect"
|
||||||
description: ""
|
description: ""
|
||||||
layout: "../layouts/Layout.astro"
|
layout: "../layouts/Layout.astro"
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
title: 'gallery: cairn collection'
|
title: '📸 gallery: cairn collection'
|
||||||
description: ''
|
description: ''
|
||||||
layout: "../../layouts/Gallery.astro"
|
layout: "../../layouts/Gallery.astro"
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
title: 'gallery'
|
title: '📸 gallery'
|
||||||
description: ''
|
description: ''
|
||||||
layout: "../../layouts/Layout.astro"
|
layout: "../../layouts/Layout.astro"
|
||||||
---
|
---
|
||||||
|
|
|
@ -9,8 +9,8 @@ const valenciaImages = gallery.valencia.map(image => ({
|
||||||
---
|
---
|
||||||
|
|
||||||
<SectionContainer>
|
<SectionContainer>
|
||||||
<main class="flex flex-col gap-6 py-8">
|
<main class="flex flex-col gap-6 py-4">
|
||||||
<h1 class="text-4xl font-bold">gallery: valencia</h1>
|
<h1 class="text-3xl font-bold">📸 gallery: valencia</h1>
|
||||||
<div class="grid grid-cols-3 gap-4">
|
<div class="grid grid-cols-3 gap-4">
|
||||||
{
|
{
|
||||||
valenciaImages.map(image => (
|
valenciaImages.map(image => (
|
||||||
|
|
|
@ -16,12 +16,12 @@ import HeaderLink from '../components/HeaderLink.astro';
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<h1 class="text-xl font-semibold">pages</h1>
|
<h1 class="text-xl font-semibold">pages</h1>
|
||||||
<ul class="flex flex-col blog">
|
<ul class="flex flex-col index">
|
||||||
<li><HeaderLink href="/about">whoami</HeaderLink>~ sid, i am</li>
|
<li><HeaderLink href="/about">❓ whoami</HeaderLink>~ sid, i am</li>
|
||||||
<li><HeaderLink href="/blog">blog</HeaderLink>~ my written thoughts and ideas</li>
|
<li><HeaderLink href="/blog">✍️ blog</HeaderLink>~ i write my thoughts sometimes</li>
|
||||||
<li><HeaderLink href="/logs">logs</HeaderLink>~ a record of what I've watched, read & climbed</li>
|
<li><HeaderLink href="/logs">🗂️ logs</HeaderLink>~ a record of what I've watched, read & climbed</li>
|
||||||
<li><HeaderLink href="/gallery">gallery</HeaderLink>~ moments and places of my life, in pictures</li>
|
<li><HeaderLink href="/gallery">📸 gallery</HeaderLink>~ moments and places of my life, in pictures</li>
|
||||||
<li><HeaderLink href="/more">more</HeaderLink>~ additional pages</li>
|
<li><HeaderLink href="/more">🦕 more</HeaderLink>~ additional pages</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
title: 'Logs'
|
title: '🗂️ Logs'
|
||||||
description: ''
|
description: ''
|
||||||
layout: "../../layouts/Layout.astro"
|
layout: "../../layouts/Layout.astro"
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
title: "Uses"
|
title: "✨ Uses"
|
||||||
description: ""
|
description: ""
|
||||||
layout: "../layouts/Layout.astro"
|
layout: "../layouts/Layout.astro"
|
||||||
---
|
---
|
||||||
|
|
|
@ -42,6 +42,18 @@ p {
|
||||||
border-top: 1px solid var(--light-1);
|
border-top: 1px solid var(--light-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* INDEX */
|
||||||
|
.index li {
|
||||||
|
list-style: none;
|
||||||
|
padding: 10px 0 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index a { color: var(--dark-link);}
|
||||||
|
|
||||||
|
.dark .index a { color: var(--light-link);}
|
||||||
|
|
||||||
|
.index a:hover { text-decoration: underline 2px;}
|
||||||
|
|
||||||
/* BLOG */
|
/* BLOG */
|
||||||
.blog p {
|
.blog p {
|
||||||
margin: 10px 0 0 0;
|
margin: 10px 0 0 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue