File: index.mustache.html

package info (click to toggle)
ruby-cucumber-html-formatter 23.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,000 kB
  • sloc: ruby: 122; makefile: 4; javascript: 1
file content (28 lines) | stat: -rw-r--r-- 488 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
	<title>{{title}}</title>
	<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<link rel="icon" href="{{icon}}">
	<style>
{{css}}
	</style>
	<style>
{{custom_css}}
	</style>
</head>
<body>
<div id="content">
</div>
<script>
window.CUCUMBER_MESSAGES = [{{messages}}];
</script>
<script>
{{script}}
</script>
<script>
{{custom_script}}
</script>
</body>
</html>