-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudents.php
executable file
·96 lines (80 loc) · 3.77 KB
/
students.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
// Load the accepted language
include('includes/lang-loader.php');
$selectedLang = parseAskedLang();
include(getLangFile($selectedLang));
?>
<!DOCTYPE html>
<html lang=<?php echo $selectedLang ?>>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-144927724-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-144927724-1');
</script>
<title><?php echo $lang['students-title']; ?></title>
<!-- Meta description for SEO -->
<meta name="description" content="<?php echo $lang['students-metaDescription']; ?>" />
<!-- Canonical link to reference the master copy of the URL to SEO -->
<link rel="canonical" href="http://vhmavi.edu.np/students.php" />
<!-- Common head include -->
<?php include('includes/head.php'); ?>
<!-- Specific stylesheet -->
<link rel="stylesheet" href="css/students.css" />
<!-- Text with image rows stylesheet -->
<link rel="stylesheet" href="components/vhmavi-txt-img-shared-row/vhmavi-txt-img-shared-row.css" />
<!-- Full width image stylesheet -->
<link rel="stylesheet" href="components/vhmavi-full-width-img/vhmavi-full-width-img.css" />
</head>
<body>
<!-- Header include -->
<?php include('components/vhmavi-header/vhmavi-header.php'); ?>
<div class="container vhmavi-container">
<div class="row justify-content-center">
<div class="col-12 col-lg-9">
<h1><?php echo $lang['students-paragraph1Header']; ?></h1>
<p><?php echo $lang['students-paragraph1Text1']; ?></p>
</div>
</div>
</div>
<div class="container vhmavi-container vhmavi-text-img-shared-container">
<div class="row row-cols-1 row-cols-lg-2 vhmavi-txt-img-shared-row">
<div class="col vhmavi-text-col vhmavi-text-col-left">
<h2 class="vhmavi-students-h2"><?php echo $lang['students-paragraph2Header']; ?></h2>
<p><?php echo $lang['students-paragraph2Text1']; ?></p>
</div>
<div class="col vhmavi-img-col vhmavi-img-col-right">
<img src="img/students/student_smile.jpg" alt="<?php echo $lang['students-imgAlt1']; ?>" id="vhmavi-img-student-smile" />
</div>
</div>
</div>
<div class="container vhmavi-container">
<div class="row justify-content-center">
<div class="col-12 col-lg-9">
<h2 class="vhmavi-students-h2"><?php echo $lang['students-paragraph3Header']; ?></h2>
<p><?php echo $lang['students-paragraph3Text1']; ?></p>
<p><?php echo $lang['students-paragraph3Text2']; ?></p>
<p><?php echo $lang['students-paragraph3Text3']; ?></p>
</div>
</div>
</div>
<div class="container vhmavi-container vhmavi-full-width-img-container">
<div class="row">
<div class="col vhmavi-img-col">
<img src="img/students/student_group.jpg" alt="<?php echo $lang['students-imgAlt2']; ?>" id="vhmavi-img-student-group" />
</div>
</div>
</div>
<!-- Footer include -->
<?php include('components/vhmavi-footer/vhmavi-footer.php'); ?>
<!-- Bootstrap and JQuery script loader include -->
<?php include('includes/script-loader.php'); ?>
<!-- Load text with image rows script -->
<script src="components/vhmavi-txt-img-shared-row/vhmavi-txt-img-shared-row.js"></script>
<!-- School data script loading -->
<script src="js/school-figures.js"></script>
</body>
</html>