footer.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <footer class="container-fluid text-center align-content-center footer pb-2">
  2. <div class="container pt-5">
  3. <div class="row text-left">
  4. <div class="col-md-4 col-sm-12">
  5. <h5>Navigation</h5>
  6. <ul>
  7. {{ range .Site.Menus.main }}
  8. <li class="nav-item">
  9. <a class="smooth-scroll" href="#{{ .URL }}">{{ .Name }}</a>
  10. </li>
  11. {{ end }}
  12. </ul>
  13. </div>
  14. <div class="col-md-4 col-sm-12">
  15. <h5>Contact Me</h5>
  16. <ul>
  17. {{ range $key,$value:=.Site.Params.contactInfo }}
  18. <li><span>{{ title $key }}: </span> <span>{{ $value }}</span></li>
  19. {{ end }}
  20. </ul>
  21. </div>
  22. <div class="col-md-4 col-sm-12">
  23. <!-- <h5>Newsletter</h5> -->
  24. <p>Stay up to date with email notification</p>
  25. <form>
  26. <div class="form-group">
  27. <input
  28. type="email"
  29. class="form-control"
  30. id="exampleInputEmail1"
  31. aria-describedby="emailHelp"
  32. placeholder="Enter email"
  33. />
  34. <small id="emailHelp" class="form-text text-muted"
  35. >We'll never share your email with anyone else.</small
  36. >
  37. </div>
  38. <button type="submit" class="btn btn-info">Submit</button>
  39. </form>
  40. </div>
  41. </div>
  42. </div>
  43. <hr />
  44. <div class="container">
  45. <div class="row text-left">
  46. <div class="col-md-4">
  47. Theme:
  48. <a id="theme" href="https://github.com/hossainemruz/toha" target="#">Toha</a>
  49. </div>
  50. <div class="col-md-4">© 2019 Copyright.</div>
  51. <div class="col-md-4">
  52. Powered by <a href="https://gohugo.io/">Hugo</a>
  53. <img
  54. src="assets/images/logos/hugo-logo-wide.svg"
  55. alt="Hugo Logo"
  56. height="18"
  57. />
  58. </div>
  59. </div>
  60. </div>
  61. </footer>