このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
honya/www/include/header.php

44 行
1.6 KiB
PHP
Raw パーマリンク 通常表示 履歴

2022-05-08 02:56:47 +09:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
2022-08-25 22:19:21 +09:00
<title><?= STORE_NAME; ?></title>
2022-05-08 02:56:47 +09:00
<?php
if (!empty($styles)) {
foreach ($styles as $s) {
?>
2022-08-25 22:19:21 +09:00
<link rel="stylesheet" type="text/css" href="/static/<?= $s; ?>.css" />
2022-05-08 02:56:47 +09:00
<?php
}
}
?>
</head>
<body>
<div class="jswarning" id="jswarning">
2022-08-25 22:19:21 +09:00
<?= $eigo ?
2022-05-08 02:56:47 +09:00
'Warning: JavaScript is ON. For safety and security reasons, please turn JavaScript OFF.' : '注意JavsScriptはONです。安全・安心の為、JavaScriptをOFFにしてお願い致します。'; ?>
</div>
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
2022-08-25 22:19:21 +09:00
<h1><?= STORE_NAME; ?></h1>
2022-05-08 02:56:47 +09:00
<div class="container">
<form method="post" action="/">
2022-08-25 22:19:21 +09:00
<input class="langchange" type="submit" name="langchange" value="<?= $eigo ? '日本語に戻る' : 'Switch to English'; ?>" />
2022-05-08 02:56:47 +09:00
</form>
2022-08-25 22:19:21 +09:00
<h2><?= $pagetitle; ?></h2>
2022-05-08 02:56:47 +09:00
2022-05-08 11:16:07 +09:00
<?php $countcart = count(array_filter(explode(',', getcookie('cart')))); ?>
2022-05-08 02:56:47 +09:00
<div class="nav">
<ul>
2022-08-25 22:19:21 +09:00
<li><a href="/"><?= $eigo ? 'Home' : 'トップページ'; ?></a></li>
2022-05-08 02:56:47 +09:00
<li>
<a href="/cart.php">
2022-08-25 22:19:21 +09:00
<?= $eigo ? 'Cart' : 'カート'; ?>
2022-05-08 02:56:47 +09:00
</a>
2022-08-25 22:19:21 +09:00
<?php if ($countcart > 0) { ?><div class="cart-count"><?= $countcart < 99 ? $countcart : '99'; ?></div> <?php } ?>
2022-05-08 02:56:47 +09:00
</li>
</ul>
</div>
<div class="anarchy">