wangzhibo
2022-03-24 d4c2d3ef0336742f8c40ff7f33507a84a315543d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>最新图片</title>
    <style>
        div.wrapper {
            border: 0px solid black;
            height: 250px;
            width: 550px;
            background: white;
            margin: auto;
            text-align:center
        }
    </style>
</head>
 
<body>
    <div class="wrapper">
        <h4>{{context.app_id}}::{{context.image_time}}</h4>
       <div class="form-div">
            <img src="{{url_for('static', filename=context.image_path)}}" width="640px" height="480px"/>
        </div>
    </div>
</body>
</html>