Skip to content

Commit

Permalink
Merge pull request #166 from DenverCoder544/blogs_resource_path
Browse files Browse the repository at this point in the history
fix blogs resource path
  • Loading branch information
ZakarFin authored Nov 27, 2024
2 parents 639b2c0 + 6618372 commit 3ab3644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/blog/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default async function SingleBlogPage({

// should we have some dynamic content at some point, it would reside here.
// TODO: might wanna rethink the path/structure, if we wanna have excels or pdfs or whatnot in resources...?
const blogsResourcesPath = '/assets/blog/';
const blogsResourcesPath = '/assets/blog/resources/';
const html = await getMarkdownContentAsHtml(post.path, blogsResourcesPath);
return (
<Layout heroSmall heroTitle='Blog'>
Expand Down

0 comments on commit 3ab3644

Please sign in to comment.