💄 Rendered 31-4 images
This commit is contained in:
parent
c7bbe9521d
commit
3dd2967dce
252 changed files with 303 additions and 0 deletions
25
data/render/31-4/views/outfit.tpl
Normal file
25
data/render/31-4/views/outfit.tpl
Normal file
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Template</title>
|
||||
<link rel="stylesheet" href="/static/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="title">{{ title }}</div>
|
||||
<div class="outfit-icon-bg-wrapper">
|
||||
<figure class="outfit-icon-bg">
|
||||
<img class="weapon-icon" src="data:image/png;base64,{{ icon }}" />
|
||||
</figure>
|
||||
</div>
|
||||
% if description:
|
||||
<div class="description">{{ description }}</div>
|
||||
%end
|
||||
<figure class="outfit-preview-wrapper">
|
||||
<img src="data:image/png;base64,{{ preview }}" />
|
||||
</figure>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
26
data/render/31-4/views/weapon.tpl
Normal file
26
data/render/31-4/views/weapon.tpl
Normal file
|
@ -0,0 +1,26 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Template</title>
|
||||
<link rel="stylesheet" href="/static/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="title">{{ title }}</div>
|
||||
<figure
|
||||
class="weapon-icon-bg"
|
||||
style="background-image: url('/static/bg/{{ stats }}.png');"
|
||||
>
|
||||
<img class="weapon-icon" src="data:image/png;base64,{{ icon }}" />
|
||||
</figure>
|
||||
% if mechanism:
|
||||
<div class="mechanism">{{ !mechanism }}</div>
|
||||
% end
|
||||
% if description:
|
||||
<div class="description">{{ description }}</div>
|
||||
%end
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue