MOON
Server: Apache
System: Linux e2e-78-16.ssdcloudindia.net 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
User: imensosw (1005)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/imensosw/.trash/resources.2/views/frontend/include/footer.blade.php
<footer class="footer bg-black text-white burger">
 	<div class="ccontainer">
    <div class="crow g-0 justify-content-center">
      <div class="ccol ccol-lg-1 ccol-md-2 py-0">
      	<div class="brand_logo">
					<a href="#"><img src="{{ URL::asset('frontend/images/liftcincy-black.svg') }}" class="img-svg" /></a>
				</div>
			</div>
    	<div class="ccol ccol-lg-2 ccol-md-3 py-0">
    		<div class="mr-1">
      		<ul>
      			<li>2345 Ashland Ave, Suite 545, Cincinnati, OH 45206</li>
      			<li><a href="mailto:hello@liftcincy.org">hello@liftcincy.org</a></li>
      			<li><a href="details.php">FAQ</a></li>
      		</ul>
      	</div>
			</div>
    	<div class="ccol ccol-lg-3 ccol-md-3 py-0">
    		<div>
      		<ul>
      			<li><a href="#">Post a Volunteer Opportunity</a></li>
      			<li><a href="#">Privacy Policy</a></li>
      			<li><a href="#">Terms of Use</a></li>
      		</ul>
      	</div>
			</div>
		</div>
	</div>
</footer>

<!-- <a href="#" class="gotop"><i class="fa fa-long-arrow-up"></i></a> -->

<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="{{ URL::asset('frontend/js/jquery.min.js') }}" type="text/javascript" ></script>
<script src="{{ URL::asset('frontend/js/custom.js') }}" type="text/javascript" ></script>

<script type="text/javascript" src="{{ URL::asset('frontend/js/swiper-bundle.min.js') }}"></script>

<script>
$(document).ready(function(){

  $(document).ready(function(){
    $('.single-select').select2({
        theme: 'bootstrap4',
        width: $(this).data('width') ? $(this).data('width') : $(this).hasClass('w-100') ? '100%' : 'style',
        placeholder: $(this).data('placeholder'),
        allowClear: Boolean($(this).data('allow-clear')),
    });
    $('.multiple-select').select2({
        theme: 'bootstrap4',
        width: $(this).data('width') ? $(this).data('width') : $(this).hasClass('w-100') ? '100%' : 'style',
        placeholder: $(this).data('placeholder'),
        allowClear: Boolean($(this).data('allow-clear')),
    });
  });


  $(".navbar-toggler").click(function(){
  	var menu=$(this).attr("menu-target");
    $(menu).toggleClass("open");
  });

  $(".modal_trigger").click(function(){
  	var data=$(this).attr("data-modal");
    $(data).addClass("open");
  });

  $(".modal .close").click(function(){
    $(".modal").removeClass("open");
  });
});
</script>