Skip to content

Commit

Permalink
deploy to github-pages branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacharyPatten committed Dec 15, 2023
0 parents commit 1e8373b
Show file tree
Hide file tree
Showing 213 changed files with 1,544 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
39 changes: 39 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Single Page Apps for GitHub Pages</title>
<script type="text/javascript">
// Single Page Apps for GitHub Pages
// https://github.com/rafrex/spa-github-pages
// Copyright (c) 2016 Rafael Pedicini, licensed under the MIT License
// ----------------------------------------------------------------------
// This script takes the current url and converts the path and query
// string into just a query string, and then redirects the browser
// to the new url with only a query string and hash fragment,
// e.g. http://www.foo.tld/one/two?a=b&c=d#qwe, becomes
// http://www.foo.tld/dotnet-console-games/?p=/one/two&q=a=b~and~c=d#qwe
// Note: this 404.html file must be at least 512 bytes for it to work
// with Internet Explorer (it is currently > 512 bytes)

// If you're creating a Project Pages site and NOT using a custom domain,
// then set segmentCount to 1 (enterprise users may need to set it to > 1).
// This way the code will only replace the route part of the path, and not
// the real directory in which the app resides, for example:
// https://username.github.io/repo-name/one/two?a=b&c=d#qwe becomes
// https://username.github.io/repo-name/dotnet-console-games/?p=/one/two&q=a=b~and~c=d#qwe
// Otherwise, leave segmentCount as 0.
var segmentCount = 0;
var l = window.location;
l.replace(
l.protocol + '//' + l.hostname + (l.port ? ':' + l.port : '') +
l.pathname.split('/').slice(0, 1 + segmentCount).join('/') + '/dotnet-console-games/?p=/' +
l.pathname.slice(1).split('/').slice(segmentCount).join('/').replace(/&/g, '~and~') +
(l.search ? '&q=' + l.search.slice(1).replace(/&/g, '~and~') : '') +
l.hash
);
</script>
</head>
<body>
</body>
</html>
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @ZacharyPatten
145 changes: 145 additions & 0 deletions Website.styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-sy2l7isrkd] {
position: relative;
display: flex;
flex-direction: column;
}

main[b-sy2l7isrkd] {
flex: 1;
}

.sidebar[b-sy2l7isrkd] {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-sy2l7isrkd] {
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}

.top-row[b-sy2l7isrkd] a, .top-row[b-sy2l7isrkd] .btn-link {
white-space: nowrap;
margin-left: 1.5rem;
text-decoration: none;
}

.top-row[b-sy2l7isrkd] a:hover, .top-row[b-sy2l7isrkd] .btn-link:hover {
text-decoration: underline;
}

.top-row[b-sy2l7isrkd] a:first-child {
overflow: hidden;
text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
.top-row:not(.auth)[b-sy2l7isrkd] {
display: none;
}

.top-row.auth[b-sy2l7isrkd] {
justify-content: space-between;
}

.top-row[b-sy2l7isrkd] a, .top-row[b-sy2l7isrkd] .btn-link {
margin-left: 0;
}
}

@media (min-width: 641px) {
.page[b-sy2l7isrkd] {
flex-direction: row;
}

.sidebar[b-sy2l7isrkd] {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}

.top-row[b-sy2l7isrkd] {
position: sticky;
top: 0;
z-index: 1;
}

.top-row.auth[b-sy2l7isrkd] a:first-child {
flex: 1;
text-align: right;
width: 0;
}

.top-row[b-sy2l7isrkd], article[b-sy2l7isrkd] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-y13vmniad5] {
background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-y13vmniad5] {
height: 3.5rem;
background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-y13vmniad5] {
font-size: 1.1rem;
}

.oi[b-y13vmniad5] {
width: 2rem;
font-size: 1.1rem;
vertical-align: text-top;
top: -2px;
}

.nav-item[b-y13vmniad5] {
font-size: 0.9rem;
padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-y13vmniad5] {
padding-top: 1rem;
}

.nav-item:last-of-type[b-y13vmniad5] {
padding-bottom: 1rem;
}

.nav-item[b-y13vmniad5] a {
color: #d7d7d7;
border-radius: 4px;
height: 3rem;
display: flex;
align-items: center;
line-height: 3rem;
}

.nav-item[b-y13vmniad5] a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}

.nav-item[b-y13vmniad5] a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}

@media (min-width: 641px) {
.navbar-toggler[b-y13vmniad5] {
display: none;
}

.collapse[b-y13vmniad5] {
/* Never collapse the sidebar for wide screens */
display: block;
}
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.AspNetCore.Components.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.wasm
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.wasm.br
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.wasm.gz
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.wasm
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.wasm.br
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.wasm.gz
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Primitives.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.WebAssembly.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.wasm
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.wasm.br
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.wasm.gz
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.wasm
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.wasm.br
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.wasm.gz
Binary file not shown.
Binary file added _framework/System.Collections.NonGeneric.wasm
Binary file not shown.
Binary file added _framework/System.Collections.NonGeneric.wasm.br
Binary file not shown.
Binary file added _framework/System.Collections.NonGeneric.wasm.gz
Binary file not shown.
Binary file added _framework/System.Collections.Specialized.wasm
Binary file not shown.
Binary file added _framework/System.Collections.Specialized.wasm.br
Binary file not shown.
Binary file added _framework/System.Collections.Specialized.wasm.gz
Binary file not shown.
Binary file added _framework/System.Collections.wasm
Binary file not shown.
Binary file added _framework/System.Collections.wasm.br
Binary file not shown.
Binary file added _framework/System.Collections.wasm.gz
Binary file not shown.
Binary file added _framework/System.ComponentModel.Primitives.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.ComponentModel.wasm
Binary file not shown.
Binary file added _framework/System.ComponentModel.wasm.br
Binary file not shown.
Binary file added _framework/System.ComponentModel.wasm.gz
Binary file not shown.
Binary file added _framework/System.Console.wasm
Binary file not shown.
Binary file added _framework/System.Console.wasm.br
Binary file not shown.
Binary file added _framework/System.Console.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Diagnostics.TraceSource.wasm
Binary file not shown.
Binary file added _framework/System.Diagnostics.TraceSource.wasm.br
Binary file not shown.
Binary file added _framework/System.Diagnostics.TraceSource.wasm.gz
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.wasm
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.wasm.br
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.wasm.gz
Binary file not shown.
Binary file added _framework/System.Linq.Expressions.wasm
Binary file not shown.
Binary file added _framework/System.Linq.Expressions.wasm.br
Binary file not shown.
Binary file added _framework/System.Linq.Expressions.wasm.gz
Binary file not shown.
Binary file added _framework/System.Linq.wasm
Binary file not shown.
Binary file added _framework/System.Linq.wasm.br
Binary file not shown.
Binary file added _framework/System.Linq.wasm.gz
Binary file not shown.
Binary file added _framework/System.Memory.wasm
Binary file not shown.
Binary file added _framework/System.Memory.wasm.br
Binary file not shown.
Binary file added _framework/System.Memory.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Http.wasm
Binary file not shown.
Binary file added _framework/System.Net.Http.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Http.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Primitives.wasm
Binary file not shown.
Binary file added _framework/System.Net.Primitives.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Primitives.wasm.gz
Binary file not shown.
Binary file added _framework/System.Numerics.Vectors.wasm
Binary file not shown.
Binary file added _framework/System.Numerics.Vectors.wasm.br
Binary file not shown.
Binary file added _framework/System.Numerics.Vectors.wasm.gz
Binary file not shown.
Binary file added _framework/System.ObjectModel.wasm
Binary file not shown.
Binary file added _framework/System.ObjectModel.wasm.br
Binary file not shown.
Binary file added _framework/System.ObjectModel.wasm.gz
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.wasm
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.wasm.br
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.wasm.gz
Binary file not shown.
Binary file added _framework/System.Private.Uri.wasm
Binary file not shown.
Binary file added _framework/System.Private.Uri.wasm.br
Binary file not shown.
Binary file added _framework/System.Private.Uri.wasm.gz
Binary file not shown.
Binary file added _framework/System.Private.Xml.wasm
Binary file not shown.
Binary file added _framework/System.Private.Xml.wasm.br
Binary file not shown.
Binary file added _framework/System.Private.Xml.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Runtime.Numerics.wasm
Binary file not shown.
Binary file added _framework/System.Runtime.Numerics.wasm.br
Binary file not shown.
Binary file added _framework/System.Runtime.Numerics.wasm.gz
Binary file not shown.
Binary file added _framework/System.Runtime.wasm
Binary file not shown.
Binary file added _framework/System.Runtime.wasm.br
Binary file not shown.
Binary file added _framework/System.Runtime.wasm.gz
Binary file not shown.
Binary file added _framework/System.Security.Cryptography.wasm
Binary file not shown.
Binary file added _framework/System.Security.Cryptography.wasm.br
Binary file not shown.
Binary file added _framework/System.Security.Cryptography.wasm.gz
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.wasm
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.wasm.br
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.wasm.gz
Binary file not shown.
Binary file added _framework/System.Text.Json.wasm
Binary file not shown.
Binary file added _framework/System.Text.Json.wasm.br
Binary file not shown.
Binary file added _framework/System.Text.Json.wasm.gz
Binary file not shown.
Binary file added _framework/System.Text.RegularExpressions.wasm
Binary file not shown.
Binary file added _framework/System.Text.RegularExpressions.wasm.br
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Threading.wasm
Binary file not shown.
Binary file added _framework/System.Threading.wasm.br
Binary file not shown.
Binary file added _framework/System.Threading.wasm.gz
Binary file not shown.
Binary file added _framework/System.Web.HttpUtility.wasm
Binary file not shown.
Binary file added _framework/System.Web.HttpUtility.wasm.br
Binary file not shown.
Binary file added _framework/System.Web.HttpUtility.wasm.gz
Binary file not shown.
Binary file added _framework/System.Xml.ReaderWriter.wasm
Binary file not shown.
Binary file added _framework/System.Xml.ReaderWriter.wasm.br
Binary file not shown.
Binary file added _framework/System.Xml.ReaderWriter.wasm.gz
Binary file not shown.
Binary file added _framework/System.Xml.XmlSerializer.wasm
Binary file not shown.
Binary file added _framework/System.Xml.XmlSerializer.wasm.br
Binary file not shown.
Binary file added _framework/System.Xml.XmlSerializer.wasm.gz
Binary file not shown.
Binary file added _framework/System.wasm
Binary file not shown.
Binary file added _framework/System.wasm.br
Binary file not shown.
Binary file added _framework/System.wasm.gz
Binary file not shown.
Binary file added _framework/Towel.wasm
Binary file not shown.
Binary file added _framework/Towel.wasm.br
Binary file not shown.
Binary file added _framework/Towel.wasm.gz
Binary file not shown.
Binary file added _framework/Website.pdb.gz
Binary file not shown.
Binary file added _framework/Website.wasm
Binary file not shown.
Binary file added _framework/Website.wasm.br
Binary file not shown.
Binary file added _framework/Website.wasm.gz
Binary file not shown.
78 changes: 78 additions & 0 deletions _framework/blazor.boot.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
{
"mainAssemblyName": "Website",
"resources": {
"hash": "sha256-rRbDPAcYNof0ygJ4qpcdFu11AJTjzolQz5KbdJKQp1Q=",
"jsModuleNative": {
"dotnet.native.8.0.0.45ykigla5r.js": "sha256-LjLDIz9+J7uuiwMlQ4HbNx2BnSpphOtO2MwkoI28vdI="
},
"jsModuleRuntime": {
"dotnet.runtime.8.0.0.4nmj5hsanr.js": "sha256-WdSX3HQvnBYF0KJLZoOyHvTzMHetaob6PV0Kn2K+QXw="
},
"wasmNative": {
"dotnet.native.wasm": "sha256-Vr6ZXKoP77zgabrMIxQ1GbOkrxfx5XGqHO0odLhUIMY="
},
"icu": {
"icudt_CJK.dat": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=",
"icudt_EFIGS.dat": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=",
"icudt_no_CJK.dat": "sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="
},
"assembly": {
"Microsoft.AspNetCore.Components.wasm": "sha256-tQrTQ6UGQAO+YHHmmC8ZNmfqLkEse61s3cqvxqG86Mc=",
"Microsoft.AspNetCore.Components.Web.wasm": "sha256-hRTv94l5k+vl/UxgXn1hWLc5vPM7HiVEugme7VtP4s0=",
"Microsoft.AspNetCore.Components.WebAssembly.wasm": "sha256-jxT5OPvGNxCa5Ode34Vj10dSuqq5umUUvi5WqGMI6uA=",
"Microsoft.Extensions.Configuration.Abstractions.wasm": "sha256-87sn2TYqgdZ95sXmavjKEzoEfMgHnYQ9LOvnMX+aZcI=",
"Microsoft.Extensions.Configuration.Json.wasm": "sha256-Sxmy2ZS134URxbHEvdbS6NcQ3zXS7UWx/5ZPpwiW7FA=",
"Microsoft.Extensions.Configuration.wasm": "sha256-jYqHUZ07UYWc8POk7xhas6xQYH7t1qoTcylqoDqncJk=",
"Microsoft.Extensions.DependencyInjection.Abstractions.wasm": "sha256-5gA3nW4fgom2QB/oSK4sF6M5lniTbLo561mWc33Hz/c=",
"Microsoft.Extensions.DependencyInjection.wasm": "sha256-gg8xZqJsBBrrNEyUGzYqhL3sqkuZ4AHAvdTdL9nZ0S0=",
"Microsoft.Extensions.Logging.Abstractions.wasm": "sha256-x/ani8NQOjvLtAq+Vig4UTcaBRMf6VOL+v+VfwaG3mA=",
"Microsoft.Extensions.Logging.wasm": "sha256-8BH+kQfjYuZWxprOICXJ4+tU0OdJOYDKN7G0S3zYYHI=",
"Microsoft.Extensions.Options.wasm": "sha256-6DN1malfyp0G0uOYwQY0nIN60XdXpVXUXXw0X2c8V8E=",
"Microsoft.Extensions.Primitives.wasm": "sha256-Ms2HR5Gpug/0uRAzdk4SUNT76Ml3CjFv9Jo+dUIMGac=",
"Microsoft.JSInterop.wasm": "sha256-lXwhdv0Is9FMH/j0+WH3zoNWAGLbVaONtGucJ/4URQ0=",
"Microsoft.JSInterop.WebAssembly.wasm": "sha256-CQVLCKiSxLN5ghyJZG3mhnMGRROdqrbNUjtAXB0nWb8=",
"System.Collections.Concurrent.wasm": "sha256-hd+a6TkijJMpWSzvlmYejeCit4AypeEI2oy4d4sWUX0=",
"System.Collections.NonGeneric.wasm": "sha256-M9SQzcHAEBoxFByXW+rWAenhoICd1kx0xQgaSQse0u8=",
"System.Collections.Specialized.wasm": "sha256-wriqyx3dTeVbeIgi5SSckpwpazJ9I2smazHWMg2wtv0=",
"System.Collections.wasm": "sha256-ZOJgmZTFwBDBKjRJz3owAd3xoWJTFqKUfMLt/k4Y0Pw=",
"System.ComponentModel.Primitives.wasm": "sha256-ZSk53IDFZ+3hJFyk8c3iYFwBGnLdie5AlUkxTMh6wCA=",
"System.ComponentModel.TypeConverter.wasm": "sha256-VyEukwhCBrSra5BrH2YDHM2hthF2PFX+erDUu6uiXn0=",
"System.ComponentModel.wasm": "sha256-Kg+Te+dUBA6OiPS3uVj+Poyamhf9bMlcL96uc+bTYWc=",
"System.Console.wasm": "sha256-7NF5BUPoZGHgO8R5hHC/F6ygs1UgzK955gZH8YVF5lI=",
"System.Diagnostics.DiagnosticSource.wasm": "sha256-sGJpt1GwbNMWs4tQthMjrVj4BRnvQmeWrlomO+2kh/I=",
"System.Diagnostics.TraceSource.wasm": "sha256-+7Hrxfvw9eecpyNkfRjZH7Hf8dYjcSdvSsaTi3WnBBQ=",
"System.IO.FileSystem.wasm": "sha256-tAgX6gCAsUPbCGu+c9LcOuoyVdJ+jKmtRuDgbeR1XE4=",
"System.Linq.Expressions.wasm": "sha256-/UdkIuNLMpuQRdpF1DQki4JU+nSz1CQ3yWu80TWVtAM=",
"System.Linq.wasm": "sha256-SRbnSUxOrHuFR19d9Clp/scfEi0ltYEnRZFMUutFn0A=",
"System.Memory.wasm": "sha256-x95UYjTjel+RANFmH3UW6q4iIfKEgrjXOZ8fzLtpZxQ=",
"System.Net.Http.wasm": "sha256-NIL3V7HSFNtCHXd3uegKckP8b/BErwRQGffNTTUNqok=",
"System.Net.Primitives.wasm": "sha256-yVTWaROK719NfQdf63uAz2SkM+e6H6E1voy56YaEY6U=",
"System.Numerics.Vectors.wasm": "sha256-eanRj7meT8ou0rcL1daCDZH34empEZbLGYwvpOKLTXQ=",
"System.ObjectModel.wasm": "sha256-lGaFTI4GIq1+E2+yhF9kUXquMQpVea91vp04/bvMH8E=",
"System.Private.CoreLib.wasm": "sha256-P1oISr+nRvFMgyy8n96k1Hx1TwJKZCdI6d3ZHAxErMU=",
"System.Private.Uri.wasm": "sha256-RRpADdgwQ3rJqLwarXJLTeAe7NNCEH249WsyP+kny6Q=",
"System.Private.Xml.wasm": "sha256-845acCEnxTZ6JU0gZwrDzIhduELP3x7jdloYz13aXrI=",
"System.Runtime.InteropServices.JavaScript.wasm": "sha256-TAtIMM4NMjNrLChnEM9FoIlR3eVDVC5v/KP+4FwGQxE=",
"System.Runtime.Numerics.wasm": "sha256-kNuN6rFLwtMFcPgGSR0fj/q9hffAbGkpdc/Hs2R/eyI=",
"System.Runtime.wasm": "sha256-yvzGYY5RFbuUg7T3X8Iyf8qcy78KzVZoDZDkroR9SjA=",
"System.Security.Cryptography.wasm": "sha256-7Q+p0eGT43dZxPcehiRnRG5YemkuTi234DK/eneC7S4=",
"System.Text.Encodings.Web.wasm": "sha256-roAD9oxlySPskG/f0YnoUDWlRpxhu89rnf8M89edL/o=",
"System.Text.Json.wasm": "sha256-0Cr89rcJDz2jNtlf3rO5Gl9PaNann+BM2Cw1r0Dt5GQ=",
"System.Text.RegularExpressions.wasm": "sha256-j4bIdoOjhX7oRWXi4drGw7kQ+73ULdfSvUoT4A1mxeM=",
"System.Threading.wasm": "sha256-2/YlxLJSdw+ZeWgqntB0ARxqQ9cdZUVn0WRXtMYxyX0=",
"System.wasm": "sha256-42a4+5LjOVNJZ9qrtuq44hJuXPS03tHmXb7Kauk7pEg=",
"System.Web.HttpUtility.wasm": "sha256-Q92KXfWOQlOGkN62zgo1XYoTE0fL9k4kk7Ct65Bf1to=",
"System.Xml.ReaderWriter.wasm": "sha256-cn3NiL+OUQhsG4wsmi9e8Vkjs0Au+5x5jmwVTpVfTL0=",
"System.Xml.XmlSerializer.wasm": "sha256-qQxR66YvKYUQE5YPYNYEp1N+/DBnRxpfaoXtF9ns8RM=",
"Towel.wasm": "sha256-msWmtnDMvRpIREU5ioLnuaUiDeG9dFDvCGm39VpIrdE=",
"Website.wasm": "sha256-NyrUDzIm7fQk4ID3XqsksgIiV4xH/GxJ2aqFBNBc2Ug="
}
},
"cacheBootResources": true,
"debugLevel": 0,
"linkerEnabled": true,
"globalizationMode": "sharded",
"extensions": {
"blazor": {}
}
}
Binary file added _framework/blazor.boot.json.br
Binary file not shown.
Binary file added _framework/blazor.boot.json.gz
Binary file not shown.
1 change: 1 addition & 0 deletions _framework/blazor.webassembly.js

Large diffs are not rendered by default.

Binary file added _framework/blazor.webassembly.js.br
Binary file not shown.
Binary file added _framework/blazor.webassembly.js.gz
Binary file not shown.
4 changes: 4 additions & 0 deletions _framework/dotnet.js

Large diffs are not rendered by default.

Binary file added _framework/dotnet.js.br
Binary file not shown.
Binary file added _framework/dotnet.js.gz
Binary file not shown.
17 changes: 17 additions & 0 deletions _framework/dotnet.native.8.0.0.45ykigla5r.js

Large diffs are not rendered by default.

Binary file added _framework/dotnet.native.8.0.0.45ykigla5r.js.br
Binary file not shown.
Binary file added _framework/dotnet.native.8.0.0.45ykigla5r.js.gz
Binary file not shown.
Binary file added _framework/dotnet.native.wasm
Binary file not shown.
Binary file added _framework/dotnet.native.wasm.br
Binary file not shown.
Binary file added _framework/dotnet.native.wasm.gz
Binary file not shown.
4 changes: 4 additions & 0 deletions _framework/dotnet.runtime.8.0.0.4nmj5hsanr.js

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file added _framework/icudt_CJK.dat
Binary file not shown.
Binary file added _framework/icudt_CJK.dat.br
Binary file not shown.
Binary file added _framework/icudt_CJK.dat.gz
Binary file not shown.
Binary file added _framework/icudt_EFIGS.dat
Binary file not shown.
Binary file added _framework/icudt_EFIGS.dat.br
Binary file not shown.
Binary file added _framework/icudt_EFIGS.dat.gz
Binary file not shown.
Binary file added _framework/icudt_no_CJK.dat
Binary file not shown.
Binary file added _framework/icudt_no_CJK.dat.br
Binary file not shown.
Binary file added _framework/icudt_no_CJK.dat.gz
Binary file not shown.
93 changes: 93 additions & 0 deletions css/Source_Code_Pro/OFL.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.

This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL


-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------

PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.

The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.

DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.

"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).

"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).

"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.

"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.

PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:

1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.

2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.

3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.

4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.

5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.

TERMINATION
This license becomes null and void if any of the above conditions are
not met.

DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
Loading

0 comments on commit 1e8373b

Please sign in to comment.