26 lines
736 B
Smarty
26 lines
736 B
Smarty
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="">
|
|
<meta name="keywords" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>
|
|
{$title}
|
|
</title>
|
|
{foreach item=style from=$css}
|
|
<link href="{$style}" rel="stylesheet">
|
|
{/foreach}
|
|
<style>
|
|
/* note: this is a hack for ios iframe for bootstrap themes shopify page */
|
|
/* this chunk of css is not part of the toolkit :) */
|
|
body {
|
|
width: 1px;
|
|
min-width: 100%;
|
|
*width: 100%;
|
|
}
|
|
</style>
|
|
</head> |