forked from TehNut/tehnut.info
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
42 lines (37 loc) · 1.43 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
<html>
<head>
<meta charset="utf-8">
<title>TehNut</title>
<link rel="shortcut icon" href="img/nutfavicon.png">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic|Lato:300,400,500,600' rel='stylesheet' type='text/css' />
<link href='http://code.ionicframework.com/ionicons/1.5.2/css/ionicons.min.css' rel='stylesheet' type='text/css' />
<link href='css/main.css?' rel='stylesheet' type='text/css' />
</head>
<body>
<?php include 'include/header.php'; ?>
<div class="container">
<div class="box">
<div class="inner">
<a href="https://twitter.com/OfficialTehNut" target="_blank"><span class="icon ion-social-twitter"></span>
<h2>Twitter</h2></a>
<p>For when I occasionally tweet stuff.</p>
</div>
</div>
<div class="box">
<div class="inner">
<a href="https://github.com/TehNut/" target="_blank"><span class="icon ion-social-github"></span>
<h2>GitHub</h2></a>
<p>Everything I work on is open source. Here it all is.</p>
</div>
</div>
<div class="box">
<div class="inner">
<a href="http://steamcommunity.com/profiles/76561198041871599" target="_blank"><span class="icon ion-steam"></span>
<h2>Steam</h2></a>
<p>I like playing games. Feel free to add me :D</p>
</div>
</div>
</div>
<?php include 'include/footer.php'; ?>
</body>
</html>