#{extends 'main.html' /} #{set title:"WitPress Blog for ${user.firstName} ${user.lastName}" /}
#{include 'nav/open.html' /}
  • ${user.firstName} ${user.lastName}'s Blog
  • Back to Public Blogs
  • About
  • Contact
  • #{include 'nav/close.html' /}
    #{list items:reversePosts, as:'post'}

    ${post.title}

    ${post.content}
    #{if loggedInUser != null}
    Comments:
    #{list items:post.comments, as:'comment'}

    ${comment.content}:

    #{/list}
    #{/if} #{else} #{if post.comments.size() > 0}
    Comments:
    #{list items:post.comments, as:'comment'}

    ${comment.content}:

    #{/list}
    #{/if} #{/else} #{/list}