-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.php
executable file
·62 lines (50 loc) · 2.21 KB
/
index.php
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
<!DOCTYPE html>
<html lang="ja">
<!-- 共通<head>タグ -->
<?php include (dirname(__FILE__).'/html/parts/head_tag.html'); ?>
<head>
<title>片山(徹)研究室 : 宮崎大学</title>
</head>
<body>
<!-- ヘッダー -->
<?php include (dirname(__FILE__).'/html/parts/header.html'); ?>
<!-- メニュー -->
<?php include (dirname(__FILE__).'/html/parts/menu.html'); ?>
<!-- 本文ブロック -->
<div class="container" style="background:#;height:auto;">
<div class="f-rounded row">
<div class="col-sm-5 visible-sm visible-md visible-lg">
<p></p>
<img src="../images/welcome.jpg" class="img-responsive img-rounded" alt="ひらこばの写真">
</div>
<div class="col-sm-5 visible-xs">
<p></p>
<img src="../images/welcome_wide.jpg" class="img-responsive img-rounded" alt="ひらこばの写真">
</div>
<div class="col-sm-7">
<h1>Think Software Engineering!</h1>
片山(徹)研では, 「ソフトウェア開発における人間の負担をいかに減らし、ソフトウェアの品質を上げることができるのか?」 をテーマに、リファクタリング,形式手法,モデリング言語、テスト等を研究しています。
</div>
</div>
<hr>
<div class="row">
<div class="f-rounded col-xs-12">
<h2>News</h2>
<?php include (dirname(__FILE__).'/html/parts/news.html'); ?>
</div>
</div>
<hr>
<div class="row">
<div class="f-rounded col-xs-12 col-md-8">
<h2>Twitter</h2>
<a class="twitter-timeline" height="80vh" href="https://twitter.com/miyazaki_katlab?ref_src=twsrc%5Etfw">Tweets by miyazaki_katlab</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</div>
<p></p>
<!-- フッター -->
<?php include (dirname(__FILE__).'/html/parts/footer.html'); ?>
<!-- Javascriptの読み込み -->
<?php include (dirname(__FILE__).'/html/parts/js_load.html'); ?>
</body>
</html>