Skip to content

Commit

Permalink
Reorganize article tags structure
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriyyakym committed Jan 23, 2025
1 parent 1914b89 commit 8587d87
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions modules/Story/Story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export async function Story({
const categories = await app().translatedCategories(story.culture.code, story.categories);

return (
<article className={styles.story}>
<div className={styles.container}>
<div className={styles.container}>
<article className={styles.story}>
<Embargo story={story} />
{withHeaderImage === 'above' && headerImageDocument && (
<HeaderImageRenderer nodes={headerImageDocument} />
Expand All @@ -66,15 +66,15 @@ export async function Story({
)}
</div>
<ContentRenderer story={story} nodes={mainDocument} />
{visibility === 'public' && withSharingIcons && sharingUrl && (
<Share
sharingOptions={sharingOptions}
thumbnailUrl={thumbnailUrl}
url={sharingUrl}
/>
)}
</div>
</article>
</article>
{visibility === 'public' && withSharingIcons && sharingUrl && (
<Share
sharingOptions={sharingOptions}
thumbnailUrl={thumbnailUrl}
url={sharingUrl}
/>
)}
</div>
);
}

Expand Down

0 comments on commit 8587d87

Please sign in to comment.