forked from FOSSEE/fossee-banners
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanner.php
executable file
·38 lines (31 loc) · 1.76 KB
/
banner.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
<?php
$today = date("Y-m-d H:i:s");
$hackathon_date = "2025-02-10 23:59:59.0";
$fellowship_date = "2025-01-31 23:59:59.0";
if($today<$fellowship_date){
echo ' <link rel="stylesheet" type="text/css" href="https://fossee.in/data/banner/css/nice-bar.css" />
<link rel="stylesheet" type="text/css" href="https://fossee.in/data/banner/css/lightbox.css" />
<script type="text/javascript" src="https://fossee.in/data/banner/js/nice-bar.js"></script>
<div class="nice-bar" style="margin-bottom:5px; border-bottom:none; width:90%; background-color:transparent;">
<a class="nice-text" href="https://scilab-hackathon.fossee.in/" target="_blank">
<img src="https://static.fossee.in/scilab/banners/sci-webbnr-96.gif">
</a>
<a class="nice-text" href="https://fossee.in/semester-internship/2025" target="_blank">
<img src="https://static.fossee.in/fossee/banners/three.gif">
</a>
</div>
';
// class="nice-bar" class="nice-text"
}
else{
echo ' <link rel="stylesheet" type="text/css" href="https://fossee.in/data/banner/css/nice-bar.css" />
<link rel="stylesheet" type="text/css" href="https://fossee.in/data/banner/css/lightbox.css" />
<script type="text/javascript" src="https://fossee.in/data/banner/js/nice-bar.js"></script>
<div style="margin-bottom:5px; border-bottom:none; width:90%; background-color:transparent;">
<a href="hhttps://scilab-hackathon.fossee.in/" target="_blank">
<img src="https://static.fossee.in/scilab/banners/sci-webbnr-96.gif">
</a>
</div>
';
}
?>