forked from yTakkar/Instagram-clone
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeveloper.php
More file actions
67 lines (59 loc) · 2.4 KB
/
Copy pathdeveloper.php
File metadata and controls
67 lines (59 loc) · 2.4 KB
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
<?php include 'config/declare.php'; ?>
<!-- a universal file that has all the classes included -->
<?php include 'config/classesGetter.php'; ?>
<!-- creating objects -->
<?php
$universal = new universal;
$avatar = new Avatar;
$post = new post;
$noti = new notifications;
$message = new message;
?>
<?php
$title = "{$noti->titleNoti()} Developer • Instagram";
$keywords = "Instagram, Share and capture world's moments, share, capture, about";
$desc = "Instagram lets you capture, follow, like and share world's moments in a better way and tell your story with photos, messages, posts and everything in between";
?>
<!-- including files for header of document -->
<?php
if ($universal->isLoggedIn()) {
include 'includes/header.php';
include 'needs/heading.php';
include 'needs/nav.php';
include_once 'needs/search.php';
} else if ($universal->isLoggedIn() == false) {
include 'index_include/index_header.php';
}
?>
<div class="overlay"></div>
<div class="notify"><span></span></div>
<div class="badshah">
<div class="dev_div inst">
<img src="/faiyaz/Instagram/images/needs/tumblr_ne4s7eGNYj1snc5kxo1_500.gif" alt="">
<span>Developed by <a href="/faiyaz/Instagram/profile/takkar007">Faiyaz shaikh</a> currently 18 living in Dharavi, Mumbai.</span>
<span>He's a full-stack developer and mostly writes code in JavaScript as it is his favourite language. And why he is programmer - 'coz he thinks programming languages can make anyone a magician!!</span>
<span>Other Interests:</span>
<span>Travelling</span>
<span>Qawwali, Shayari & Ghazals</span>
<span>Fantasy & Imagination</span>
<span>UI/UX</span>
<span>Designing</span>
<span>Simplicity</span>
<span>Paintings</span>
<span>Nature - (Reason why I love travelling)</span>
<span>Motivation-Oriented stuffs</span>
<span>... and much more</span>
<div class="dev_div_links">
<a href="https://www.facebook.com/profile.php?id=100009110960262" class="sec_btn">Facebook</a>
<a href="https://www.instagram.com/_faiyaz_shaikh/" class="sec_btn">Real Instagram</a>
<a href="https://twitter.com/shtakkar" class="sec_btn">Twitter</a>
</div>
</div>
</div>
<?php
if ($universal->isLoggedIn()) {
include 'includes/footer.php';
} else if ($universal->isLoggedIn() == false) {
include 'index_include/index_footer.php';
}
?>