Compare commits
3 Commits
4702e5bf89
...
046a62f54b
| Author | SHA1 | Date | |
|---|---|---|---|
| 046a62f54b | |||
| 416fc9f122 | |||
| f4cf74cee9 |
@@ -40,6 +40,12 @@
|
|||||||
font-size: 1.728rem;
|
font-size: 1.728rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bsky {
|
||||||
|
display: block;
|
||||||
|
height: 2rem;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
nav a {
|
nav a {
|
||||||
margin: 1rem;
|
margin: 1rem;
|
||||||
margin-left: 0rem;
|
margin-left: 0rem;
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import type { SvelteComponent } from 'svelte';
|
|||||||
import type { MDsveXComponent } from '$lib/types';
|
import type { MDsveXComponent } from '$lib/types';
|
||||||
|
|
||||||
export interface BlogEntry {
|
export interface BlogEntry {
|
||||||
name: string;
|
title: string;
|
||||||
src: string;
|
src: string;
|
||||||
img: string;
|
img: string;
|
||||||
date: string;
|
date: string;
|
||||||
|
|||||||
@@ -13,14 +13,14 @@
|
|||||||
This is a collection of things I've set up and created that I think might interest others.
|
This is a collection of things I've set up and created that I think might interest others.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
{#each blogs as blog}
|
{#each blogs as blog (blog.src)}
|
||||||
<a href={blog.src} class="blog-entry">
|
<a href={blog.src} class="blog-entry">
|
||||||
<div>
|
<div>
|
||||||
<h4>{blog.title}</h4>
|
<h4>{blog.title}</h4>
|
||||||
<p>{blog.desc}</p>
|
<p>{blog.desc}</p>
|
||||||
<p class="date">{blog.date}</p>
|
<p class="date">{blog.date}</p>
|
||||||
</div>
|
</div>
|
||||||
<img src="blog-1.png" class="blog-image" />
|
<img src="blog-1.png" alt="Preview of the described article" />
|
||||||
</a>
|
</a>
|
||||||
<!-- svelte:component this={page.default} /-->
|
<!-- svelte:component this={page.default} /-->
|
||||||
{/each}
|
{/each}
|
||||||
|
|||||||
@@ -91,11 +91,6 @@ hr {
|
|||||||
color: var(--rp-moon-muted);
|
color: var(--rp-moon-muted);
|
||||||
}
|
}
|
||||||
|
|
||||||
.bsky{
|
|
||||||
display:block;
|
|
||||||
height: 2rem;
|
|
||||||
float:right;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1{font-size: 2.986rem}
|
h1{font-size: 2.986rem}
|
||||||
h2{font-size: 2.488rem}
|
h2{font-size: 2.488rem}
|
||||||
|
|||||||
Reference in New Issue
Block a user