* docs: add custom titlebar example * docs: add links and other small edits * docs: add panel window docs * docs: remove panel example * docs: specify expected emphasis style * docs: responding to feedback * docs: fix section names in links * docs: rework baseWindow note * docs: making window customization its own section * responding to feedback
		
			
				
	
	
		
			14 lines
		
	
	
		
			No EOL
		
	
	
		
			499 B
			
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			No EOL
		
	
	
		
			499 B
			
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
  <head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
 | 
						|
    <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'">
 | 
						|
    <link href="./styles.css" rel="stylesheet">
 | 
						|
    <title>Custom Titlebar App</title>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
	  <!-- mount your title bar at the top of you application's body tag -->
 | 
						|
    <div class="titlebar">Cool titlebar</div>
 | 
						|
  </body>
 | 
						|
</html> |