You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
540 B
Smarty

% rebase('frame.tpl')
% import random
<div class="content-grid">
<h1>{{gallery[0]}}</h1>
<div class="gallery">
% if len(gallery) >=2:
% for g in gallery[1]:
% i = g[0].index('.')
% thumb = g[0][:i] + 'thumb' + g[0][i:]
<a target="_blank" href="/static/img/char/{{gallery[0]}}/{{g[0]}}">
<img src="/static/img/char/{{gallery[0]}}/{{thumb}}" alt="Image: {{g[1]}}">
</a>
% end
% end
</div>
<div class="center">
{{!profile}}
</div>
</div>