We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a037b90 commit e3d1db2Copy full SHA for e3d1db2
src/routes/blog/index.js
@@ -13,7 +13,8 @@ const blogs = (props) => {
13
if (data && data.data) {
14
return (
15
<article class={style.blogcontainer}>
16
- <h1 class={style.blogtitle}>{data.data.title}</h1>
+ <h1 class={style.blogtitle}>{data.data.details.title}</h1>
17
+ <caption class={style.subtitle}>{data.data.details.subtitle}</caption>
18
<div class={style.blogbody}>
19
<Markdown>{ data.data.content }</Markdown>
20
</div>
0 commit comments