17 lines
491 B
HTML
17 lines
491 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/drip.css">
|
|
<title>{{ title }}</title>
|
|
</head>
|
|
<body class="episodio">
|
|
<iframe class="episodio-video-iframe" src="{{ video_iframe_url }}" frameborder="0" allow="autoplay; fullscreen; picture-in-picture"></iframe>
|
|
<main>
|
|
<h1>{{ title }}</h1>
|
|
{{ content }}
|
|
</main>
|
|
</body>
|
|
</html>
|
|
|