This repository has been archived by the owner on Aug 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search_result_tab_2.php
96 lines (90 loc) · 3.62 KB
/
search_result_tab_2.php
1
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
<!doctype html>
<html lang="ar">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link href="styles.css" rel="stylesheet">
<link href="icons.css" rel="stylesheet">
<title>Search results</title>
</head>
<body dir="rtl">
<?php include 'header.php'; ?>
<div class="py-16 text-center container max-w-1400px">
<div class="text-3xl font-bold md:text-h1 py-5">
نتائج البحث
</div>
<div class="flex items-center justify-center py-10 ">
<input type="text" class="p-2 px-4 rounded-r-full border focus:outline-none placeholder-black-800 w-full sm:w-max" placeholder="بالتفصيل">
<button class="btn-red border border-red-800 rounded-none rounded-l-full pl-10 pr-8">بحث</button>
</div>
</div>
<div class="container max-w-1400px">
<div class="flex items-center border-b gap-y-6 gap-x-10 text-2xl flex-wrap ">
<a href="/search.php" class=" pb-2">
مقالات
</a>
<a href="/search_podcast.php" class="pb-2 font-bold text-red-800 px-2 relative">
بودكاست <div class="absolute bottom-0 left-0 w-full h-h-1px bg-red-800"></div>
</a>
<a href="/search_authors.php" class="pb-2">
المؤلفون
</a>
</div>
</div>
<div class="container py-10 mt-5 max-w-1400px">
<div class="grid grid-cols-4 gap-4">
<div class="col-span-4 md:col-span-3">
<?php
for ($i = 1; $i < 8; $i++) {
$titleFontSize = 'md:text-h4 text-s-1';
include 'components/article_in_list_icons.php';
}
?>
</div>
<div class="col-span-1 hidden md:block">
<div class="text-lg mb-4 md:text-s-1">
العلامات
</div>
<div class="flex gap-4 flex-wrap text-15px">
<div class="bg-black-100 px-4 rounded-full py-2"> الألم</div>
<div class="bg-black-100 px-4 rounded-full py-2"> الخرف</div>
<div class="bg-black-100 px-4 rounded-full py-2"> الزهايمر</div>
<div class="bg-black-100 px-4 rounded-full py-2"> مرضى الخرف</div>
<div class="bg-black-100 px-4 rounded-full py-2"> الزهايمر</div>
<div class="bg-black-100 px-4 rounded-full py-2"> الخرف</div>
<div class="bg-black-100 px-4 rounded-full py-2"> الألم</div>
<div class="bg-black-100 px-4 rounded-full py-2"> الألم</div>
<div class="bg-black-100 px-4 rounded-full py-2"> الألم</div>
<div class="bg-black-100 px-4 rounded-full py-2"> الألم</div>
</div>
<div class="h-h-1px bg-black-300 w-full mt-8 mb-32"></div>
<div class="mt-16">
<?php
for ($i = 1; $i < 5; $i++) {
include 'components/author_in_grid_sidebar.php';
}
?>
</div>
</div>
</div>
</div>
<div class="container py-20 max-w-1400px">
<div class="text-center text-gray-500">
١ - ٢٢ من ٥٥ نتائج
</div>
<div class="flex flex-row justify-center items-center">
<button class="btn-yellow text-sm mt-4 py-3 px-4 text-15px flex-row flex">
أظهر المزيد
<div class="flex flex-row items-center justify-center mr-3">
<i class="icon-chevron-expand text-s-1"></i>
</div>
</button>
</div>
</div>
<?php
include 'pre_footer.php';
include "footer.php";
include "footer_after.php"
?>
</body>
</html>