46d6e17508
- Add VS Code icon - Trim dashboard to just display dedicated VS Code section - Version was getting unset during build - Add back nbin shim which I temporarily took out earlier - Update tests for log level env var changes
58 lines
1.9 KiB
HTML
58 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"
|
|
/>
|
|
<meta http-equiv="Content-Security-Policy" content="style-src 'self'; manifest-src 'self'; img-src 'self' data:;" />
|
|
<title>code-server</title>
|
|
<link rel="icon" href="{{BASE}}/static-{{COMMIT}}/src/browser/media/favicon.ico" type="image/x-icon" />
|
|
<link
|
|
rel="manifest"
|
|
href="{{BASE}}/static-{{COMMIT}}/src/browser/media/manifest.json"
|
|
crossorigin="use-credentials"
|
|
/>
|
|
<link rel="apple-touch-icon" href="{{BASE}}/static-{{COMMIT}}/src/browser/media/code-server.png" />
|
|
<link href="{{BASE}}/static-{{COMMIT}}/dist/app.css" rel="stylesheet" />
|
|
<meta id="coder-options" data-settings="{{OPTIONS}}" />
|
|
</head>
|
|
<body>
|
|
<div class="center-container">
|
|
<div class="info-blocks">
|
|
<!-- TEMP: Only VS Code for now. -->
|
|
<!-- <div class="info-block"> -->
|
|
<!-- <h2 class="header">Running Applications</h2> -->
|
|
<!-- {{APP_LIST:RUNNING}} -->
|
|
<!-- </div> -->
|
|
|
|
<div class="info-block">
|
|
<h2 class="header">Launch</h2>
|
|
<div class="block-row">
|
|
<a class="item -link" href="./vscode">
|
|
<img class="icon" src="./static-{{COMMIT}}/lib/vscode/resources/linux/code.png" />
|
|
VS Code
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="info-block">
|
|
<h2 class="header">Version</h2>
|
|
{{UPDATE:NAME}}
|
|
</div>
|
|
|
|
<!-- <div class="info-block"> -->
|
|
<!-- <h2 class="header">Editors</h2> -->
|
|
<!-- {{APP_LIST:EDITORS}} -->
|
|
<!-- </div> -->
|
|
|
|
<!-- <div class="info-block"> -->
|
|
<!-- <h2 class="header">Other</h2> -->
|
|
<!-- {{APP_LIST:OTHER}} -->
|
|
<!-- </div> -->
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|