Exemplo n.º 1
0
 def article_list():
     return render_template(
         'article_list.html',
         articles=ArticleListPresenter(get_articles()).to_list())
Exemplo n.º 2
0
 def article_detail(slug):
     return render_template(
         'article_detail.html',
         article=ArticleListPresenter(get_articles()).by_slug(slug))
Exemplo n.º 3
0
 def root():
     return render_template(
         'article_detail.html',
         article=ArticleListPresenter(get_articles()).latest())