index.html 1.52 KB
<!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>