1
0

index.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  5. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
  6. <title>Atelier web WCS</title>
  7. <!-- CSS -->
  8. <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  9. <link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
  10. <link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
  11. <link href="css/prism.css" type="text/css" rel="stylesheet" media="screen,projection"/>
  12. <style>
  13. html {
  14. height: 100%;
  15. }
  16. body {
  17. min-height: 100%;
  18. overflow: hidden;
  19. }
  20. footer {
  21. position: absolute;
  22. bottom: 0;
  23. width: 50%;
  24. }
  25. .col-1-2 {
  26. width: 50%;
  27. position: absolute;
  28. top: 0;
  29. }
  30. .col-1-2:first-child {
  31. border-right: 1px solid #ddd;
  32. bottom: 50px;
  33. }
  34. .col-1-2:last-child {
  35. left: 50%;
  36. bottom: 0;
  37. }
  38. #logo-container img {
  39. margin-top: 12px;
  40. max-height: 40px;
  41. }
  42. .page-footer .footer-copyright img {
  43. max-height: 30px;
  44. }
  45. #root {
  46. padding: 30px;
  47. }
  48. .nav-wrapper,
  49. .page-footer .footer-copyright {
  50. padding: 0 30px;
  51. }
  52. .pagination-wrapper {
  53. position: absolute;
  54. bottom: 10px;
  55. left: 0;
  56. width: 100%;
  57. text-align: center;
  58. }
  59. .pagination {
  60. display: inline-block;
  61. }
  62. .breadcrumb::before {
  63. color: #888;
  64. margin-top: -4px;
  65. }
  66. </style>
  67. </head>
  68. <body>
  69. <div class="main">
  70. <div class="col-1-2" style="overflow-y: scroll">
  71. <nav class="light-blue lighten-1" role="navigation">
  72. <div class="nav-wrapper"><a id="logo-container" href="" class="brand-logo">
  73. <img src="img/logo-wcs.png" alt="logo WCS" />
  74. <img src="img/logo-js.png" alt="logo JS" />
  75. </a>
  76. <ul class="right hide-on-med-and-down">
  77. <li><a href="#">Navbar Link</a></li>
  78. </ul>
  79. <ul id="nav-mobile" class="side-nav">
  80. <li><a href="#">Navbar Link</a></li>
  81. </ul>
  82. <a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
  83. </div>
  84. </nav>
  85. <div id="root"></div>
  86. </div>
  87. <div class="col-1-2">
  88. <iframe
  89. id="iframe"
  90. src="empty.html"
  91. frameborder="0"
  92. marginheight="0"
  93. marginwidth="0"
  94. height="100%" width="100%"
  95. style="overflow:hidden;width:100%;height:100%;"></iframe>
  96. </div>
  97. </div>
  98. <footer class="page-footer black" style="padding-top: 0">
  99. <div class="footer-copyright">
  100. Fait avec&nbsp;
  101. <a href="http://materializecss.com"><img src="img/logo-materializecss.png" alt="logo MaterializeCSS" /></a>&nbsp;
  102. et&nbsp;<a href="https://reactjs.org/"><img src="img/logo-react.png" alt="logo React" /></a>&nbsp;&mdash;
  103. Hébergé sur Gogs&nbsp;<a href="https://git.hubbros.fr/bh/react-web-tutorial"><img src="img/logo-gogs.png" alt="logo Gogs" /></a>
  104. </div>
  105. </footer>
  106. <!-- Scripts-->
  107. <script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
  108. <script src="js/materialize.js"></script>
  109. <script src="js/init.js"></script>
  110. <script src="js/prism.js"></script>
  111. <script src="js/build/bundle.react.js"></script>
  112. <script>
  113. </script>
  114. </body>
  115. </html>