16 lines
386 B
HTML
16 lines
386 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Blazor standalone</title>
|
|
<link href="/css/bootstrap/bootstrap.min.css" rel="stylesheet" />
|
|
<link href="/css/site.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<app>Loading...</app>
|
|
|
|
<script src="/css/bootstrap/bootstrap-native.min.js"></script>
|
|
<script type="blazor-boot"></script>
|
|
</body>
|
|
</html>
|