53 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
 | 
						|
<head>
 | 
						|
  <meta charset="utf-8">
 | 
						|
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
 | 
						|
  <title>JobsJobsJobs</title>
 | 
						|
  <base href="/">
 | 
						|
  <link href="css/bootstrap/bootstrap.min.css" rel="stylesheet">
 | 
						|
  <link href="css/app.css" rel="stylesheet">
 | 
						|
  <link href="JobsJobsJobs.Client.styles.css" rel="stylesheet">
 | 
						|
  <link href="_content/Blazored.Toast/blazored-toast.min.css" rel="stylesheet">
 | 
						|
</head>  
 | 
						|
 | 
						|
<body>
 | 
						|
    <div id="app">Loading...</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>
 | 
						|
  <script>
 | 
						|
    /**
 | 
						|
     * Function to play audio files.
 | 
						|
     */
 | 
						|
    var Audio = {
 | 
						|
      /**
 | 
						|
       * Play the target audio clip.
 | 
						|
       * 
 | 
						|
       * @param {string} audio The ID of the audio element to play
 | 
						|
       */
 | 
						|
      play(audio) {
 | 
						|
        document.getElementById(audio).play()
 | 
						|
      }
 | 
						|
    }
 | 
						|
    /**
 | 
						|
     * Set the title of the document. (called by PageTitle component)
 | 
						|
     * 
 | 
						|
     * @param theTitle The title to be set
 | 
						|
     */
 | 
						|
    function setPageTitle(theTitle) {
 | 
						|
      document.title = theTitle
 | 
						|
    }
 | 
						|
    function getTimeZone() {
 | 
						|
      return Intl.DateTimeFormat().resolvedOptions().timeZone
 | 
						|
    }
 | 
						|
  </script>
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 |