-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
59 lines (51 loc) · 2.21 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
<?php
require_once 'app/counter.php';
require_once 'app/config.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include ('inc/meta.php'); ?>
<title>Eissaweb - Facebook video Downloader</title>
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Fredoka+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="icon"
type="image/png"
href="icons/favicon-32x32.png">
<script data-ad-client="ca-pub-8029326152956282" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
</head>
<body class="" style="font-family: 'Roboto', sans-serif !important;">
<?php require_once 'inc/navbar.php'; ?>
<div class="container bg-white rounded" style="border:1px solid #bbb">
<!-- Navbar -->
<!-- Image and text -->
<!-- Navbar -->
<h1 class="text-center my-5"><?= $pageName ?>Download & Save Facebook Video</h1>
<div class="row">
<div class="col-md-2 mt-3 d-none d-md-block">
</div>
<div class="col-md-8" id="app">
<!-- This will be part of download-video component -->
<download-video></download-video>
<affiliate-ads ads=""></affiliate-ads>
<!-- Ads here -->
<div class="row">
<div class="col-md-4">
</div>
<div class="col-md-4"></div>
<div class="col-md-4"></div>
</div>
</div>
<div class="col-md-2">
<!-- Google ads -->
</div>
</div>
</div>
<!-- Blog Place, we will not use vue.js for the sake of SEO -->
<?php include ('inc/how-to-download.php') ?>
<!-- Footer -->
<?php include ('inc/footer.php') ?>
<script src="js/app.js"></script>
</body>
</html>