diff options
author | Sashi20 | 2023-04-06 12:18:17 +0530 |
---|---|---|
committer | Sashi20 | 2023-04-06 12:18:17 +0530 |
commit | 6ee4380a3eefa8586528c649aa976a53f1853611 (patch) | |
tree | 3c1e55384796aaae59037ba863965fd9ddf952a6 | |
parent | 4c31e04e80c38df2f2d0cb46eedc7c990aa78a71 (diff) | |
download | fossee-banners-1-6ee4380a3eefa8586528c649aa976a53f1853611.tar.gz fossee-banners-1-6ee4380a3eefa8586528c649aa976a53f1853611.tar.bz2 fossee-banners-1-6ee4380a3eefa8586528c649aa976a53f1853611.zip |
Update fellowship banner with extended registration date
-rwxr-xr-x | banner.php | 25 |
1 files changed, 4 insertions, 21 deletions
@@ -1,34 +1,17 @@ <?php $today = date("Y-m-d H:i:s"); -$p_date = "2023-04-15 23:59:59.0"; -$fellowship_date = "2023-04-07 23:59:59.0"; +$fellowship_date = "2023-04-14 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://fossee.in/fellowship/2023" target="_blank"> - <img src="https://static.fossee.in/fossee/banners/fsf-2023-banner.png"> +<div style="margin-bottom:5px; border-bottom:none; width:90%; background-color:transparent;"> + <a href="https://fossee.in/fellowship/2023" target="_blank"> + <img src="https://static.fossee.in/fossee/banners/fsf-2023-banner-extended.png"> </a> - <a class="nice-text" href="https://iitb-fossee-mapathon.fossee.in/" target="_blank"> - <img src="https://static.fossee.in/qgis/banners/mapathon_2023_banner.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="https://iitb-fossee-mapathon.fossee.in/" target="_blank"> - <img src="https://static.fossee.in/qgis/banners/mapathon_2023_banner.gif"> - </a> - -</div> -'; -} ?> |