personal-website/templates/personal-properties/app.tmpl

57 lines
1.5 KiB
Cheetah
Raw Normal View History

2023-03-17 16:13:41 +00:00
{{ define "personal-properties/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">
About me
</div>
<div id="Drag" class="VisualDragArea"></div>
</div>
2023-05-07 01:24:46 +00:00
<div class="ContentBorder AdjectiveElement">
<div class="PersPropsContent">
<div class="PropsView">
<div class="PropertiesList">
<div class="ShortBio">
2023-05-07 12:14:42 +00:00
<img class="Image" src="/system/libs/img/get?path={{ .headerProps.IconPath }}" alt="My Photo" >
2023-05-07 01:24:46 +00:00
<div class="Text">
<div class="Name">{{ .headerProps.Name }}</div>
<div>{{ .headerProps.Info1 }}</div>
<div>{{ .headerProps.Info2 }}</div>
</div>
</div>
{{ range $propIsland := .allprops }}
<div class="Island">
<div class="Title">
2023-04-30 11:32:35 +00:00
{{$propIsland.Header}}:
</div>
2023-05-07 01:24:46 +00:00
<div class="Content">
2023-04-30 11:32:35 +00:00
{{range $prop := $propIsland.Props}}
2023-05-07 01:24:46 +00:00
<div class="Row">
<div class="Key">
2023-04-30 11:32:35 +00:00
{{$prop.Key}}:
{{ range $value := $prop.KeyComments }}
2023-05-07 01:24:46 +00:00
<div class="KeyComment">
2023-04-30 11:32:35 +00:00
{{ $value }}
2023-03-20 11:20:37 +00:00
</div>
2023-04-30 11:32:35 +00:00
{{ end }}
</div>
2023-05-07 01:24:46 +00:00
<div class="Values">
2023-04-30 11:32:35 +00:00
{{ range $value := $prop.Values }}
2023-05-07 01:24:46 +00:00
<div class="Value">
2023-04-30 11:32:35 +00:00
{{ $value }}
2023-03-20 11:20:37 +00:00
</div>
2023-04-30 11:32:35 +00:00
{{ end }}
2023-03-20 11:20:37 +00:00
</div>
</div>
2023-04-30 11:32:35 +00:00
{{ end }}
2023-03-20 11:20:37 +00:00
</div>
2023-04-30 11:32:35 +00:00
</div>
{{ end }}
2023-05-07 01:24:46 +00:00
</div>
2023-03-20 11:20:37 +00:00
</div>
2023-05-07 01:24:46 +00:00
{{template "wde-widgets/scrollbar.tmpl" .}}
2023-03-18 02:16:32 +00:00
</div>
2023-04-30 11:32:35 +00:00
</div>
2023-03-18 00:34:56 +00:00
{{ end }}