|
7 | 7 | <meta name="keywords" content="Generalization, Manipulation">
|
8 | 8 | <meta name="viewport" content="width=device-width, initial-scale=1">
|
9 | 9 | <title>Colosseum</title>
|
| 10 | + <style> |
| 11 | + .video-grid { |
| 12 | + display: grid; |
| 13 | + grid-template-columns: repeat(3, 1fr); /* Creates a 3-column grid */ |
| 14 | + gap: 10px; /* Adds some space between the videos */ |
| 15 | + max-width: 1000px; /* Adjust based on your preference */ |
| 16 | + margin: auto; /* Center the grid horizontally */ |
| 17 | + } |
| 18 | + .video-grid video { |
| 19 | + width: 100%; /* Makes video fill the cell */ |
| 20 | + aspect-ratio: 16 / 9; /* Keeps the aspect ratio of videos */ |
| 21 | + } |
| 22 | + .video-section-header { |
| 23 | + text-align: center; |
| 24 | + margin-top: 20px; |
| 25 | + margin-bottom: 20px; |
| 26 | + } |
| 27 | +</style> |
10 | 28 |
|
11 | 29 | <script>
|
12 | 30 | function init() {
|
|
58 | 76 | </head>
|
59 | 77 | <body onload="init(); updateSingleVideo(); ">
|
60 | 78 |
|
61 |
| - |
| 79 | +<nav class="navbar" role="navigation" aria-label="main navigation"> |
| 80 | + <div class="navbar-brand"> |
| 81 | + <a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false"> |
| 82 | + <span aria-hidden="true"></span> |
| 83 | + <span aria-hidden="true"></span> |
| 84 | + <span aria-hidden="true"></span> |
| 85 | + </a> |
| 86 | + </div> |
| 87 | + <div class="navbar-menu"> |
| 88 | + <div class="navbar-start" style="flex-grow: 1; justify-content: center;"> |
| 89 | + <div class="navbar-item has-dropdown is-hoverable"> |
| 90 | + <a class="navbar-link"> |
| 91 | + More Research |
| 92 | + </a> |
| 93 | + <div class="navbar-dropdown"> |
| 94 | + <a class="navbar-item" target="_blank" href="https://progprompt.github.io/"> |
| 95 | + ProgPrompt |
| 96 | + </a> |
| 97 | + <a class="navbar-item" target="_blank" href="http://ar2d2.site/"> |
| 98 | + AR2-D2 |
| 99 | + </a> |
| 100 | + <a class="navbar-item" target="_blank" href="https://newtonreasoning.github.io/"> |
| 101 | + NEWTON |
| 102 | + </a> |
| 103 | + </div> |
| 104 | + </div> |
| 105 | + </div> |
| 106 | + |
| 107 | + </div> |
| 108 | +</nav> |
62 | 109 |
|
63 | 110 | <section class="hero">
|
64 | 111 | <div class="hero-body">
|
@@ -593,34 +640,6 @@ <h3 class="title is-5">Failure cases for MVP</h3>
|
593 | 640 | </div>
|
594 | 641 | </section>
|
595 | 642 |
|
596 |
| - |
597 |
| -<!DOCTYPE html> |
598 |
| -<html lang="en"> |
599 |
| -<head> |
600 |
| -<meta charset="UTF-8"> |
601 |
| -<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
602 |
| -<title>3x3 Video Grid</title> |
603 |
| -<style> |
604 |
| - .video-grid { |
605 |
| - display: grid; |
606 |
| - grid-template-columns: repeat(3, 1fr); /* Creates a 3-column grid */ |
607 |
| - gap: 10px; /* Adds some space between the videos */ |
608 |
| - max-width: 1000px; /* Adjust based on your preference */ |
609 |
| - margin: auto; /* Center the grid horizontally */ |
610 |
| - } |
611 |
| - .video-grid video { |
612 |
| - width: 100%; /* Makes video fill the cell */ |
613 |
| - aspect-ratio: 16 / 9; /* Keeps the aspect ratio of videos */ |
614 |
| - } |
615 |
| - .video-section-header { |
616 |
| - text-align: center; |
617 |
| - margin-top: 20px; |
618 |
| - margin-bottom: 20px; |
619 |
| - } |
620 |
| -</style> |
621 |
| -</head> |
622 |
| -<body> |
623 |
| - |
624 | 643 | <section class="video-section">
|
625 | 644 | <div style="text-align: center;">
|
626 | 645 | <h2>Reproducibility in real-world experiments</h2>
|
@@ -825,7 +844,20 @@ <h1 class="video-section-header"><span class="dperact">Scoop_with_spatula</span>
|
825 | 844 | </video>
|
826 | 845 | </div>
|
827 | 846 | </section>
|
828 |
| - |
| 847 | + |
| 848 | +<footer class="footer"> |
| 849 | + <div class="container"> |
| 850 | + <div class="columns is-centered"> |
| 851 | + <div class="column"> |
| 852 | + <div class="content has-text-centered"> |
| 853 | + <p> |
| 854 | + Website template borrowed from <a href="https://github.com/nerfies/nerfies.github.io">NeRFies</a> made by the amazing <a href="https://keunhong.com/">Keunhong Park</a>. |
| 855 | + </p> |
| 856 | + </div> |
| 857 | + </div> |
| 858 | + </div> |
| 859 | + </div> |
| 860 | +</footer> |
829 | 861 |
|
830 | 862 | </body>
|
831 | 863 | </html>
|
0 commit comments