mirror of
https://github.com/sigmasternchen/Diary
synced 2025-03-15 07:08:56 +00:00
New Lines are now supported!
This commit is contained in:
parent
dcb8be3d3e
commit
e1339550f4
2 changed files with 5 additions and 3 deletions
|
@ -85,6 +85,10 @@ a, a:active, a:visited {
|
|||
padding: 0px 0px 0px 0px;
|
||||
}
|
||||
|
||||
#listing p {
|
||||
white-space:pre-wrap;
|
||||
}
|
||||
|
||||
.error {
|
||||
padding: 5px;
|
||||
color: red;
|
||||
|
|
|
@ -26,9 +26,7 @@
|
|||
{% for e in entries %}
|
||||
<div>
|
||||
<div>{{ e.date }}</div>
|
||||
<p>
|
||||
{{ e.text }}
|
||||
</p>
|
||||
<p>{{ e.text }}</p>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue