1- <!DOCTYPE html>
2- < html >
1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+
34< head >
4- < meta charset ="utf-8 ">
5- < title > GitHub Pages Issue</ title >
5+ < meta charset ="utf-8 " />
6+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
7+ < title > MudBlazorGitHubPages</ title >
8+ < base href ="/mudblazorgithubpages.github.io/ " />
9+ < link rel ="stylesheet " href ="css/app.css " />
10+ < link rel ="icon " type ="image/png " href ="favicon.png " />
11+ < link href ="MudBlazorGitHubPages.styles.css " rel ="stylesheet " />
12+ < link href ="manifest.webmanifest " rel ="manifest " />
13+ < link rel ="apple-touch-icon " sizes ="512x512 " href ="icon-512.png " />
14+ < link rel ="apple-touch-icon " sizes ="192x192 " href ="icon-192.png " />
15+ < link href ="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap " rel ="stylesheet " />
16+ < link href ="_content/MudBlazor/MudBlazor.min.css " rel ="stylesheet " />
17+ </ head >
18+
19+ < body >
20+ < div id ="app ">
21+ < svg class ="loading-progress ">
22+ < circle r ="40% " cx ="50% " cy ="50% " />
23+ < circle r ="40% " cx ="50% " cy ="50% " />
24+ </ svg >
25+ < div class ="loading-progress-text "> </ div >
26+ </ div >
27+
28+ < div id ="blazor-error-ui ">
29+ An unhandled error has occurred.
30+ < a href ="" class ="reload "> Reload</ a >
31+ < a class ="dismiss "> 🗙</ a >
32+ </ div >
33+ < script src ="_framework/blazor.webassembly.js " autostart ="false "> </ script >
34+ < script src ="_content/MudBlazor/MudBlazor.min.js "> </ script >
35+ < script > navigator . serviceWorker . register ( 'service-worker.js' ) ; </ script >
636
737 <!--
838 Refresh fix for Single Page Applications (SPAs)
939 Source: https://github.com/orgs/community/discussions/50269
1040 -->
1141 < script type ="text/javascript ">
12-
13-
14- var pathSegmentsToKeep = 0 ;
15-
16- var l = window . location ;
17- l . replace (
18- l . protocol + '//' + l . hostname + ( l . port ? ':' + l . port : '' ) +
19- l . pathname . split ( '/' ) . slice ( 0 , 1 + pathSegmentsToKeep ) . join ( '/' ) + '/?/' +
20- l . pathname . slice ( 1 ) . split ( '/' ) . slice ( pathSegmentsToKeep ) . join ( '/' ) . replace ( / & / g, '~and~' ) +
21- ( l . search ? '&' + l . search . slice ( 1 ) . replace ( / & / g, '~and~' ) : '' ) +
22- l . hash
23- ) ;
42+ ( function ( l ) {
43+ if ( l . search [ 1 ] === '/' ) {
44+ var decoded = l . search . slice ( 1 ) . split ( '&' ) . map ( function ( s ) {
45+ return s . replace ( / ~ a n d ~ / g, '&' )
46+ } ) . join ( '?' ) ;
47+ window . history . replaceState ( null , null ,
48+ l . pathname . slice ( 0 , - 1 ) + decoded + l . hash
49+ ) ;
50+ }
51+ } ( window . location ) )
2452 </ script >
25- </ head >
26- < body >
53+ < script src ="brotliloader.min.js " type ="module "> </ script >
2754</ body >
28- </ html >
55+ </ html >
0 commit comments