<!DOCTYPE html>
<html lang="en">
<head>
    <title>Full Top 100 - TopSearchesWorld.com</title>
    <link rel="stylesheet" href="/static/style.css">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
    <img src="/static/mike.png" alt="Mike" class="header-img">
    <div class="container">
        <h1>Full Top 100 Searches</h1>
        <div class="row">
            <div class="col-md-8">
                <table class="table">
                    <tr><th>Rank</th><th>Question</th><th>Searches</th><th>Bite</th></tr>
                    {% for row in data %}
                    <tr><td>{{ row[1] }}</td><td><a href="/question/{{ row[0] }}">{{ row[2] }}</a></td><td>{{ row[3] }}</td><td>{{ row[4] }}</td></tr>
                    {% endfor %}
                </table>
            </div>
            <div class="col-md-4 sidebar">
                <h3>Random Questions</h3>
                <ul>
                    {% for sid, sq in sidebar %}
                    <li><a href="/question/{{ sid }}">{{ sq }}</a></li>
                    {% endfor %}
                </ul>
            </div>
        </div>
        <div class="ad">Sponsored: [Ad here]</div>
    </div>
</body>
</html>