Skip to content

Commit ee2592e

Browse files
"Added sample: python_appengine/topics/index.html"
1 parent 5684740 commit ee2592e

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

python_appengine/topics/index.html

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: </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)