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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="../static/file.css" rel="stylesheet">
<title>موتور جست و جوی فارس</title>
</head>
<body>
<h1>
موتور جست و جوی فارس
</h1>
<form action="{{ url_for('index') }}" method="POST">
<h4>
عبارت خود را برای جست و جو وارد کنید
</h4>
<label>
<input type="text" name="query"/>
</label><br>
<input type="submit" name="submit" value="جست و جو" class="mt-1">
</form>
<table id="results" class="table table-striped table-hover ms-1 me-1">
<thead class="table-light">
<tr>
<th scope="row" style="font-family: 'B Titr',monospace">عنوان</th>
<th scope="row" style="font-family: 'B Titr',monospace">گزیده</th>
<th scope="row" style="font-family: 'B Titr',monospace">آدرس</th>
</tr>
</thead>
<tbody>
{% for row in data %}
<tr class="text-light">
<td class="ellipsis">{{ row[1] }}</td>
<td class="content">{{ row[2] }}</td>
<td class="ellipsis">{{ row[3] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>