BossBey File Manager
PHP:
7.4.33
OS:
Linux
User:
root
Root
/
home
/
vssraipur
/
public_html
📤 Upload
📝 New File
📁 New Folder
Close
Editing: newsletter.php
<?php include('header.php'); ?> <div class="page-title parallax parallax1"> <div class="overlay"></div> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="page-title-heading"> <h1 class="title">Newsletter</h1> <div class="breadcrumbs"> <ul> <li><a href="">Venkateshwar Signature School</a></li> <li>Newsletter</li> </ul> </div> </div> </div> </div> </div> </div> <?php $newsletter=array( 'October-December 2025', 'July-September 2025', 'April-June 2025', 'January - March 2025', 'October - December 2024', 'July - September 2024', 'April - June 2024', 'January - March 2024', 'October - December 2023', 'July-September 2023', 'April - June 2023', 'January – March 2023', 'October – December 2022', 'July-September 2022', 'April – June 2022', 'January -March 2022', 'October – December 2021', ); ?> <section class="flat-row pad-top0px pad-bottom85px" style="padding-top: 90px;"> <div class="container"> <div class="row"> <?php foreach($newsletter as $n){ ?> <div class="col-md-3 col-sm-4 col-xs-6 width-full-595"> <div class="magzine_box"> <a href="<?=$url?>/view_newsletter.php/<?=$n?>" style="background-image: url('<?=$url?>/newsletter/<?=$n?>/1.jpg');" target="_blank" title="Newsletter"> <h3><?=$n?></h3> </a> </div> </div> <?php } ?> </div> </div> </section> <style> .col-md-3 { padding: 6px; } .magzine_box a:hover { transform: scale(1.2); } .magzine_box { text-align: center; position: relative; overflow: hidden; border: 8px solid #790e12; } .magzine_box a:before { content: ''; position: absolute; left: 0; right: 0; top: 0; bottom: 0; background-color: rgb(0 0 0 / 49%); } .magzine_box a h3 { color: white; width: 100%; position: relative; z-index: 1; padding: 0 15px; margin: 0; } .magzine_box a { display: flex; align-items: center; height: 400px; background-size: cover; background-position: 100%; position: relative; } .mb_20 { margin-bottom: 20px; } @media(max-width: 991px) {} @media(max-width: 595px) { .width-full-595 { width: 100%; } .mb_20 { margin-bottom: 10px; } .magzine_box a { display: flex; align-items: center; height: 450px; background-size: cover; background-position: 100%; position: relative; } } </style> <?php include('footer.php'); ?>
Save
Cancel