mirror of
				https://gitlab.crans.org/nounous/ghostream.git
				synced 2025-11-04 01:42:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			476 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			476 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{define "base"}}
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="fr">
 | 
						|
 | 
						|
<head>
 | 
						|
  <meta charset="UTF-8">
 | 
						|
  <title>{{if .Path}}{{if not .Cfg.OneStreamPerDomain}}{{.Path}} - {{end}}{{end}}{{.Cfg.Name}}</title>
 | 
						|
  <link rel="stylesheet" href="static/css/style.css">
 | 
						|
  <link rel="stylesheet" href="static/css/player.css">
 | 
						|
  <link rel="shortcut icon" href="{{.Cfg.Favicon}}">
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
  {{if .Path}}
 | 
						|
  {{template "player" .}}
 | 
						|
  {{else}}
 | 
						|
  {{template "index" .}}
 | 
						|
  {{end}}
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 | 
						|
{{end}} |