forked from verdnatura/hedera-web
43 lines
973 B
PHP
43 lines
973 B
PHP
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
<meta name="viewport" content="user-scalable=no"/>
|
|
<meta name="content-language" content="<?=$lang?>"/>
|
|
<link href="//fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css"/>
|
|
<?=css("$dir/style")?>
|
|
<title>Verdnatura</title>
|
|
</head>
|
|
<body>
|
|
<div id="main">
|
|
<h1><?=s('Welcome to Verdnatura, where are you going?')?></h1>
|
|
<div>
|
|
<a href="https://test-www.verdnatura.es/">
|
|
<div>
|
|
<img src="<?=$dir?>/new-web.svg" alt=""></img>
|
|
<p>
|
|
<?=s('New website')?>
|
|
</p>
|
|
<p>
|
|
<?=s('(Fantastic)')?>
|
|
</p>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
<div>
|
|
<a href="?skipVersion=true">
|
|
<div>
|
|
<img src="<?=$dir?>/old-web.svg" alt=""></img>
|
|
<p>
|
|
<?=s('Old website')?>
|
|
</p>
|
|
<p>
|
|
<?=s('(Best choose new)')?>
|
|
</p>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|