2023-04-14 15:53:23 +00:00
|
|
|
{{ define "blog-viewer/app.tmpl" }}
|
2023-04-30 11:32:35 +00:00
|
|
|
<div class="TitleBar DragArea">
|
|
|
|
<button id="closeWindowButton" class="Button" title="Close Window"></button>
|
|
|
|
<div id="Drag" class="VisualDragArea"></div>
|
|
|
|
<div class="Lable">
|
2023-04-29 13:58:39 +00:00
|
|
|
{{.header}}
|
2023-04-14 15:53:23 +00:00
|
|
|
</div>
|
2023-04-30 11:32:35 +00:00
|
|
|
<div id="Drag" class="VisualDragArea"></div>
|
2023-04-14 15:53:23 +00:00
|
|
|
</div>
|
2023-05-04 10:46:28 +00:00
|
|
|
<div class="ContentBorder AdjectiveElement">
|
2023-04-29 14:26:07 +00:00
|
|
|
<div class="blog-viewer ScrollContent">
|
2023-04-29 13:58:39 +00:00
|
|
|
{{ range $block := .blocks }}
|
2023-04-29 14:26:07 +00:00
|
|
|
<div class="{{$block.Type}}" >
|
2023-04-29 13:58:39 +00:00
|
|
|
{{ range $data := $block.Data }}
|
2023-04-29 14:26:07 +00:00
|
|
|
<div style="font-size: inherit;">
|
2023-04-29 13:58:39 +00:00
|
|
|
{{$data}}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
2023-04-14 15:53:23 +00:00
|
|
|
</div>
|
|
|
|
{{template "wde-widgets/scrollbar.tmpl" .}}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
|