From 5b94b4eeee3d2ac5007da4b3d2a7bb0c8dda942a Mon Sep 17 00:00:00 2001 From: Lincoln de Sousa Date: Fri, 27 Jul 2007 17:45:13 -0300 Subject: [PATCH] =?utf8?q?adicionando=20view=20de=20not=C3=ADcias=20e=20ad?= =?utf8?q?icionando=20listagem=20de=20menu?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- templates/noticia.html | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 templates/noticia.html diff --git a/templates/noticia.html b/templates/noticia.html new file mode 100644 index 0000000..8f42426 --- /dev/null +++ b/templates/noticia.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} +{% block content %} + +

{{ noticia.titulo }}

+{{ noticia.data_criacao }} (por {{ noticia.autor }}) + +

{{ noticia.chamada }}

+

{{ noticia.corpo }}

+ +{% endblock %} -- 2.20.1