Detail:
${_post.content.nl2br()}
程序以及基本可用了,需要继续完善页面
1.创建页面模板
创建文件 app/views/tags/display.html
*{ Display a post in one of these modes: 'full', 'home' or 'teaser' }*
修改index.html
#{extends 'main.html' /}
#{set title:'Home' /}
#{if frontPost}
#{display post:frontPost, as:'home' /}
#{if olderPosts.size()}
2.修改Layout views\main.html
renderArgs.put("blogBaseline", Play.configuration.getProperty("blog.baseline"));
}추가 blog.title blog.baseline 렌더링
4. 구성 파일 confapplication.conf 수정
# ~~~~ ~
blog.title=또 다른 블로그blog.baseline=아무것도 쓰지 않겠습니다
5. 페이지 스타일 추가
CSS: http ://play-framework.herokuapp.com/zh/files/main.css
${_post.comments.size() ?: 'no'}
comment${_post.comments.size().pluralize()}
#{list items:_post.comments, as:'comment'}
by ${comment.author},
${comment.postedAt.format('dd MMM yy')}
${comment.content.escape().nl2br()}
#{/list}