PHP Classes

File: templates/_partials/footer.inc.html.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   GetMeALatte   templates/_partials/footer.inc.html.php   Download  
File: templates/_partials/footer.inc.html.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: GetMeALatte
Promote a product to be sold to a crowd
Author: By
Last change:
Date: 1 year ago
Size: 2,010 bytes
 

Contents

Class file image Download
<br><br>
            </div>
        </div>
    </div>
    <footer class="page-footer orange">
        <div class="container">
            <div class="row">
                <div class="col l9 s12">
                    <h5 class="white-text"><?= site_name() ?></h5>
                    <p class="grey-text text-lighten-4">
                        <strong>GetMeALatte</strong> gives you an easy way to receive financial support from your users, followers and any other people who appreciate your work.
                    </p>
                </div>

                <div class="col l3 s12">
                    <h5 class="white-text"><?= site_name() ?> <span role="img" aria-label="Rocket">?</span></h5>

                    <ul>
                        <li>
                            <a class="white-text" href="<?= site_url('/about') ?>">
                                About
                            </a>
                        </li>
                        <li>
                            <a class="white-text" href="<?= site_url('/contact') ?>">
                                Contact
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
        </div>
        <div class="footer-copyright">
            <div class="container">
                <em>
                    &copy; <?= date('Y') ?> <a href="<?= site_url() ?>"><?= site_name() ?></a>
                </em>
            </div>
        </div>
    </footer>
   <script src="<?= site_url('/assets/materialize/js/materialize.js') ?>"></script>
   <script>
       document.addEventListener('DOMContentLoaded', function() {
           // Form Selects
           const selectElements = document.querySelectorAll('select');
           M.FormSelect.init(selectElements);

           // Image Sliders
           const sliderElement = document.querySelectorAll('.slider');
           M.Slider.init(sliderElement);
       });
   </script>
</body>
</html>