Blog Page Redesign Help Needed #9004
-
|
Can anyone help me a little? I want to design my Another Question: Can anyone help me implement something like a spinner shown on the website till it's fully loaded? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
You can achieve both of these in Docusaurus, but they require working in two different areas: theme swizzling for the blog layout, and a small client-side customization for the loading spinner. 1. Redesigning
|
Beta Was this translation helpful? Give feedback.
You can achieve both of these in Docusaurus, but they require working in two different areas: theme swizzling for the blog layout, and a small client-side customization for the loading spinner.
1. Redesigning
/blogwith TailwindCSS-style cardsDocusaurus blog pages are controlled by the theme component:
@docusaurus/theme-classicTo customize the blog list layout:
Swizzle the blog list component:
This will create an override in:
Inside that file, you’ll find the layout rendering logic. Replace the default post list rendering with a card layout similar to Flowbite.
You can adapt their card structure…