index.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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-wrapper .breadcrumb i {
  63. font-size: 22px;
  64. }
  65. .breadcrumb {
  66. font-size: 16px;
  67. }
  68. a.breadcrumb::before,
  69. span.breadcrumb::before {
  70. color: #888;
  71. margin: -4px 2px 0 2px;
  72. font-size: 22px;
  73. }
  74. .page li {
  75. margin-bottom: 6px;
  76. }
  77. .page blockquote {
  78. border-left: 5px solid #ffb74d;
  79. }
  80. </style>
  81. </head>
  82. <body>
  83. <div class="main">
  84. <div class="col-1-2" style="overflow-y: scroll">
  85. <nav class="light-blue lighten-1" role="navigation">
  86. <div class="nav-wrapper"><a id="logo-container" href="" class="brand-logo">
  87. <img src="img/logo-wcs.png" alt="logo WCS" />
  88. <img src="img/logo-js.png" alt="logo JS" />
  89. </a>
  90. <ul class="right hide-on-med-and-down">
  91. <li><a href="#">Navbar Link</a></li>
  92. </ul>
  93. <ul id="nav-mobile" class="side-nav">
  94. <li><a href="#">Navbar Link</a></li>
  95. </ul>
  96. <a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
  97. </div>
  98. </nav>
  99. <div id="root"></div>
  100. </div>
  101. <div class="col-1-2">
  102. <iframe
  103. id="iframe"
  104. src="empty.html"
  105. frameborder="0"
  106. marginheight="0"
  107. marginwidth="0"
  108. height="100%" width="100%"
  109. style="overflow:hidden;width:100%;height:100%;"></iframe>
  110. </div>
  111. </div>
  112. <footer class="page-footer black" style="padding-top: 0">
  113. <div class="footer-copyright">
  114. Fait avec&nbsp;
  115. <a href="http://materializecss.com"><img src="img/logo-materializecss.png" alt="logo MaterializeCSS" /></a>&nbsp;
  116. et&nbsp;<a href="https://reactjs.org/"><img src="img/logo-react.png" alt="logo React" /></a>&nbsp;&mdash;
  117. 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>
  118. </div>
  119. </footer>
  120. <!-- Scripts-->
  121. <script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
  122. <script src="js/materialize.js"></script>
  123. <script src="js/init.js"></script>
  124. <script src="js/prism.js"></script>
  125. <script src="js/dist/bundle.react.js"></script>
  126. <script>
  127. </script>
  128. </body>
  129. </html>