Skip to content

Commit 875a9a1

Browse files
"Added sample: python_appengine/user_uploads/index.html"
1 parent fe97ba6 commit 875a9a1

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<body>
4+
<p>Videos uploaded by {{ channel_name }}: </p>
5+
{% for video in videos %}
6+
<img src="{{ video.snippet.thumbnails.default.url }}" style="padding-right: 15px">
7+
<div style="vertical-align:top; display: inline-block">
8+
<strong><a href="https://www.youtube.com/watch?v={{ video.id.videoId }}">{{ video.snippet.title }}</a></strong>
9+
</div><br/><br/>
10+
{% endfor %}
11+
</body>
12+
</html>

0 commit comments

Comments
 (0)