Related Articles
- Default related articles
- Rounded list of blog posts
- Horizontal card with image
- Carousel slider cards
- Grid layout cards
Use these components to show a list of related and recommended blog posts and articles at the bottom of the main content area of an article or blog post page.
Details
<link
rel="stylesheet"
href="https://unpkg.com/flowbite-typography@1.0.3/dist/typography.min.css"
/>2
3
4
document.head.insertAdjacentHTML('afterbegin', '<link rel="stylesheet" type="text/css" href="https://unpkg.com/flowbite-typography@1.0.3/dist/typography.min.css">')Default related articles
Use this example to show a list of related articles after the main content of a blog post to engage users and decrease the bounce rate.
Default related articles
<!-- Block start -->
<aside
aria-label="Related articles"
class="py-8 lg:py-24 bg-white dark:bg-gray-900"
>
<div class="px-4 mx-auto max-w-screen-xl">
<h2 class="mb-8 text-2xl font-bold text-gray-900 dark:text-white">
Related articles
</h2>
<div class="grid gap-12 sm:grid-cols-2 lg:grid-cols-4">
<article class="max-w-xs">
<a href="#">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/article/blog-1.png"
class="mb-5 rounded-lg"
alt="Image 1"
/>
</a>
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">Our first office</a>
</h2>
<p class="mb-4 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After months
of preparation.
</p>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read in 2 minutes
</a>
</article>
<article class="max-w-xs">
<a href="#">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/article/blog-2.png"
class="mb-5 rounded-lg"
alt="Image 2"
/>
</a>
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">Enterprise design tips</a>
</h2>
<p class="mb-4 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After months
of preparation.
</p>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read in 12 minutes
</a>
</article>
<article class="max-w-xs">
<a href="#">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/article/blog-3.png"
class="mb-5 rounded-lg"
alt="Image 3"
/>
</a>
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">We partnered with Google</a>
</h2>
<p class="mb-4 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After months
of preparation.
</p>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read in 8 minutes
</a>
</article>
<article class="max-w-xs">
<a href="#">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/article/blog-4.png"
class="mb-5 rounded-lg"
alt="Image 4"
/>
</a>
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">Our first project with React</a>
</h2>
<p class="mb-4 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After months
of preparation.
</p>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read in 4 minutes
</a>
</article>
</div>
</div>
</aside>
<!-- Block end -->2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
Rounded list of blog posts
This example can also be used to show a list of recommended blog posts with a rounded style for the image preview.
Rounded list of blog posts
<!-- Block start -->
<aside
aria-label="Related articles"
class="py-8 lg:py-24 bg-white dark:bg-gray-900"
>
<div class="px-4 mx-auto max-w-screen-xl">
<h2 class="mb-8 text-2xl font-bold text-gray-900 dark:text-white">
Read next
</h2>
<article class="flex mb-8">
<a href="#" class="shrink-0">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/articles/image-1.png"
class="mr-5 w-32 h-32 max-w-fullalign-middle rounded-full"
alt="Image 1"
/>
</a>
<div class="flex flex-col justify-center">
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">Our first office</a>
</h2>
<p class="mb-2 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After months
of preparation.
</p>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read in 2 minutes
</a>
</div>
</article>
<article class="flex mb-8">
<a href="#" class="shrink-0">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/articles/image-2.png"
class="mr-5 w-32 h-32 max-w-full align-middle rounded-full"
alt="Image 2"
/>
</a>
<div class="flex flex-col justify-center">
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">Enterprise design tips</a>
</h2>
<p class="mb-2 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After months
of preparation.
</p>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read in 12 minutes
</a>
</div>
</article>
<article class="flex">
<a href="#" class="shrink-0">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/articles/image-3.png"
class="mr-5 w-32 h-32 max-w-full align-middle rounded-full"
alt="Image 3"
/>
</a>
<div class="flex flex-col justify-center">
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">We partnered up with Google</a>
</h2>
<p class="mb-2 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After months
of preparation.
</p>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read in 8 minutes
</a>
</div>
</article>
</div>
</aside>
<!-- Block end -->2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
Horizontal card with image
Use this example to show a list of related articles based on a two-column layout with horizontal alignment.
Horizontal card with image
<!-- Block start -->
<aside
aria-label="Related articles"
class="bg-white dark:bg-gray-900 py-8 lg:py-24"
>
<div class="px-4 mx-auto max-w-screen-xl">
<h2 class="mb-6 lg:mb-8 text-2xl font-bold text-gray-900 dark:text-white">
Related articles
</h2>
<div class="grid gap-6 lg:gap-12 md:grid-cols-2">
<article class="flex flex-col xl:flex-row">
<a href="#" class="mb-2 xl:mb-0">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/article/blog-1.png"
class="mr-5 max-w-sm"
alt="Image 1"
/>
</a>
<div class="flex flex-col justify-center">
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">Our first office</a>
</h2>
<p class="mb-4 font-light text-gray-500 dark:text-gray-400 max-w-sm">
Over the past year, Volosoft has undergone many changes! After
months of preparation.
</p>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read in 2 minutes
</a>
</div>
</article>
<article class="flex flex-col xl:flex-row">
<a href="#" class="mb-2 xl:mb-0">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/article/blog-2.png"
class="mr-5 max-w-sm"
alt="Image 2"
/>
</a>
<div class="flex flex-col justify-center">
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">Enterprise design tips</a>
</h2>
<p class="mb-4 font-light text-gray-500 dark:text-gray-400 max-w-sm">
Over the past year, Volosoft has undergone many changes! After
months of preparation.
</p>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read in 12 minutes
</a>
</div>
</article>
<article class="flex flex-col xl:flex-row">
<a href="#" class="mb-2 xl:mb-0">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/article/blog-3.png"
class="mr-5 max-w-sm"
alt="Image 3"
/>
</a>
<div class="flex flex-col justify-center">
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">We partnered up with Google</a>
</h2>
<p class="mb-4 font-light text-gray-500 dark:text-gray-400 max-w-sm">
Over the past year, Volosoft has undergone many changes! After
months of preparation.
</p>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read in 8 minutes
</a>
</div>
</article>
<article class="flex flex-col xl:flex-row">
<a href="#" class="mb-2 xl:mb-0">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/article/blog-4.png"
class="mr-5 max-w-sm"
alt="Image 4"
/>
</a>
<div class="flex flex-col justify-center">
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">Our first project with React</a>
</h2>
<p class="mb-4 font-light text-gray-500 dark:text-gray-400 max-w-sm">
Over the past year, Volosoft has undergone many changes! After
months of preparation.
</p>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read in 12 minutes
</a>
</div>
</article>
</div>
</div>
</aside>
<!-- Block end -->2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
Carousel slider cards
This example can be used to show a list of related articles in cards within a carousel slider shown after the main blog post content.
Carousel slider cards
<!-- Block start -->
<aside
aria-label="Related articles"
class="py-8 bg-white dark:bg-gray-900 lg:py-16"
>
<div class="px-4 mx-auto w-full max-w-screen-xl">
<h2 class="mb-8 text-2xl font-bold text-gray-900 dark:text-white">
Trending on Flowbite
</h2>
<div id="animation-carousel" data-carousel="slide">
<div class="relative overflow-hidden rounded-lg h-[480px]">
<div
class="hidden bg-white duration-700 ease-in-out dark:bg-gray-900"
data-carousel-item
>
<div class="grid grid-cols-1 gap-4 sm:grid-cols-2 xl:grid-cols-3">
<article
class="p-4 mx-auto max-w-sm bg-white rounded-lg shadow-md border border-gray-200 dark:border-gray-800 dark:bg-gray-800 dark:border-gray-700"
>
<a href="#">
<img
class="mb-5 rounded-lg"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/blog/office-laptops.png"
alt="office laptop working"
/>
</a>
<div class="flex items-center mb-3 space-x-2">
<img
class="w-8 h-8 rounded-full"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/jese-leos.png"
alt="Jese Leos avatar"
/>
<div class="font-medium dark:text-white">
<div>Jese Leos</div>
<div
class="text-sm font-normal text-gray-500 dark:text-gray-400"
>
Aug 15, 2021 · 16 min read
</div>
</div>
</div>
<h3
class="mb-2 text-xl font-bold tracking-tight text-gray-900 lg:text-2xl dark:text-white"
>
<a href="#">Our first office</a>
</h3>
<p class="mb-3 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After
months of preparation and some hard work, we moved to our new
office.
</p>
<a
href="#"
class="inline-flex items-center font-medium text-primary-600 hover:text-primary-800 dark:text-primary-500 hover:no-underline"
>
Read more
<svg
class="mt-px ml-1 w-4 h-4"
aria-hidden="true"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</a>
</article>
<article
class="hidden p-4 mx-auto max-w-sm bg-white rounded-lg shadow-md dark:bg-gray-800 border border-gray-200 dark:border-gray-800 sm:block"
>
<a href="#">
<img
class="mb-5 rounded-lg"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/blog/google-hq.png"
alt="google hq"
/>
</a>
<div class="flex items-center mb-3 space-x-2">
<img
class="w-8 h-8 rounded-full"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/roberta-casas.png"
alt="Roberta Casas avatar"
/>
<div class="font-medium dark:text-white">
<div>Roberta Casas</div>
<div
class="text-sm font-normal text-gray-500 dark:text-gray-400"
>
Aug 15, 2021 · 16 min read
</div>
</div>
</div>
<h3
class="mb-2 text-xl font-bold tracking-tight text-gray-900 lg:text-2xl dark:text-white"
>
<a href="#">We partnered up with Google</a>
</h3>
<p class="mb-3 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After
months of preparation and some hard work, we moved to our new
office.
</p>
<a
href="#"
class="inline-flex items-center font-medium text-primary-600 hover:text-primary-800 dark:text-primary-500 hover:no-underline"
>
Read more
<svg
class="mt-px ml-1 w-4 h-4"
aria-hidden="true"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</a>
</article>
<article
class="hidden p-4 mx-auto max-w-sm bg-white rounded-lg shadow-md dark:bg-gray-800 border border-gray-200 dark:border-gray-800 xl:block"
>
<a href="#">
<img
class="mb-5 rounded-lg"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/blog/office-laptops-2.png"
alt="office laptop working"
/>
</a>
<div class="flex items-center mb-3 space-x-2">
<img
class="w-8 h-8 rounded-full"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/sofia-mcguire.png"
alt="Sofia McGuire avatar"
/>
<div class="font-medium dark:text-white">
<div>Sofia McGuire</div>
<div
class="text-sm font-normal text-gray-500 dark:text-gray-400"
>
Aug 15, 2021 · 16 min read
</div>
</div>
</div>
<h3
class="mb-2 text-xl font-bold tracking-tight text-gray-900 lg:text-2xl dark:text-white"
>
<a href="#">Our first project with React</a>
</h3>
<p class="mb-3 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After
months of preparation and some hard work, we moved to our new
office.
</p>
<a
href="#"
class="inline-flex items-center font-medium text-primary-600 hover:text-primary-800 dark:text-primary-500 hover:no-underline"
>
Read more
<svg
class="mt-px ml-1 w-4 h-4"
aria-hidden="true"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</a>
</article>
</div>
</div>
<div
class="hidden bg-white duration-700 ease-in-out dark:bg-gray-900"
data-carousel-item
>
<div class="grid grid-cols-1 gap-4 sm:grid-cols-2 xl:grid-cols-3">
<article
class="p-4 mx-auto max-w-sm bg-white rounded-lg shadow-md dark:bg-gray-800 border border-gray-200 dark:border-gray-800"
>
<a href="#">
<img
class="mb-5 rounded-lg"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/blog/google-hq.png"
alt="google hq"
/>
</a>
<div class="flex items-center mb-3 space-x-2">
<img
class="w-8 h-8 rounded-full"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/roberta-casas.png"
alt="Roberta Casas avatar"
/>
<div class="font-medium dark:text-white">
<div>Roberta Casas</div>
<div
class="text-sm font-normal text-gray-500 dark:text-gray-400"
>
Aug 15, 2021 · 16 min read
</div>
</div>
</div>
<h3
class="mb-2 text-xl font-bold tracking-tight text-gray-900 lg:text-2xl dark:text-white"
>
<a href="#">We partnered up with Google</a>
</h3>
<p class="mb-3 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After
months of preparation and some hard work, we moved to our new
office.
</p>
<a
href="#"
class="inline-flex items-center font-medium text-primary-600 hover:text-primary-800 dark:text-primary-500 hover:no-underline"
>
Read more
<svg
class="mt-px ml-1 w-4 h-4"
aria-hidden="true"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</a>
</article>
<article
class="hidden p-4 mx-auto max-w-sm bg-white rounded-lg shadow-md dark:bg-gray-800 border border-gray-200 dark:border-gray-800 sm:block"
>
<a href="#">
<img
class="mb-5 rounded-lg"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/blog/office-laptops.png"
alt="office laptop working"
/>
</a>
<div class="flex items-center mb-3 space-x-2">
<img
class="w-8 h-8 rounded-full"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/jese-leos.png"
alt="Jese Leos avatar"
/>
<div class="font-medium dark:text-white">
<div>Jese Leos</div>
<div
class="text-sm font-normal text-gray-500 dark:text-gray-400"
>
Aug 15, 2021 · 16 min read
</div>
</div>
</div>
<h3
class="mb-2 text-xl font-bold tracking-tight text-gray-900 lg:text-2xl dark:text-white"
>
<a href="#">Our first office</a>
</h3>
<p class="mb-3 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After
months of preparation and some hard work, we moved to our new
office.
</p>
<a
href="#"
class="inline-flex items-center font-medium text-primary-600 hover:text-primary-800 dark:text-primary-500 hover:no-underline"
>
Read more
<svg
class="mt-px ml-1 w-4 h-4"
aria-hidden="true"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</a>
</article>
<article
class="hidden p-4 mx-auto max-w-sm bg-white rounded-lg shadow-md dark:bg-gray-800 border border-gray-200 dark:border-gray-800 xl:block"
>
<a href="#">
<img
class="mb-5 rounded-lg"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/blog/office-laptops-2.png"
alt="office laptop working"
/>
</a>
<div class="flex items-center mb-3 space-x-2">
<img
class="w-8 h-8 rounded-full"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/sofia-mcguire.png"
alt="Sofia McGuire avatar"
/>
<div class="font-medium dark:text-white">
<div>Sofia McGuire</div>
<div
class="text-sm font-normal text-gray-500 dark:text-gray-400"
>
Aug 15, 2021 · 16 min read
</div>
</div>
</div>
<h3
class="mb-2 text-xl font-bold tracking-tight text-gray-900 lg:text-2xl dark:text-white"
>
<a href="#">Our first project with React</a>
</h3>
<p class="mb-3 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After
months of preparation and some hard work, we moved to our new
office.
</p>
<a
href="#"
class="inline-flex items-center font-medium text-primary-600 hover:text-primary-800 dark:text-primary-500 hover:no-underline"
>
Read more
<svg
class="mt-px ml-1 w-4 h-4"
aria-hidden="true"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</a>
</article>
</div>
</div>
<div
class="hidden bg-white duration-700 ease-in-out dark:bg-gray-900"
data-carousel-item
>
<div class="grid grid-cols-1 gap-4 sm:grid-cols-2 xl:grid-cols-3">
<article
class="p-4 mx-auto max-w-sm bg-white rounded-lg shadow-md dark:bg-gray-800 border border-gray-200 dark:border-gray-800"
>
<a href="#">
<img
class="mb-5 rounded-lg"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/blog/office-laptops-2.png"
alt="office laptop working"
/>
</a>
<div class="flex items-center mb-3 space-x-2">
<img
class="w-8 h-8 rounded-full"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/sofia-mcguire.png"
alt="Sofia McGuire avatar"
/>
<div class="font-medium dark:text-white">
<div>Sofia McGuire</div>
<div
class="text-sm font-normal text-gray-500 dark:text-gray-400"
>
Aug 15, 2021 · 16 min read
</div>
</div>
</div>
<h3
class="mb-2 text-xl font-bold tracking-tight text-gray-900 lg:text-2xl dark:text-white"
>
<a href="#">Our first project with React</a>
</h3>
<p class="mb-3 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After
months of preparation and some hard work, we moved to our new
office.
</p>
<a
href="#"
class="inline-flex items-center font-medium text-primary-600 hover:text-primary-800 dark:text-primary-500 hover:no-underline"
>
Read more
<svg
class="mt-px ml-1 w-4 h-4"
aria-hidden="true"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</a>
</article>
<article
class="hidden p-4 mx-auto max-w-sm bg-white rounded-lg shadow-md dark:bg-gray-800 border border-gray-200 dark:border-gray-800 sm:block"
>
<a href="#">
<img
class="mb-5 rounded-lg"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/blog/google-hq.png"
alt="google hq"
/>
</a>
<div class="flex items-center mb-3 space-x-2">
<img
class="w-8 h-8 rounded-full"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/roberta-casas.png"
alt="Roberta Casas avatar"
/>
<div class="font-medium dark:text-white">
<div>Roberta Casas</div>
<div
class="text-sm font-normal text-gray-500 dark:text-gray-400"
>
Aug 15, 2021 · 16 min read
</div>
</div>
</div>
<h3
class="mb-2 text-xl font-bold tracking-tight text-gray-900 lg:text-2xl dark:text-white"
>
<a href="#">We partnered up with Google</a>
</h3>
<p class="mb-3 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After
months of preparation and some hard work, we moved to our new
office.
</p>
<a
href="#"
class="inline-flex items-center font-medium text-primary-600 hover:text-primary-800 dark:text-primary-500 hover:no-underline"
>
Read more
<svg
class="mt-px ml-1 w-4 h-4"
aria-hidden="true"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</a>
</article>
<article
class="hidden p-4 mx-auto max-w-sm bg-white rounded-lg shadow-md dark:bg-gray-800 border border-gray-200 dark:border-gray-800 xl:block"
>
<a href="#">
<img
class="mb-5 rounded-lg"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/blog/office-laptops.png"
alt="office laptop working"
/>
</a>
<div class="flex items-center mb-3 space-x-2">
<img
class="w-8 h-8 rounded-full"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/jese-leos.png"
alt="Jese Leos avatar"
/>
<div class="font-medium dark:text-white">
<div>Jese Leos</div>
<div
class="text-sm font-normal text-gray-500 dark:text-gray-400"
>
Aug 15, 2021 · 16 min read
</div>
</div>
</div>
<h3
class="mb-2 text-xl font-bold tracking-tight text-gray-900 lg:text-2xl dark:text-white"
>
<a href="#">Our first office</a>
</h3>
<p class="mb-3 font-light text-gray-500 dark:text-gray-400">
Over the past year, Volosoft has undergone many changes! After
months of preparation and some hard work, we moved to our new
office.
</p>
<a
href="#"
class="inline-flex items-center font-medium text-primary-600 hover:text-primary-800 dark:text-primary-500 hover:no-underline"
>
Read more
<svg
class="mt-px ml-1 w-4 h-4"
aria-hidden="true"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</a>
</article>
</div>
</div>
</div>
<div class="flex justify-center items-center mt-2">
<button
type="button"
class="flex justify-center items-center mr-4 h-full cursor-pointer group focus:outline-none"
data-carousel-prev
>
<span
class="text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200"
>
<svg
class="w-7 h-7"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M7.707 14.707a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 1.414L5.414 9H17a1 1 0 110 2H5.414l2.293 2.293a1 1 0 010 1.414z"
clip-rule="evenodd"
></path>
</svg>
<span class="hidden">Previous</span>
</span>
</button>
<button
type="button"
class="flex justify-center items-center h-full cursor-pointer group focus:outline-none"
data-carousel-next
>
<span
class="text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200"
>
<svg
class="w-7 h-7"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
<span class="hidden">Next</span>
</span>
</button>
</div>
</div>
</div>
<!-- Block end -->
</aside>2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
Grid layout cards
Use this example to show three cards on a row based on a grid layout to encourage users to read another article.
Grid layout cards
<!-- Block start -->
<aside
aria-label="Related articles"
class="py-8 bg-white lg:py-16 dark:bg-gray-900"
>
<div class="px-4 mx-auto max-w-screen-xl">
<h2 class="mb-8 text-2xl font-bold text-gray-900 dark:text-white">
Read Next
</h2>
<div class="grid gap-8 sm:grid-cols-2 lg:grid-cols-3">
<article>
<a href="#">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/articles/wordpress/image-1.jpg"
class="mb-5 w-full max-w-full rounded-lg"
alt="Image 1"
/>
</a>
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#"
>Flowbite enables IT to automate Apple device configuration</a
>
</h2>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read more
</a>
</article>
<article>
<a href="#">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/articles/wordpress/image-2.jpg"
class="mb-5 w-full max-w-full rounded-lg"
alt="Image 2"
/>
</a>
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">How AI is transforming your smartphone</a>
</h2>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read more
</a>
</article>
<article>
<a href="#">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/articles/wordpress/image-3.jpg"
class="mb-5 w-full max-w-full rounded-lg"
alt="Image 3"
/>
</a>
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">Android, ChromeOS, and the future of app discovery</a>
</h2>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read more
</a>
</article>
<article>
<a href="#">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/articles/wordpress/image-4.jpg"
class="mb-5 w-full max-w-full rounded-lg"
alt="Image 4"
/>
</a>
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">What Google collaboration app offers remote teams</a>
</h2>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read more
</a>
</article>
<article>
<a href="#">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/articles/wordpress/image-5.jpg"
class="mb-5 w-full max-w-full rounded-lg"
alt="Image 5"
/>
</a>
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#">Collaboration app spending grows in the face of crisis</a>
</h2>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read more
</a>
</article>
<article>
<a href="#">
<img
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/articles/wordpress/image-6.jpg"
class="mb-5 w-full max-w-full rounded-lg"
alt="Image 6"
/>
</a>
<h2
class="mb-2 text-xl font-bold leading-tight text-gray-900 dark:text-white"
>
<a href="#"
>For developers, too many meetings, too little 'focus' time</a
>
</h2>
<a
href="#"
class="inline-flex items-center font-medium underline underline-offset-4 text-primary-600 dark:text-primary-500 hover:no-underline"
>
Read more
</a>
</article>
</div>
</div>
</aside>
<!-- Block end -->2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138