view.html 515 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. {%include 'inc/header.html'%}
  5. <link href="{{static_url('css/detail.css')}}" rel="stylesheet">
  6. <style>
  7. .article img{
  8. max-width:800px;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. {%include 'inc/menu.html'%}
  14. <div class="wrapper">
  15. <div class="article">
  16. <h1>{{data['info']['name']}}</h1>
  17. {% raw data['info']['content'] %}
  18. </div>
  19. </div>
  20. {%include 'inc/footer.html'%}
  21. {%include 'inc/script.html'%}
  22. </body>
  23. </html>