-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
73 lines (57 loc) · 2.4 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
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<?php include("head.php"); ?>
<body>
<script src="js/jquery-3.1.1.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="node_modules\lightgallery.js\dist\js\lightgallery.js"></script>
<script type="text/javascript" src="lib/d3/d3.js"></script>
<script type="text/javascript" src="js/functions.js"></script>
<script type="text/javascript" src="js/projectData.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<div id="blank"></div>
<div id="project_content_table">
<div id="project_content_tablecell">
<?php
include("header.php");
include("navigation.php");
?>
<section id="content">
<!-- first one -->
<div class="project_wrapper">
<div class="project" data-num="0">
<div id="flareon_img" style="background-image: url(http://rs596.pbsrc.com/albums/tt46/Arashi_The_Glaceon/HGSS-Overworld-Flareon-Runn.gif~c200)"></div>
<h2>pyphi(lia)</h2>
<p>
graphist, developer and programmer<br/>Computer Science Master student<br/>Switzerland<br/>
</p>
<a href="mailto:[email protected]">[email protected]</a>
<!-- <div class="lightgallery">
<a href="http://i.imgur.com/6xnX76f.png">
<img src="http://i.imgur.com/6xnX76f.png"/>
</a>
</div> -->
</div>
</div>
<div id="sns">
<span><a target="_blank" href="https://www.facebook.com/creaphy?ref=hl"><i class="fa fa-facebook-square" aria-hidden="true"></i></a></span>
<span onclick="tumblrPrevent(this)"><!-- <a target="_blank" href="http://cyberoppa.tumblr.com/"> -->
<i class="fa fa-tumblr-square" aria-hidden="true"></i><!-- </a> -->
</span>
<span id="arrowLeft"><i class="fa fa-chevron-left" aria-hidden="true"></i></span>
<span id="arrowRight"><i class="fa fa-chevron-right" aria-hidden="true"></i></span>
<span><a target="_blank" href="https://www.instagram.com/b2utily_flareon/"><i class="fa fa-instagram" aria-hidden="true"></i></a></span>
<span><a target="_blank" href="https://www.linkedin.com/in/kim-lan-phan-hoang-a457bb130/"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a></span>
</div>
</section>
</div>
</div>
<script>
// set lightboxes
var lightboxes = document.getElementsByClassName('lightgallery');
[].forEach.call(lightboxes, function(e){
lightGallery(e);
});
</script>
</body>
</html>