-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
77 lines (58 loc) · 2.5 KB
/
footer.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
74
75
76
77
<?php include_once "database.php" ?>
<footer>
<div class="row">
<?php
$sorgu = $db->query("SELECT * FROM sosyalmedya ", PDO::FETCH_ASSOC)->fetch();
?>
<div class="twelve columns">
<ul class="social-links">
<li><a href= "https://www.facebook.com/<?php echo $sorgu['facebook'] ?>"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/<?php echo $sorgu['twitter'] ?>"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://plus.google.com/<?php echo $sorgu['googleplus'] ?>"><i class="fa fa-google-plus"></i></a></li>
<li><a href="https://github.com/<?php echo $sorgu['github'] ?>"><i class="fa fa-github-square"></i></a></li>
<li><a href="https://www.instagram.com/<?php echo $sorgu['instagram'] ?>"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<div class="six columns info">
<h3>Hakkında</h3>
<p>
Bu staj bloğu Atatürk Üniversitesi BAUM'da staj yapan İbrahim Kurt'a aittir.
</p>
</div>
<div class="four columns">
<h3>Photostream</h3>
<?php function instagram()
{
$username = 'nasa';
$json = file_get_contents('https://www.instagram.com/'.$username.'/media/');
$instagram_feed_data = json_decode($json, true);
if (isset($instagram_feed_data['items'])) {
return $instagram_feed_data['items'];
?>
<?php
}
}
?>
<ul class="photostream group">
<?php
$item = instagram();
for($i=0;$i<8;$i++) {
$link = $item[$i]['link'];
$img_url = $item[$i]['images']['low_resolution']['url'];
echo "<li><a href='$link'><img src='$img_url'></a></li>";
} ?>
</ul>
</div>
<div class="two columns">
<h3 class="social">Navigate</h3>
<ul class="navigate group">
<li><a href="index.php">Home</a></li>
<li><a href="blog.php">Blog</a></li>
<li><a href="archives.php">Archives</a></li>
<li><a href="page.php">Page</a></li>
</ul>
</div>
<p class="copyright">© 2017 Design by <a title="Styleshout" href="http://www.styleshout.com/">ibrahim Kurt</a>.</p>
</div> <!-- End row -->
<div id="go-top"><a class="smoothscroll" title="Back to Top" href="#top"><i class="fa fa-chevron-up"></i></a></div>
</footer> <!-- End Footer-->