template.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=yes"/>
  6. <meta name="apple-mobile-web-app-capable" content="yes"/>
  7. <meta name="apple-mobile-web-app-status-bar-style" content="black"/>
  8. <meta name="format-detection" content="telephone=no"/>
  9. <meta name="format-detection" content="email=no"/>
  10. <link href="articleShared.css" rel="stylesheet"/>
  11. <script type="text/javascript" src="shared.js"></script>
  12. <script type="text/javascript" src="jquerynew.js"></script>
  13. <!-- This line is all you need to enable HTML5 video and audio tags in all major browsers! -->
  14. <script src="html5media/api/html5media.min.js"></script>
  15. <!-- This line enables all the other HTML5 elements in IE. It's not necessary if you just want to play video. -->
  16. <!--[if lt IE 9]>
  17. <script src="html5media/api/html5shiv.min.js"></script><![endif]-->
  18. <script type="text/javascript">
  19. var _gaq = _gaq || [];
  20. _gaq.push(['_setAccount', 'UA-24462944-1']);
  21. _gaq.push(['_trackPageview']);
  22. (function () {
  23. var ga = document.createElement('script');
  24. ga.type = 'text/javascript';
  25. ga.async = true;
  26. //ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  27. var s = document.getElementsByTagName('script')[0];
  28. s.parentNode.insertBefore(ga, s);
  29. })();
  30. </script>
  31. <style>
  32. video {
  33. max-width: 100%;
  34. height: auto;
  35. }
  36. audio {
  37. max-width: 100%;
  38. height: auto;
  39. }
  40. img {
  41. display: block;
  42. margin: 0 auto;
  43. max-width: 98%;
  44. }
  45. </style>
  46. </head>
  47. <body>
  48. <div class="forum-main">
  49. <div class="post-main">
  50. <div class="host-content"></div>
  51. </div>
  52. <div class="post-main">
  53. <div class="host-content">
  54. ###body###
  55. </div>
  56. </div>
  57. </div>
  58. </body>
  59. </html>