-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
44 lines (40 loc) · 1.6 KB
/
Copy pathindex.php
File metadata and controls
44 lines (40 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php header('Content-Type: text/html; charset=utf-8'); ?>
<?php session_start(); ?>
<html>
<head>
<title>イグニスメシ / IGNIS MESHI</title>
<!-- Latest compiled and minified Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width,user-scalable=no,maximum-scale=1" />
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="shortcut icon" href="favicon.ico">
<script src="./node_modules/jquery/dist/jquery.min.js"></script>
<script src="./gana.js"></script>
<script type="text/javascript">
<?php
if(isset($_SESSION['twitter_user'])){
echo "var isTwitterLoggedIn = true;";
} else {
echo "var isTwitterLoggedIn = false;";
}
?>
</script>
</head>
<body>
<div id="app">
<p class="text-primary">
対応ブラウザ: Chrome<br/>Chromeでも動かない場合は、Chromeを最新バージョン(最低でも50以上?)へ更新して下さい。
</p>
<p class="text-primary">
Recommended Browser: Chrome
</p>
</div>
<script src="./build/index.js"></script>
<div class="footerAdv">
<h3>FFXV 関連商品</h3>
<?php include("./associate.html"); ?>
</div>
</body>
</html>