templates/layout/footer.html.twig line 1

Open in your IDE?
  1. <footer class="bg-dark">
  2. <div class="container d-flex flex-wrap justify-content-between align-items-center p-3">
  3. <div class="col-md-6">
  4. <span class="text-white me-4 lh-1">© {{ "now" | date('Y') }} Jewelry Rewards, Patent Pending</span>
  5. <div class="nav d-flex mt-3">
  6. <a class="text-white me-4 text-decoration-none lh-1" href="{{ path('programRules') }}">Terms & Conditions</a>
  7. <a class="text-white me-4 text-decoration-none lh-1" href="{{ path('privacyPolicy') }}">Privacy Policy</a>
  8. <a class="text-white me-2 text-decoration-none lh-1" href="{{ path('contactUs') }}">Contact Us</a>
  9. </div>
  10. </div>
  11. </div>
  12. </footer>