Skip to content

Instantly share code, notes, and snippets.

@vihar
Created May 24, 2018 07:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vihar/372783356f04e12b68cf1ef7ab014def to your computer and use it in GitHub Desktop.
Save vihar/372783356f04e12b68cf1ef7ab014def to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Posts</title>
</head>
<body>
<h1>Posts</h1>
{% for i in posts %}
<h1>Post Title : {{ i.title }}</h1>
<p>Description : {{ i.post_text }}</p>
<hr>
{% endfor %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment