1234567891011121314151617181920212223 |
- <!DOCTYPE html>
- <html>
- <head>
- {%include 'inc/header.html'%}
- <link href="{{static_url('css/detail.css')}}" rel="stylesheet">
- <style>
- .article img{
- max-width:800px;
- }
- </style>
- </head>
- <body>
- {%include 'inc/menu.html'%}
- <div class="wrapper">
- <div class="article">
- <h1>{{data['info']['name']}}</h1>
- {% raw data['info']['content'] %}
- </div>
- </div>
- {%include 'inc/footer.html'%}
- {%include 'inc/script.html'%}
- </body>
- </html>
|