-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 981 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Reddit Flair Detector</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.css">
<link rel="stylesheet" href="/static/styles/style.css">
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1 style="text-align: center;">Reddit Flair Detector</h1>
<p style="text-align: center;">This application tries to predict the flair (category) of a post on the subreddit <a href="https://www.reddit.com/r/india/">india</a></p>
{% block form %}{% endblock %}
{% block ans %}{% endblock %}
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/static/js/app.js"></script>
</body>
</html>