forked from ITCProg/homepage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ページテンプレート.html
78 lines (67 loc) · 3.53 KB
/
ページテンプレート.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="ja">
<head prefix=”og: http://ogp.me/ns#”>
<!-- jQuery読み込み -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- 共通部分を自動でhtmlに追加するjavascript。jQuery読み込んでからでないとエラー -->
<script src="src/header.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-49660611-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-49660611-1');
console.log("google analysys");
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<!-- OGPの設定-->
<meta name="og:title" content="情報技術クラブ ITC -???-">
<meta property="og:url" content="https://www.ed.tus.ac.jp/tusitclub/???">
<meta property="og:type" content="website" />
<meta property="og:description" content=" ページの説明文" />
<meta property="og:site_name" content="情報技術クラブ" />
<meta property="og:image" content="https://www.ed.tus.ac.jp/tusitclub/images/thumbnail-example.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@tusitclub" />
<meta name="twitter:creator" content="@tusitclub">
<meta name="twitter:image" content="https://www.ed.tus.ac.jp/tusitclub/images/thumbnail-example.png" />
<!-- BootstrapのCSS読み込み -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<!-- jQuery読み込み -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- BootstrapのJS読み込み -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-VHvPCCyXqtD5DqJeNxl2dtTyhF78xXNXdkwX1CZeRusQfRKp+tA7hAShOK/B/fQ2" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/base.css">
<!-- vue.js-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<!-- font awesome-->
<script src="https://kit.fontawesome.com/9af312280c.js" crossorigin="anonymous"></script>
<link rel="icon" href="favicon.ico">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Merriweather&family=Oswald&display=swap" rel="stylesheet">
<title>ここにページのタイトルを書く - 情報技術クラブ ITC</title>
</head>
<body>
<div id="top"></div>
<script type="text/javascript">gotoTop('');</script>
<script type="text/javascript">header('');</script>
<!-- メインコンテンツ-->
<!-- ページの上にある画像と半透明の文字-->
<div id="XXX-headline">
<div class="headline-title">
</div>
</div>
<section class="wrapper m-3">
<div id="XXX-introduction">
<!-- ページの紹介・目的を書く-->
</div>
</section>
<script type="text/javascript">footer('');</script>
</body>
</html>