Skip to content

Commit

Permalink
feat Images: move thumbnails to images
Browse files Browse the repository at this point in the history
  • Loading branch information
prplwtf committed Jun 3, 2024
1 parent 7e35a5a commit 4d92b75
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes
2 changes: 1 addition & 1 deletion src/components/sections/BlogSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function BlogSection() {
let PostThumbnail = ""
if (Post.Thumbnail) {
PostThumbnail = `
<img src="./thumbnails/${Post.Thumbnail}" class="rounded-top-4 object-fit-cover" height="110px" width="100%"/>
<img src="./images/${Post.Thumbnail}" class="rounded-top-4 object-fit-cover" height="110px" width="100%"/>
`
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/sections/ReadSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ async function ReadSection() {
let PostThumbnail = ""
if(Post.Thumbnail) {
PostThumbnail = `
<img src="./thumbnails/${Post.Thumbnail}" class="rounded-top-4 object-fit-cover" height="170px" width="100%"/>
<img src="./images/${Post.Thumbnail}" class="rounded-top-4 object-fit-cover" height="170px" width="100%"/>
`
}

Expand Down

0 comments on commit 4d92b75

Please sign in to comment.