-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessagefromdirector.php
95 lines (87 loc) · 4.18 KB
/
messagefromdirector.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
<?php
require("./fetch_data/fetch_admin.php");
require("./fetch_data/fetch_departments.php");
?>
<?php
// code to get news using its id
include("./database/conn_admin.php"); //database config
?>
<!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">
<meta name="theme-color" content="#0d46d5">
<link rel="shortcut icon" href="./assets/images/favicon.ico" type="image/x-icon">
<!-- font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<!-- styles -->
<style>
@import url("./css/reset.css");
@import url("./css/app.css");
</style>
<title>Message From Director-SOE</title>
<!-- spotlight -->
<link rel="preload" href="./javascript/spotlight.bundle.js" as="script">
</head>
<body>
<!-- header nav -->
<?php
include("./header.php");
?>
<main class="cd-main-contentS">
<section class="component-main component-main-posts">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<div data-toggle="tooltip" data-placement="left" title="Home"><a href="./index.php"><i class="fa-solid fa-house"></i></a></div>
</li>
<li class="breadcrumb-item active" aria-current="page">Message From Director</li>
</ol>
<div class="tiles-container content-with-sidebar">
<div class="post-descriptive">
<p class="title program-title">Message From Director</p>
<div class="staff-profile">
<div class="profile-description">
<p class="profile-description-text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Culpa, sequi! Blanditiis voluptatibus corporis dolore amet ipsa fugiat non, magnam consectetur?</p>
</div>
<div class="profile-image-name-title">
<img src="./assets/images/logo_pu.png" alt="message from director">
<div class="title-name">
<p class="profile-name-124X58rr">Er. Om Prakash Sharma</p>
<p class="title-124X58rr">SOE Director</p>
</div>
</div>
</div>
</div>
<!-- recent posts -->
<section class="side-nav">
<div class="useful-links">
<div class="latest-header">
<div>
<h1>Useful Links</h1>
</div>
</div>
<div class="latest-posts-post">
<div class="recent-posts-title link-sticky">
<a href="message.php?from=B.E. Computer&key=1">Message from Coordinator</a>
<?php getcourselink(0); ?>
</div>
</div>
</div>
</section>
</div>
</section>
<?php
include("./footer.php");
?>
</main>
<!-- footer -->
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="./javascript/spotlight.bundle.js" differ></script>
<script src="./javascript/index.js"></script>
</body>
</html>