diff options
Diffstat (limited to 'GitRepoViewer/wwwroot/index.html')
-rw-r--r-- | GitRepoViewer/wwwroot/index.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/GitRepoViewer/wwwroot/index.html b/GitRepoViewer/wwwroot/index.html new file mode 100644 index 0000000..45ff683 --- /dev/null +++ b/GitRepoViewer/wwwroot/index.html @@ -0,0 +1,32 @@ +<!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, user-scalable=no" /> + <title>GitRepoViewer</title> + <base href="/" /> + <link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" /> + <link href="css/app.css" rel="stylesheet" /> + <link rel="icon" type="image/png" href="favicon.png" /> + <link href="GitRepoViewer.styles.css" rel="stylesheet" /> +</head> + +<body> + <div id="app"> + <svg class="loading-progress"> + <circle r="40%" cx="50%" cy="50%" /> + <circle r="40%" cx="50%" cy="50%" /> + </svg> + <div class="loading-progress-text"></div> + </div> + + <div id="blazor-error-ui"> + An unhandled error has occurred. + <a href="" class="reload">Reload</a> + <a class="dismiss">🗙</a> + </div> + <script src="_framework/blazor.webassembly.js"></script> +</body> + +</html> |