このコミットが含まれているのは:
守矢諏訪子 2022-08-25 22:07:11 +09:00
コミット c57b2bc5c3
5個のファイルの変更14行の追加14行の削除

ファイルの表示

@ -1,4 +1,4 @@
<?php include_once('includes/header.php') ?> <?php include_once('includes/header.php') ?>
<?php echo $err; ?><br /> <?= $err; ?><br />
<a href="/">トップページに戻る</a> <a href="/"><?= LOC_TOPPAGE_NI_MODORU; ?></a>
<?php include_once('includes/footer.php'); ?> <?php include_once('includes/footer.php'); ?>

ファイルの表示

@ -1,7 +1,7 @@
</div> </div>
<p class="footer"> <p class="footer">
<a href="https://gitler.moe/TechnicalSuwako/urlo.li"><img src="/static/git.png" alt="Git" /></a> | <a href="https://gitler.moe/TechnicalSuwako/urlo.li"><img src="/static/git.png" alt="Git" /></a> |
<a href="https://076.moe"><?php echo LOC_076_AIB; ?></a> <a href="https://076.moe"><?= LOC_076_AIB; ?></a>
</p> </p>
</body> </body>
</html> </html>

ファイルの表示

@ -2,14 +2,14 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head> <head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" /> <meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="title" content="<?php echo $lang == 'en' ? SITE_NAME_EN : SITE_NAME_JA ?>" /> <meta name="title" content="<?= $lang == 'en' ? SITE_NAME_EN : SITE_NAME_JA ?>" />
<meta name="description" content="<?php echo $lang == 'en' ? SITE_DESC_EN : SITE_DESC_JA?>" /> <meta name="description" content="<?= $lang == 'en' ? SITE_DESC_EN : SITE_DESC_JA?>" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title><?php echo $title; ?></title> <title><?= $title; ?></title>
<link rel="stylesheet" type="text/css" href="/static/style.css" /> <link rel="stylesheet" type="text/css" href="/static/style.css" />
</head> </head>
<body> <body>
<h1> <h1>
<img class="headerimg" src="/static/logo.jpg" alt="<?php echo LOC_LOGO; ?>" /> <img class="headerimg" src="/static/logo.jpg" alt="<?= LOC_LOGO; ?>" />
</h1> </h1>
<div class="body"> <div class="body">

ファイルの表示

@ -1,19 +1,19 @@
<?php require_once('includes/header.php') ?> <?php require_once('includes/header.php') ?>
<p> <p>
<a href="/"><?php echo LOC_TOP; ?></a> <a href="/"><?= LOC_TOP; ?></a>
</p> </p>
<form method="post" action="/"> <form method="post" action="/">
<div class="switchlang"> <div class="switchlang">
<input class="langchange" type="submit" name="langchange" value="<?php echo $lang == 'en' ? '日本語に更新' : 'Change to English'; ?>" /> <input class="langchange" type="submit" name="langchange" value="<?= $lang == 'en' ? '日本語に更新' : 'Change to English'; ?>" />
</div> </div>
</form> </form>
<hr /> <hr />
<?php echo LOC_URL_NYUURYOKU; ?> <?= LOC_URL_NYUURYOKU; ?>
<div class="form"> <div class="form">
<form action="/" method="post"> <form action="/" method="post">
<input type="text" name="newadd" value="" /> <input type="text" name="newadd" value="" />
<div class="submit"> <div class="submit">
<input type="submit" name="sosin" value="<?php echo LOC_SOSIN; ?>" /> <input type="submit" name="sosin" value="<?= LOC_SOSIN; ?>" />
</div> </div>
</form> </form>
</div> </div>

ファイルの表示

@ -1,6 +1,6 @@
<?php include_once('includes/header.php') ?> <?php include_once('includes/header.php') ?>
<?php echo LOC_KAKI_URL_KARA_ACCESS_DEKIRU; ?><br /> <?= LOC_KAKI_URL_KARA_ACCESS_DEKIRU; ?><br />
<a href="<?php echo SITE_URL.'/'.$newurl; ?>"><?php echo SITE_URL.'/'.$newurl; ?></a> <a href="<?= SITE_URL.'/'.$newurl; ?>"><?= SITE_URL.'/'.$newurl; ?></a>
<br /><br /> <br /><br />
<a href="/"><?php echo LOC_TOPPAGE_NI_MODORU; ?></a> <a href="/"><?= LOC_TOPPAGE_NI_MODORU; ?></a>
<?php include_once('includes/footer.php'); ?> <?php include_once('includes/footer.php'); ?>