mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 19:02:51 +00:00
29 lines
423 B
HTML
29 lines
423 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
.breadcrumbs {
|
|
margin-top : 10px;
|
|
}
|
|
p,pre,br{
|
|
margin-top:0px;
|
|
margin-bottom:0px;
|
|
}
|
|
ul{
|
|
margin-top:12px;margin-bottom:12px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% for entity in entities %}
|
|
<div>
|
|
{% if entity.isBook %}
|
|
{% include "booktemplate.html" %}
|
|
{% else %}
|
|
{% if entity.isPage %}
|
|
{% include "pagetemplate.html" %}
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</body>
|
|
</html>
|