SproutCMS

This is the code documentation for the SproutCMS project

source of /skin/default/partials/_footer.php

  1. <?php
  2. use Sprout\Helpers\Enc;
  3. use Sprout\Helpers\Text;
  4. use Sprout\Helpers\Url;
  5. ?>
  6.  
  7. <footer id="footer">
  8.  
  9. <div class="section section--pre-footer bg-navyblue">
  10.  
  11. <div class="container">
  12.  
  13. <div class="row">
  14.  
  15. <div class="col-xs-12 col-sm-9">
  16.  
  17. <div class="row">
  18.  
  19. <div class="col-xs-12 col-sm-4">
  20.  
  21. <h2>Contact us</h2>
  22.  
  23. <p>
  24. <strong>T:</strong> <a href="tel:618-5550-0976">+61 8 5550 0976</a><br>
  25. <strong>E:</strong> <a href="mailto:test@example.com">test@example.com</a>
  26. </p>
  27. <p>12 Sprout Street<br>Sproutington SA 5432</p>
  28.  
  29. </div>
  30. <div class="col-xs-12 col-sm-8">
  31.  
  32. <h2>Quicklinks</h2>
  33.  
  34. <ul class="block-list">
  35. <li><a href="#">Home</a></li>
  36. <li><a href="#">About us</a></li>
  37. <li><a href="#">Services</a></li>
  38. <li><a href="#">Products</a></li>
  39. <li><a href="#">Our team</a></li>
  40. <li><a href="#">Contact Us</a></li>
  41. <li><a href="#">Terms &amp; Conditions</a></li>
  42. <li><a href="#">Privacy Policy</a></li>
  43. </ul>
  44. </div>
  45.  
  46. </div>
  47.  
  48. </div>
  49. <div class="col-xs-12 col-sm-3">
  50.  
  51. <div class="search">
  52. <form action="subscriber/subscribe" method="get">
  53. <h2>Sign up for our enews!</h2>
  54.  
  55. <div class="field-element field-element--text field-element--white field-element--hidden-label">
  56. <div class="field-label">
  57. <label for="enews-first-name">First name</label>
  58. </div>
  59. <div class="field-input">
  60. <input id="enews-first-name" class="textbox" type="text" name="first_name" placeholder="Name">
  61. </div>
  62. </div>
  63. <div class="field-element field-element--text field-element--white field-element--hidden-label">
  64. <div class="field-label">
  65. <label for="enews-email">Email</label>
  66. </div>
  67. <div class="field-input">
  68. <input id="enews-email" class="textbox" type="text" name="email" placeholder="Email Address">
  69. </div>
  70. </div>
  71.  
  72. <button type="submit" class="button">Sign up</button>
  73.  
  74. </form>
  75. </div>
  76.  
  77. </div>
  78.  
  79. </div>
  80.  
  81. </div>
  82.  
  83. </div>
  84.  
  85. <div class="section section--footer section--small bg-orange">
  86. <div class="container">
  87. <div class="row">
  88. <div class="col-xs-12 col-sm-6 col-sm--left-align">
  89. <div class="footer__text">
  90. <p>Copyright &copy; <?php echo Enc::html(Text::copyright('2017')); ?> <?php echo Enc::html(Kohana::config('sprout.site_title')); ?>
  91. </p>
  92. <p>
  93. <a href="http://getsproutcms.com" target="_blank" rel="nofollow">Powered by SproutCMS<span class="-vis-hidden">, view the website in a new window</span></a>
  94. </p>
  95. </div>
  96. </div>
  97. <div class="col-xs-12 col-sm-6 col-sm--right-align">
  98. <ul class="social-list social-list--inline">
  99. <li class="social-list__item">
  100. <a href="#">
  101. <?php require __DIR__ . '/../images/icon-system/icon_facebook.svg' ?>
  102. <span class="-vis-hidden">Follow us on Facebook</span>
  103. </a>
  104. </li>
  105. <li class="social-list__item">
  106. <a href="#">
  107. <?php require __DIR__ . '/../images/icon-system/icon_twitter.svg' ?>
  108. <span class="-vis-hidden">Follow us on Twitter</span>
  109. </a>
  110. </li>
  111. <li class="social-list__item">
  112. <a href="#">
  113. <?php require __DIR__ . '/../images/icon-system/icon_instagram.svg' ?>
  114. <span class="-vis-hidden">Follow us on Instagram</span>
  115. </a>
  116. </li>
  117. <li class="social-list__item">
  118. <a href="#">
  119. <?php require __DIR__ . '/../images/icon-system/icon_youtube.svg' ?>
  120. <span class="-vis-hidden">Follow us on YouTube</span>
  121. </a>
  122. </li>
  123. <li class="social-list__item">
  124. <a href="#">
  125. <?php require __DIR__ . '/../images/icon-system/icon_pinterest.svg' ?>
  126. <span class="-vis-hidden">Follow us on Pinterest</span>
  127. </a>
  128. </li>
  129. </ul>
  130. </div>
  131. </div>
  132.  
  133. </div>
  134.  
  135. </div>
  136.  
  137. </footer>
  138.