| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
- <title>Atelier web WCS</title>
- <!-- CSS -->
- <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
- <link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
- <link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
- <link href="css/prism.css" type="text/css" rel="stylesheet" media="screen,projection"/>
- <style>
- html {
- height: 100%;
- }
- body {
- min-height: 100%;
- overflow: hidden;
- }
- footer {
- position: absolute;
- bottom: 0;
- width: 50%;
- }
- .col-1-2 {
- width: 50%;
- position: absolute;
- top: 0;
- }
- .col-1-2:first-child {
- border-right: 1px solid #ddd;
- bottom: 50px;
- }
- .col-1-2:last-child {
- left: 50%;
- bottom: 0;
- }
- #logo-container img {
- margin-top: 12px;
- max-height: 40px;
- }
- .page-footer .footer-copyright img {
- max-height: 30px;
- }
- #root {
- padding: 30px;
- }
- .nav-wrapper,
- .page-footer .footer-copyright {
- padding: 0 30px;
- }
- .pagination-wrapper {
- position: absolute;
- bottom: 10px;
- left: 0;
- width: 100%;
- text-align: center;
- }
- .pagination {
- display: inline-block;
- }
- .breadcrumb::before {
- color: #888;
- margin-top: -4px;
- }
- </style>
- </head>
- <body>
- <div class="main">
- <div class="col-1-2" style="overflow-y: scroll">
- <nav class="light-blue lighten-1" role="navigation">
- <div class="nav-wrapper"><a id="logo-container" href="" class="brand-logo">
- <img src="img/logo-wcs.png" alt="logo WCS" />
- <img src="img/logo-js.png" alt="logo JS" />
- </a>
- <ul class="right hide-on-med-and-down">
- <li><a href="#">Navbar Link</a></li>
- </ul>
- <ul id="nav-mobile" class="side-nav">
- <li><a href="#">Navbar Link</a></li>
- </ul>
- <a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
- </div>
- </nav>
- <div id="root"></div>
- </div>
- <div class="col-1-2">
- <iframe
- id="iframe"
- src="empty.html"
- frameborder="0"
- marginheight="0"
- marginwidth="0"
- height="100%" width="100%"
- style="overflow:hidden;width:100%;height:100%;"></iframe>
- </div>
- </div>
- <footer class="page-footer black" style="padding-top: 0">
- <div class="footer-copyright">
- Fait avec
- <a href="http://materializecss.com"><img src="img/logo-materializecss.png" alt="logo MaterializeCSS" /></a>
- et <a href="https://reactjs.org/"><img src="img/logo-react.png" alt="logo React" /></a> —
- Hébergé sur Gogs <a href="https://git.hubbros.fr/bh/react-web-tutorial"><img src="img/logo-gogs.png" alt="logo Gogs" /></a>
- </div>
- </footer>
- <!-- Scripts-->
- <script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
- <script src="js/materialize.js"></script>
- <script src="js/init.js"></script>
- <script src="js/prism.js"></script>
- <script src="js/build/bundle.react.js"></script>
- <script>
- </script>
- </body>
- </html>
|