Priority File Manager

📁 public_html
Base Directory:
/home/ecedu/public_html/cce/Views/layouts
NameTypeSizeActions
📁 .. Folder -
📄 aboutus-layout.php File 1676
Edit Download
📄 article-layout.php File 21975
Edit Download
📄 back-top.php File 706
Edit Download
📄 body-layout.php File 1313
Edit Download
📄 contactus-layout.php File 4025
Edit Download
📄 department-layout.php File 3736
Edit Download
📄 footer-layout.php File 5862
Edit Download
📄 header-layout.php File 451
Edit Download
📄 header-second.php File 827
Edit Download
📄 index-layout.php File 4027
Edit Download
📄 list-languages.php File 5393
Edit Download
📄 list-news-layout.php File 6488
Edit Download
📄 list-pdf-layout.php File 4459
Edit Download
📄 main-func.php File 59102
Edit Download
📄 main-layout.php File 8313
Edit Download
📄 main-menu.php File 3613
Edit Download
📄 mobile-menu.php File 5453
Edit Download
📄 mobile-side.php File 14998
Edit Download
📄 pdf-layout.php File 3
Edit Download
📄 right_sidebar.php File 3970
Edit Download
📄 search-layout.php File 5408
Edit Download
📄 top-menu.php File 1175
Edit Download
📄 top_slider.php File 2320
Edit Download

View File: mobile-menu.php

<div class="mobile-sticky fs-6">
  <div class="container">
    <nav class="navbar navbar-expand-lg navbar-dark px-2 py-1"> 
      <div class="mobile-top-icons d-lg-none">
        <a id="showStartPush"
           aria-label="sidebar menu"
           class="navbar-toggler sidebar-menu-trigger side-hamburger border-0 ico"
           href="javascript:;">
            <span class="hamburger-icon">
                <span></span><span></span><span></span><span></span>
            </span>
        </a>

        <!-- Search Icon -->
        <button class="navbar-toggler ico"
                type="button"
                data-bs-toggle="collapse"
                data-bs-target="#navbarTogglerDemo2"
                aria-controls="navbarTogglerDemo2"
                aria-expanded="false"
                aria-label="Toggle navigation">
            <svg xmlns="http://www.w3.org/2000/svg" width="1.5rem" height="1.5rem"
                 fill="currentColor" viewBox="0 0 512 512">
                <path d="M221.09,64A157.09,157.09,0,1,0,378.18,221.09,157.1,157.1,0,0,0,221.09,64Z"
                      style="fill:none;stroke:currentColor;stroke-miterlimit:10;stroke-width:32px" />
                <line x1="338.29" y1="338.29" x2="448" y2="448"
                      style="fill:none;stroke:currentColor;stroke-linecap:round;stroke-miterlimit:10;stroke-width:32px" />
            </svg>
        </button>
      </div>

      <!-- Logo -->
      <a href="index.php?lang=<?= $lang ?>" class="mx-auto">
          <img class="mobile-logo img-fluid d-lg-none lazy"
               src="assets/img/lazy-empty.png"
               data-src="<?= htmlspecialchars($logo1) ?>"  
               alt="<?= $logo1;?>"
               style="height: auto; max-height: 100%; width: auto;">
      </a>

      <?= edit_image(1); ?>

      <!-- Main Navbar -->
      <div id="navbarTogglerDemo" class="collapse navbar-collapse ms-2">
          <div class="date-area d-none d-lg-block"><?= $today; ?></div>

          <ul class="navbar-nav">
              <li class="nav-item">
                  <a class="nav-link active" href="index.php?lang=<?= $lang ?>">
                      <?= htmlspecialchars($L['home']) ?>
                  </a>
              </li>
              <li class="nav-item">
                  <a class="nav-link" href="aboutus.php"><?= htmlspecialchars($L['about_us']) ?></a>
              </li>
              <li class="nav-item"><?= edit_about(); ?></li>
              <li class="nav-item">
                  <a class="nav-link" href="contactus.php"><?= htmlspecialchars($L['contact_us']) ?></a>
              </li>
              <li class="nav-item"><?= edit_contact(); ?></li>

              <?php include('list-languages.php') ?> 
              <?= logout_button(); ?> 
              <?= retern_button(); ?>
          </ul>

          <ul class="navbar-nav ms-auto text-center">
              <?php foreach ($socialPlatforms as $platform): 
                  if (!empty($platform['url'])): ?>
                      <li class="nav-item">
                          <a class="nav-link" href="<?= htmlspecialchars($platform['url']) ?>" 
                             target="_blank" rel="noopener noreferrer" 
                             aria-label="<?= htmlspecialchars($platform['name']) ?>">
                              <?= getSocialIconSvg($platform['icon']) ?>
                              <span class="visually-hidden"><?= htmlspecialchars($platform['name']) ?></span>
                          </a>
                      </li>
              <?php endif; endforeach; ?>  

              <button class="theme-toggle btn btn-link p-0" aria-label="Toggle theme">
                  <svg class="icon" width="28" height="28">
                      <use xlink:href="#ico-moon"></use>
                  </svg>
              </button>
          </ul>
          <?= edit_social(); ?>
      </div>
    </nav>

    <!-- Search Form -->
    <div class="collapse navbar-collapse col-12 py-2" id="navbarTogglerDemo2">
        <form class="form-inline" action="search.php">
            <div class="input-group w-100">   
                <input type="text" class="form-control border border-end-0" 
                       name="keywords"  
                       placeholder="<?= htmlspecialchars($L['search_placeholder']) ?>" 
                       aria-label="<?= htmlspecialchars($L['search']) ?>">

                <button class="btn btn-primary" type="submit">
                    <svg xmlns="http://www.w3.org/2000/svg" 
                         width="1rem" height="1rem" fill="currentColor" 
                         viewBox="0 0 512 512">
                        <path d="M221.09,64A157.09,157.09,0,
                                 1,0,378.18,221.09,157.1,157.1,0,0,
                                 0,221.09,64Z" 
                              style="fill:none;stroke:currentColor;
                              stroke-miterlimit:10;stroke-width:32px" />
                        <line x1="338.29" y1="338.29" x2="448" y2="448" 
                              style="fill:none;stroke:currentColor;
                              stroke-linecap:round;stroke-miterlimit:10;
                              stroke-width:32px" />
                    </svg>
                </button>
            </div>
        </form>
    </div>
  </div>
</div>