File: list_blogs.html

package info (click to toggle)
python-gdata 2.0.17%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 26,080 kB
  • sloc: python: 73,579; ansic: 150; sh: 33; makefile: 11
file content (15 lines) | stat: -rw-r--r-- 449 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
  <head>
    <title>List of Your Blogs</title>
  </head>
  <body>
    <p>Here are the blogs you can post on. Click a link to bring up a blog post form to add a new post to the blog.</p>
    <ul>
      {% for entry in feed.entry %}
        <li><a href="/write_post?id={{ entry.get_blog_id }}">{{ entry.title.text }}</a></li>
      {% endfor %}
    </ul>
    <p>Done? <a href="{{ sign_out }}">Sign Out</a></p>
  </body>
</html>