File: list_blogs.html

package info (click to toggle)
python-gdata 2.0.18%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 8,460 kB
  • ctags: 17,143
  • sloc: python: 70,779; ansic: 150; makefile: 27; sh: 3
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>