base.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>Phosic - easily join mp3 and a picture</title>
  8. <!-- Meta -->
  9. <meta name="description" content="Use Phosic to create video from MP3 and a picture for free.">
  10. <meta property="og:title" content="Phosic">
  11. <meta property="og:type" content="website">
  12. <meta property="og:url" content="https://phosic.com">
  13. <meta property="og:description" content="Need a website to create a video from your favourite MP3 and that pretty picture? Search no more, Phosic.com is it! Create as many videos as you want for free!">
  14. <!-- Bootstrap -->
  15. <link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
  16. <link href="{{ url_for('static', filename='css/bootstrap-theme.min.css') }}" rel="stylesheet">
  17. <link href="{{ url_for('static', filename='css/narrow.css') }}" rel="stylesheet">
  18. <!-- Favicon -->
  19. <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
  20. <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  21. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  22. <!--[if lt IE 9]>
  23. <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
  24. <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
  25. <![endif]-->
  26. </head>
  27. <body>
  28. <div class="container">
  29. {% include "header.html" %}
  30. {% block main %}{% endblock %}
  31. {% include "footer.html" %}
  32. </div>
  33. <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  34. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
  35. <!-- Include all compiled plugins (below), or include individual files as needed -->
  36. <script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script>
  37. <!-- Additional JavaScript libraries and plugins... -->
  38. {% block js %}{% endblock %}
  39. </body>
  40. </html>