Skip to content

Instantly share code, notes, and snippets.

@marcusoftnet
Created May 7, 2014 13:00
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 marcusoftnet/4fcadcd809e26a78bd5d to your computer and use it in GitHub Desktop.
Save marcusoftnet/4fcadcd809e26a78bd5d to your computer and use it in GitHub Desktop.
KoaMongoBlog list.html
{% extends 'layout.html' %}
{% block title %}Posts{% endblock %}
{% block content %}
<h1>Posts</h1>
<p>You have <strong>{{ posts.length }}</strong> posts!</p>
<p><a href="/post/new">Create a Post</a></p>
<ul id="posts">
{% for post in posts %}
<li>
<h2>{{ post.title }}</h2>
<p><a href="/post/{{ post._id.toString() }}">Read post</a></p>
</li>
{% endfor %}
</ul>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment