<!DOCTYPE html>
<html>
<head>
    {%include 'inc/header.html'%}
    <link href="{{static_url('css/list.css')}}" rel="stylesheet"></head>
<body>
    {%include 'inc/menu.html'%}
    <div class="wrapper">
        {% for v in data['list'] %}
        <a href="{{v['link']}}" class="card">
            <img src="{{v['pic']}}" width="940" height="230">
            <p>{{v['name']}}</p>
        </a>
        {% end %}
    </div>
    {%include 'inc/footer.html'%}
    {%include 'inc/script.html'%}
    </body>
</html>