1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2025-06-28 22:12:55 +02:00

WebRTC player

This commit is contained in:
Alexandre Iooss
2020-09-22 22:08:14 +02:00
parent 1ac7fce31b
commit 73d08f497e
12 changed files with 343 additions and 91 deletions

21
web/template/_base.html Normal file
View File

@ -0,0 +1,21 @@
{{define "base"}}
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>{{if .Path}}{{.Path}} - {{end}}{{.Cfg.Name}}</title>
<link rel="stylesheet" href="static/css/style.css">
<link rel="shortcut icon" href="{{.Cfg.Favicon}}">
</head>
<body>
{{if .Path}}
{{template "viewer" .}}
{{else}}
{{template "index" .}}
{{end}}
</body>
</html>
{{end}}