mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 20:15:27 +00:00
chore: update job title
This commit is contained in:
@@ -2,14 +2,14 @@
|
||||
layout: ../layouts/AboutLayout.astro
|
||||
title: About
|
||||
updated: 2025-01-23
|
||||
description: I’m Stefan Imhoff, a Web UI Engineer from Hamburg, Germany.
|
||||
description: I’m Stefan Imhoff, a Web Developer from Hamburg, Germany.
|
||||
backLink: /
|
||||
---
|
||||
|
||||
import { mapping } from "../mdx-components.ts";
|
||||
export const components = mapping;
|
||||
|
||||
I’m _Stefan Imhoff_, a Senior Web UI Engineer from Hamburg, Germany.
|
||||
I’m _Stefan Imhoff_, a Senior Web Developer from Hamburg, Germany.
|
||||
|
||||
I find inspiration in a wide variety of media, from reading challenging and heterodox [books](https://goodreads.com/kogakure) about philosophy, science, and economics to listening to [podcasts](https://raindrop.io/kogakure/podcasts-24118384), watching [TV shows](https://www.themoviedb.org/u/kogakure/favorites/tv) and [movies](https://www.themoviedb.org/u/kogakure/favorites), and indulging in [Korean](https://www.themoviedb.org/list/8216385-korea?view=grid) and [Japanese](https://www.themoviedb.org/list/106001-japan?view=grid) dramas on Netflix.
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ const allPosts = await getCollection('journal', ({ data }: JournalType) => !data
|
||||
const formattedLatest = formatPosts(allPosts, { limit: 6 });
|
||||
|
||||
const title = 'Stefan Imhoff';
|
||||
const description = 'Web UI Engineer from Hamburg, Germany';
|
||||
const description = 'Web Developer from Hamburg, Germany';
|
||||
|
||||
const rssPosts = await Astro.glob('../content/journal/**/*.mdx');
|
||||
rssPosts.sort(sortMarkdownByDate);
|
||||
|
||||
11
src/pages/rss-test.xml.js
Normal file
11
src/pages/rss-test.xml.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import rss, { pagesGlobToRssItems } from '@astrojs/rss';
|
||||
|
||||
export async function get(context) {
|
||||
return rss({
|
||||
title: 'Your Blog Title',
|
||||
description: 'Your blog description',
|
||||
site: context.site,
|
||||
// This glob includes both Markdown (.md) and MDX (.mdx) files
|
||||
items: await pagesGlobToRssItems(import.meta.glob('../content/journal/2025/*.{md,mdx}')),
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user