-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (53 loc) · 1.82 KB
/
index.html
File metadata and controls
62 lines (53 loc) · 1.82 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport">
<title>Twitter Likes | Home</title>
<link href="https://use.fontawesome.com/releases/v5.11.2/css/all.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet">
<!-- Bootstrap core CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.1/css/mdb.min.css" rel="stylesheet">
<style>
html {
background-color: rgb(21, 32, 43);
}
body {
max-width: 840px;
/* center! */
display: block;
margin-left: auto;
margin-right: auto;
padding: 20px;
overflow: scroll;
text-overflow: ellipsis;
}
img.media {
border: 1px solid black;
max-width: 100%;
max-height: 800px;
margin: auto; /* center */
}
a.date {
font-style: italic;
font-size: small;
}
</style>
</head>
<body>
{% for like in likes %}
<img src="{{ like['profile_image_url_https'] }}" />
<a href="https://twitter.com/{{ like['screen_name'] }}">@{{ like['screen_name'] }}</a> - {{ like['name'] }}
<br />
<a href="https://twitter.com/{{ like['screen_name'] }}/status/{{ like['id'] }}" class="date">{{ like['created_at'] }}</a>
<br />
{{ like['text'] }}
{% for media in like['medias'] %}
<br /><img src="{{ media }}" class="media" />
{% endfor %}
<hr />
{% endfor %}
</body>
</html>