2019-02-15 17:56:56 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html style="height: 100%">
|
|
|
|
<head>
|
|
|
|
<title>{{ config.title }}</title>
|
|
|
|
<link rel="stylesheet" href="/dist/main.css" />
|
|
|
|
<link rel="preload" href="{{ config.landingFrameSrc }}" as="document">
|
2019-02-18 11:15:03 +03:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
2019-02-15 17:56:56 +03:00
|
|
|
</head>
|
|
|
|
<body class="landing-body">
|
|
|
|
{% include "components/header.twig" %}
|
|
|
|
<div class="landing-loader" id="frame-loader">
|
|
|
|
{{ svg('loader') }}
|
|
|
|
</div>
|
|
|
|
<iframe class="landing-frame" src="{{ config.landingFrameSrc }}" seamless frameborder="0" onload="this.style.opacity = 1; setTimeout(document.getElementById('frame-loader').remove(), 500)"></iframe>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|