Mercurial
diff hg-web/src/index.html @ 195:f8f5004a920a
Merging back hg-web-tip
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Tue, 27 Jan 2026 06:51:44 -0800 |
| parents | 9f4429c49733 |
| children |
line wrap: on
line diff
--- a/hg-web/src/index.html Sat Jan 24 06:37:43 2026 -0800 +++ b/hg-web/src/index.html Tue Jan 27 06:51:44 2026 -0800 @@ -1,39 +1,23 @@ <!DOCTYPE html> <html lang="en"> -<head> + <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Zenbu Repository</title> + <link rel="stylesheet" href="/index.css"> <link rel="stylesheet" href="/base.css"> - <link rel="stylesheet" href="/index.css"> -</head> -<body> - <main> - <div class="header"> - <h1>Zenbu Repository</h1> - <p class="description">Browse and clone this mercurial repository</p> - </div> - <div class="clone-info"> - <strong>Clone this repository:</strong><br> - <code>hg clone http://zenbu.babocoder.com</code> - </div> - - <div class="breadcrumb" id="breadcrumb"></div> + <link rel="stylesheet" href="/a11y-dark.min.css" media="(prefers-color-scheme: dark)"> + <link rel="stylesheet" href="/a11y-light.min.css" media="(prefers-color-scheme: light)"> - <div class="file-list" id="fileList"></div> - - <div class="readme-section" id="readmeSection" style="display: none;"> - <h2>README</h2> - <div class="readme-content" id="readmeContent"></div> - </div> - - <div class="empty-state" id="emptyState" style="display: none;"> - <p>No files found in this directory</p> - </div> + <link rel="preload" href="/public/fonts/more-sugar.regular.otf" as="font" type="font/otf" crossorigin> + <link rel="icon" type="image/svg+xml" href="/public/epi_all_colors.svg"> + </head> + <body> + <main> + <div id="root"></div> </main> - - <script src="/markdown_to_html.js"></script> - <script src="/index.js"></script> -</body> + <script type="module" src="/page.js"></script> + <script src="/highlight.min.js"></script> + </body> </html>