forked from ITCProg/homepage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cg-works.html
108 lines (96 loc) · 5.96 KB
/
cg-works.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="ja">
<head>
<!-- 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">
<!-- 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">
<link rel="stylesheet" href="css/cg-works.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>CG部作品集 - 情報技術クラブ ITC</title>
</head>
<body>
<div id="top"></div>
<script type="text/javascript">gotoTop('');</script>
<script type="text/javascript">header('');</script>
<!-- メインコンテンツ-->
<div id="cg-headline">
<div class="headline-title">
CG
</div>
</div>
<section class="wrapper my-5">
<div id="cg-introduction">
<h2>CG部作品集</h2>
<p>過去にCG部員の描いた作品です。</p>
<p>作者名の後に(OB)と表示されていれば、その作者は現在OBであることを表しています。</p>
<p>作品の画像をクリックすると詳しい説明を見ることができます。</p>
<div class="alert alert-warning alert-dismissible fade show" role="alert">
<div class=" text-black">※無断転載・販売等を禁じます。著作権はイラストを描いた各部員にあります。</div>
</div>
</div>
</section>
<section class="wrapper-wide">
<!-- 作品を乗せる場所 -->
<!-- 1列に4個のレイアウトになっている。(ウィンドウが小さければ1列に2個) rowクラスで一つの列。意図的に列を分けたいならrowクラスを新しく作る-->
<!-- 一つのページにたくさんの画像を乗せると読み込み速度が低下します。適宜画像の解像度を下げてください。-->
<div id="cg-works" class="container-fluid">
<h3 class="p-1">新歓・理大祭ポスター</h3>
<div class="row m-md-3">
<cg-card v-for="(item,index) in items.poster_items" v-bind:item="item" v-bind:name="'poster'" v-bind:index="index" v-bind:isob="isOB(item.author)" v-bind:cardtype="getCardType(item.card_type)" ></cg-modal>
</div>
<h3 class="p-1">M3ジャケット</h3>
<div class="row m-md-3">
<cg-card v-for="(item,index) in items.m3_items" v-bind:item="item" v-bind:name="'M3'" v-bind:index="index" v-bind:isob="isOB(item.author)" v-bind:cardtype="getCardType(item.card_type)" ></cg-modal>
</div>
<h3 class="p-1">その他コミックマーケット等で出した作品</h3>
<h4>2020年度</h4>
<div class="row m-md-3" >
<cg-card v-for="(item,index) in items.other_items2020" v-bind:item="item" v-bind:name="'other2020'" v-bind:index="index" v-bind:isob="isOB(item.author)" v-bind:cardtype="getCardType(item.card_type)" ></cg-modal>
</div>
<h4>2019年度</h4>
<div class="row m-md-3" >
<cg-card v-for="(item,index) in items.other_items2019" v-bind:item="item" v-bind:name="'other2019'" v-bind:index="index" v-bind:isob="isOB(item.author)" v-bind:cardtype="getCardType(item.card_type)" ></cg-modal>
</div>
<h4>2018年度</h4>
<div class="row m-md-3" >
<cg-card v-for="(item,index) in items.other_items2018" v-bind:item="item" v-bind:name="'other2018'" v-bind:index="index" v-bind:isob="isOB(item.author)" v-bind:cardtype="getCardType(item.card_type)" ></cg-modal>
</div>
<h4>2017年度</h4>
<div class="row m-md-3" >
<cg-card v-for="(item,index) in items.other_items2017" v-bind:item="item" v-bind:name="'other2017'" v-bind:index="index" v-bind:isob="isOB(item.author)" v-bind:cardtype="getCardType(item.card_type)" ></cg-modal>
</div>
</div>
</section>
<script type="text/javascript">footer('');</script>
<script type="text/javascript" src="src/cg-works.js"></script>
</body>
</html>