Make template names clearer
Alan Pearce alan@alanpearce.eu
Sat, 23 Sep 2023 19:34:24 +0200
3 files changed, 2 insertions(+), 2 deletions(-)
M src/templates.ts → src/templates.ts
@@ -48,7 +48,7 @@ async function renderHomepage(posts: Array<Post>): Promise<string> { const file = matter(await Bun.file("content/_index.md").text()); const $ = await layout( - cheerio.load(await Bun.file("templates/index.html").text()), + cheerio.load(await Bun.file("templates/homepage.html").text()), config.title, ); @@ -101,7 +101,7 @@ } async function renderListPage(tag: string, posts: Post[]) { const $ = await layout( - cheerio.load(await Bun.file("templates/tag.html").text()), + cheerio.load(await Bun.file("templates/list.html").text()), tag || config.title, ); const $feed = $(".h-feed");