2020-08-21 16:50:22 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2020-12-27 20:42:54 +01:00
|
|
|
<meta contentType="text/html; charset=UTF-8"/>
|
2020-08-21 16:50:22 +02:00
|
|
|
<link rel="stylesheet" href="{{ path '/rcss.css' }}">
|
|
|
|
<title>Preview</title>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.red{
|
|
|
|
background-color: firebrick;
|
|
|
|
}
|
|
|
|
|
|
|
|
.green {
|
|
|
|
background-color: forestgreen;
|
|
|
|
}
|
|
|
|
|
|
|
|
.square {
|
|
|
|
height: 300px;
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portrait {
|
|
|
|
height: 320px;
|
|
|
|
width: 180px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.landscape {
|
|
|
|
width: 320px;
|
|
|
|
height: 180px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.full-width {
|
|
|
|
width: 100%;
|
|
|
|
height: 300px;
|
|
|
|
}
|
2020-12-27 20:42:54 +01:00
|
|
|
|
|
|
|
.grid {
|
|
|
|
color: white;
|
|
|
|
background-image: url("{{path '/images/grid.png'}}");
|
|
|
|
}
|
2020-08-21 16:50:22 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2021-03-10 02:59:39 +01:00
|
|
|
<div id="wrapper" class="">
|
2021-03-03 00:49:21 +01:00
|
|
|
{{{ yield }}}
|
|
|
|
</div>
|
2020-08-21 16:50:22 +02:00
|
|
|
</body>
|
|
|
|
</html>
|