-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlang.php
More file actions
71 lines (67 loc) · 2.17 KB
/
lang.php
File metadata and controls
71 lines (67 loc) · 2.17 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
68
69
70
71
<?php
include "config.php";
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>
<?php echo $lang['title'] ?>
</title>
<link rel="stylesheet" href="bootstrap-4.0.0-dist/css/bootstrap.min.css">
<style type="text/css">
.footer {
left: 0;
position: fixed;
bottom: 0;
text-align: center;
color: white;
width: 100%;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">
<?php echo $lang['home'] ?>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<?php echo $lang['pricing'] ?>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<?php echo $lang['contact'] ?>
</a>
</li>
</ul>
</nav>
<div class="container" style="margin-top: 100px;">
<div class="row justify-content-center">
<div class="col-md-6 col-md-offset-3 text-center">
<h1>
<?php echo $lang['title'] ?>
</h1>
<p>
<?php echo $lang['description'] ?>
</p>
</div>
</div>
</div>
<div class="footer bg-dark">
<a href="index.php?lang=en">
<?php echo $lang['lang_en'] ?>
</a>
|
<a href="index.php?lang=mr">
<?php echo $lang['lang_mr'] ?>
</a>
</div>
</body>
</html>