Skip to content

Commit 76daecb

Browse files
"Added sample: python_appengine/search/index.html"
1 parent 19d760d commit 76daecb

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

python_appengine/search/index.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
{% autoescape true %}
3+
<html>
4+
<body>
5+
<p>Videos: </p>
6+
{% for video in videos %}
7+
{{ video }}<br>
8+
{% endfor %}
9+
10+
<p>Channels:</p>
11+
{% for channel in channels %}
12+
{{ channel }} <br>
13+
{% endfor %}
14+
15+
<p>Playlists:</p>
16+
{% for playlist in playlists %}
17+
{{ playlist }} <br>
18+
{% endfor %}
19+
</body>
20+
</html>
21+
{% endautoescape %}

0 commit comments

Comments
 (0)