123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html lang="ja">
- <head>
- <meta content="text/html; charset=euc-jp" http-equiv="content-type" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <?php if (isset($out["desc"])) { ?>
- <meta property="og:title" content="vixip 〜 <?= htmlspecialchars($out["title"]) ?>" />
- <meta property="og:type" content="article" />
- <meta property="og:description" content="<?= htmlspecialchars($out["desc"]) ?>" />
- <meta property="og:url" content="<?= $gurl ?>" />
- <?php } ?>
- <?php if (isset($out["img"])) { ?><meta name="thumbnail" content="<?= $out["img"] ?>" /><?php } ?>
- <title>vixip 〜 <?= htmlspecialchars($out["title"]) ?></title>
- <link rel="stylesheet" type="text/css" href="/style.css" />
- </head>
- <body>
- <div class="header">
- <form action="/search" method="get">
- <a href="/" style="padding-right: 12px;">vixip</a>
- <input type="text" value="" class="searchbar" name="q" placeholder="商品を検索" />
- <button class="searchbtn">検索</button>
- </form>
- </div>
- <div class="container">
|