You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
624 B
22 lines
624 B
5 years ago
|
{{define "body"}}
|
||
|
<section id="info-box" class="hidden">
|
||
|
<div id="bg-box">
|
||
5 years ago
|
<div id="btn-close">×</div>
|
||
|
<div id="zoom"></div>
|
||
|
<table id="img-description"></table>
|
||
5 years ago
|
</div>
|
||
|
</section>
|
||
5 years ago
|
<section id="welcome">
|
||
4 years ago
|
<img id="avatar" alt="" src="/static/logo/avatar.svg"/>
|
||
5 years ago
|
</section>
|
||
5 years ago
|
<section id="exhibition">
|
||
5 years ago
|
{{range $key, $val := .Pics}}
|
||
5 years ago
|
<div class="thumb-box">
|
||
4 years ago
|
<img alt="{{$val.Name}}" src="/static/thumbs/t_{{$val.Name}}.jpg" data-img="{{$val.Name}}" class="thumb" />
|
||
5 years ago
|
</div>
|
||
5 years ago
|
{{end}}
|
||
|
</section>
|
||
5 years ago
|
<div class="arrow">‹</div>
|
||
|
<div class="arrow">›</div>
|
||
5 years ago
|
{{end}}
|