We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5684740 commit ee2592eCopy full SHA for ee2592e
1 file changed
python_appengine/topics/index.html
@@ -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