1234567891011121314151617181920212223242526272829303132 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>Triage dashboard</title>
- <style>
- * { font-family: sans-serif; }
- code { font-family: monospace; }
- h1 { font-size: 22px; }
- h2 { font-size: 18px; }
- h3 { font-size: 16px; }
- h4 { font-size: 14px; }
- p, ul { font-size: 15px; line-height: 150%; }
- code { background-color: #efefef; }
- div.wrapper { max-width: 60em; margin-left: auto; margin-right: auto; }
- .repos { font-size: 18px; line-height: 180%; }
- </style>
- </head>
- <body>
- <div class="wrapper">
- <h1>Triage dashboards</h1>
- <h2>Repositories</h2>
- <ul class="repos">
- <li><a href="triage/rust-lang/rust-clippy">clippy</a></li>
- <li><a href="triage/rust-lang/rust">rust</a></li>
- </ul>
- </div>
- </body>
- </html>
|