-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
303 lines (223 loc) · 10.9 KB
/
home.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<?php
include('config/connect.php');
?>
<!DOCTYPE html>
<html dir="ltr" lang="en-US"><head>
<meta charset="utf-8">
<title>Educato Home</title>
<meta name="viewport" content="initial-scale = 1.0, maximum-scale = 1.0, user-scalable = no, width = device-width">
<!--[if lt IE 9]><script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link rel="stylesheet" href="css/style.css" media="screen">
<!--[if lte IE 7]><link rel="stylesheet" href="style.ie7.css" media="screen" /><![endif]-->
<link rel="stylesheet" href="css/style.responsive.css" media="all">
<script src="javascript/jquery.js"></script>
<script src="javascript/script.js"></script>
<script src="javascript/script.responsive.js"></script>
<script>jQuery(function($) {
'use strict';
if ($.fn.slider) {
$(".art-slidecontainere1").each(function () {
var slideContainer = $(this), tmp;
var inner = $(".art-slider-inner", slideContainer);
var helper = null;
if ($.support.transition) {
helper = new BackgroundHelper();
helper.init("fade", "next", $(".art-slide-item", inner).first().css($.support.transition.prefix + "transition-duration"));
inner.children().each(function () {
helper.processSlide($(this));
});
}
inner.children().eq(0).addClass("active");
slideContainer.slider({
pause: 2600,
speed: 600,
repeat: true,
animation: "fade",
direction: "next",
navigator: slideContainer.siblings(".art-slidenavigatore1"),
helper: helper
});
});
}
});
</script><style>.art-content .art-postcontent-0 .layout-item-0 { margin-bottom: 10px; }
.art-content .art-postcontent-0 .layout-item-1 { border-top-width:1px;border-top-style:solid;border-top-color:#DEDEDE;margin-top: 5px;margin-bottom: 5px; }
.art-content .art-postcontent-0 .layout-item-2 { border-right-style:solid;border-right-width:1px;border-right-color:#DEDEDE; padding-right: 10px;padding-left: 10px; }
.art-content .art-postcontent-0 .layout-item-3 { padding-right: 10px;padding-left: 10px; }
.art-content .art-postcontent-0 .layout-item-4 { border-top-width:0px;border-top-style:solid;border-top-color:#DEDEDE;margin-top: 5px;margin-bottom: 5px; }
.art-content .art-postcontent-0 .layout-item-5 { border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-width:0px;border-top-color:#3D91D6;border-right-color:#3D91D6;border-bottom-color:#3D91D6;border-left-color:#3D91D6; }
.art-content .art-postcontent-0 .layout-item-6 { border-top-width:0px;border-top-style:solid;border-top-color:#DEDEDE; }
.art-content .art-postcontent-0 .layout-item-7 { border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-width:0px;border-top-color:#3D91D6;border-right-color:#3D91D6;border-bottom-color:#3D91D6;border-left-color:#3D91D6; padding-right: 10px;padding-left: 0px; }
.art-content .art-postcontent-0 .layout-item-8 { padding-right: 0px;padding-left: 20px; }
.ie7 .art-post .art-layout-cell {border:none !important; padding:0 !important; }
.ie6 .art-post .art-layout-cell {border:none !important; padding:0 !important; }
.art-slidecontainere1 {
position: relative;
width: 660px;
height: 203px;
}
.art-slidecontainere1 .art-slide-item
{
}
.art-slidecontainere1 .art-slide-item {
-webkit-transition: 600ms ease-in-out opacity;
-moz-transition: 600ms ease-in-out opacity;
-ms-transition: 600ms ease-in-out opacity;
-o-transition: 600ms ease-in-out opacity;
transition: 600ms ease-in-out opacity;
position: absolute;
display: none;
left: 0;
top: 0;
opacity: 0;
width: 100%;
height: 100%;
}
.art-slidecontainere1 .active, .art-slidecontainere1 .next, .art-slidecontainere1 .prev {
display: block;
}
.art-slidecontainere1 .active {
opacity: 1;
}
.art-slidecontainere1 .next, .art-slidecontainere1 .prev {
width: 100%;
}
.art-slidecontainere1 .next.forward, .art-slidecontainere1 .prev.back {
opacity: 1;
}
.art-slidecontainere1 .active.forward {
opacity: 0;
}
.art-slidecontainere1 .active.back {
opacity: 0;
}
.art-slidee10 {
background-image: url('images/slidee10.jpg');
background-size: 100%;
background-position: 0 0;
background-repeat: no-repeat;
}
.art-slidee11 {
background-image: url('images/slidee11.jpg');
background-size: 100%;
background-position: 0 0;
background-repeat: no-repeat;
}
.art-slidee12 {
background-image: url('images/slidee12.jpg');
background-size: 100%;
background-position: 0 0;
background-repeat: no-repeat;
}
.art-slidee13 {
background-image: url('images/slidee13.jpg');
background-size: 100%;
background-position: 0 0;
background-repeat: no-repeat;
}
.art-slidenavigatore1 {
display: inline-block;
position: absolute;
direction: ltr !important;
top: 179px;
left: 87.27%;
z-index: 101;
line-height: 0 !important;
-webkit-background-origin: border !important;
-moz-background-origin: border !important;
background-origin: border-box !important;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
text-align: center;
white-space: nowrap;
}
.art-slidenavigatore1
{
background: #9EC8EA;background: linear-gradient(top, rgba(226, 238, 249, 0.6) 0, rgba(91, 162, 220, 0.6) 100%) no-repeat;background: -webkit-linear-gradient(top, rgba(226, 238, 249, 0.6) 0, rgba(91, 162, 220, 0.6) 100%) no-repeat;background: -moz-linear-gradient(top, rgba(226, 238, 249, 0.6) 0, rgba(91, 162, 220, 0.6) 100%) no-repeat;background: -o-linear-gradient(top, rgba(226, 238, 249, 0.6) 0, rgba(91, 162, 220, 0.6) 100%) no-repeat;background: -ms-linear-gradient(top, rgba(226, 238, 249, 0.6) 0, rgba(91, 162, 220, 0.6) 100%) no-repeat;background: linear-gradient(top, rgba(226, 238, 249, 0.6) 0, rgba(91, 162, 220, 0.6) 100%) no-repeat;-svg-background: linear-gradient(top, rgba(226, 238, 249, 0.6) 0, rgba(91, 162, 220, 0.6) 100%) no-repeat;
-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;
padding:7px;
}
.art-slidenavigatore1 > a
{
background: #2572B1;
-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;
margin:0 10px 0 0;
width: 10px;
height: 10px;
}
.art-slidenavigatore1 > a.active
{
background: #C7C7C7;
-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;
margin:0 10px 0 0;
width: 10px;
height: 10px;
}
.art-slidenavigatore1 > a:hover
{
background: #949494;
-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;
margin:0 10px 0 0;
width: 10px;
height: 10px;
}
</style></head>
<body>
<div id="art-main">
<?php include('template/header.php'); ?>
<div class="art-sheet clearfix">
<?php include('template/nav.php'); ?>
<div class="art-layout-wrapper">
<div class="art-content-layout">
<div class="art-content-layout-row">
<div class="art-layout-cell art-content"><article class="art-post art-article">
<div class="art-postcontent art-postcontent-0 clearfix">
<!--block pic Navigation-->
<?php include('template/picnav.php'); ?>
<!--End of block pic Navigation-->
<div class="art-content-layout-br layout-item-1">
</div><div class="art-content-layout-br layout-item-4">
</div><div class="art-content-layout layout-item-5">
<div class="art-content-layout-row">
<div class="art-layout-cell layout-item-7" style="width: 25%" >
<h1>News</h1>
<?php news($dbc); ?>
</div>
<div class="art-layout-cell layout-item-8" style="width: 75%" >
<h1>Welcom To Govt Higher Secondary School Ghani Dheri </h1>
<p><span style="font-style:italic;">Govt Higher Secondary Is Situated Near The bazar</span></p>
<p></p><div id="e1" style="position: relative; display: inline-block; z-index: 0; margin: 0px; border-width: 0px; " class="art-collage">
<div class="art-slider art-slidecontainere1" data-width="660" data-height="203">
<div class="art-slider-inner">
<div class="art-slide-item art-slidee10">
</div>
<div class="art-slide-item art-slidee11">
</div>
<div class="art-slide-item art-slidee12">
</div>
<div class="art-slide-item art-slidee13">
</div>
</div>
</div>
<div class="art-slidenavigator art-slidenavigatore1" data-left="87.27">
<a href="#" class="art-slidenavigatoritem"></a><a href="#" class="art-slidenavigatoritem"></a><a href="#" class="art-slidenavigatoritem"></a><a href="#" class="art-slidenavigatoritem"></a>
</div>
</div>
<p></p>
<p><br></p>
<h1>Principal Message</h1>
<p><img width="128" height="149" alt="" class="art-lightbox" src="images/principal.png" style="float: left; margin-right: 10px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: rgb(221, 236, 248); border-right-color: rgb(221, 236, 248); border-bottom-color: rgb(221, 236, 248); border-left-color: rgb(221, 236, 248); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; "></p><p>Govt higher Secondary School Ghani Dheri was established in 1995 with the sole aim of providing to the new generation a high standard education and an all round training for grooming a confident literate personality along with a strong moral character. The institution was initially started as “School”, imparting education from primary up to secondary level. However, a necessity was being felt for an up to the mark private sector intermediate level science college in Swat valley, which could appropriately prepare students for their meritorious admissions in professional colleges. Consequent upon the incessant demands from the public, G H S S was upgraded to intermediate science college in <br></p><h1>Minsister Message</h1><p><img width="127" height="149" alt="" class="art-lightbox" src="images/Minister.jpg" style="float: left; margin-right: 10px; ">Fusce ornare elit nisl, feugiat bibendum lorem. Vivamus pretium dictum sem vel laoreet. In fringilla pharetra purus, semper vulputate ligula cursus in. Donec at nunc nec dui laoreet porta eu eu ipsum. Sed eget lacus sit amet risus elementum dictum. Pellentesque sit amet imperdiet nunc. Aenean tellus mi, adipiscing sit amet laoreet eget, lobortis quis nisl. Nunc a sollicitudin est. Curabitur ullamcorper gravida felis, sit amet scelerisque lorem iaculis sed.</p><p><br></p><p><br></p><p><br></p>
</div>
</div>
</div>
<div class="art-content-layout-br layout-item-6">
</div></div>
</article></div>
</div>
</div>
</div>
<?php include('template/footer.php');?>
</div>
</div>
</body></html>