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>
|