LovnishVerma's picture
Update templates/result.html
089de8d verified
<html>
<head>
<!-- Favicons -->
<link rel="icon" type="image/png" sizes="48x48" href="https://lovnishverma.in/favicon-48.png">
<link rel="icon" type="image/png" sizes="192x192" href="https://lovnishverma.in/android-chrome-192x192.png">
<link rel="apple-touch-icon" href="https://lovnishverma.in/apple-touch-icon.png">
<link rel="shortcut icon" href="https://lovnishverma.in/favicon.ico">
<title>Scraped Results</title>
</head>
<body>
<h1>Scraped Results</h1>
{% if error %}
<p style="color: red;">{{ error }}</p>
{% else %}
<h2>Title: {{ title }}</h2>
<h3>Content from: <a href="{{ url }}" target="_blank">{{ url }}</a></h3>
<h3>Scraped Elements for Tag: &lt;{{ tag }}&gt;</h3>
<ul>
{% for element in elements %}
<li>{{ element }}</li>
{% else %}
<li>No content found for tag &lt;{{ tag }}&gt;.</li>
{% endfor %}
</ul>
{% endif %}
<br>
<a href="/">Go Back</a>
</body>
</html>