-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstagram.php
56 lines (48 loc) · 2.01 KB
/
instagram.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
<?php
//Starting a session for scrape YouTube
session_start();
ob_start();
include "./conn/conn.php";
include "./assets/files/get_webfixer/latest_webfixer.php";
include "./assets/files/header/body_header.php";
include "./assets/files/footer/footer_main.php";
include "./assets/files/insta/body_section.php";
$current_url = get_latest_webfixer($conn);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FIPY Downloader</title>
<link rel="stylesheet" href="<?php echo get_latest_webfixer($conn)?>/tailwind.css"/>
<link rel="shortcut icon" href="<?php echo get_latest_webfixer($conn)?>/assets/logo_fav/fav.svg" type="image/x-icon">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!--library css-->
<link rel="stylesheet" href="<?php echo get_latest_webfixer($conn)?>/assets/lib/style.css"/>
<!-- dark and light mode theme check -->
<script src="<?php echo get_latest_webfixer($conn)?>/theme.js" ></script>
</head>
<body class="bg-gray-100 dark:bg-gray-900 overflow-x-hidden">
<!-- Header navbar designed started -->
<?php
body_header_navbar($conn,get_latest_webfixer($conn));
?>
<!-- Header navbar designed ended -->
<!-- Header hero section design started -->
<?php
insta_body(get_latest_webfixer($conn));
?>
<!-- Header hero section design ended -->
<!-- Footer section design started -->
<?php echo footer(get_latest_webfixer($conn));?>
<!-- Footer section design ended -->
<script src="<?php echo get_latest_webfixer($conn)?>/assets/files/pinterest/more_info.js" ></script>
<script src="<?php echo get_latest_webfixer($conn)?>/main.js" ></script>
<script src="<?php echo get_latest_webfixer($conn)?>/assets/lib/jquery-cookie/src/jquery.cookie.js" ></script>
<!-- This js is a library section -->
<script src="<?php echo get_latest_webfixer($conn)?>/assets/lib/main.js"></script>
<!-- This js is a library section -->
</body>
</html>