footer.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. {{ if .Site.Data.sections }}
  7. <ul>
  8. {{- range sort .Site.Data.sections "section.weight" }}
  9. {{ if and (.section.enable) (.section.showOnNavbar)}}
  10. <li class="nav-item">
  11. <a class="smooth-scroll" href="#{{ replace (lower .section.name) " " "-" }}">{{ .section.name }}</a>
  12. </li>
  13. {{ end }}
  14. {{- end }}
  15. </ul>
  16. {{ end }}
  17. </div>
  18. <div class="col-md-4 col-sm-12">
  19. <h5>Contact Me</h5>
  20. <ul>
  21. {{ range $key,$value:=.Site.Params.author.contactInfo }}
  22. <li><span>{{ title $key }}: </span> <span>{{ $value }}</span></li>
  23. {{ end }}
  24. </ul>
  25. </div>
  26. <div class="col-md-4 col-sm-12">
  27. <!-- <h5>Newsletter</h5> -->
  28. <p>Stay up to date with email notification</p>
  29. <form>
  30. <div class="form-group">
  31. <input
  32. type="email"
  33. class="form-control"
  34. id="exampleInputEmail1"
  35. aria-describedby="emailHelp"
  36. placeholder="Enter email"
  37. />
  38. <small id="emailHelp" class="form-text text-muted"
  39. >We'll never share your email with anyone else.</small
  40. >
  41. </div>
  42. <button type="submit" class="btn btn-info">Submit</button>
  43. </form>
  44. </div>
  45. </div>
  46. </div>
  47. <hr />
  48. <div class="container">
  49. <div class="row text-left">
  50. <div class="col-md-4">
  51. <a id="theme" href="https://github.com/hossainemruz/toha" target="#">
  52. <img src="/assets/images/logo-inverted.png">
  53. Toha
  54. </a>
  55. </div>
  56. <div class="col-md-4">{{ if .Site.Params.copyright }}{{ .Site.Params.copyright }}{{ else }}© 2020 Copyright.{{ end }}</div>
  57. <div class="col-md-4">
  58. Powered by <a href="https://gohugo.io/">Hugo
  59. <img
  60. src="/assets/images/hugo-logo-wide.svg"
  61. alt="Hugo Logo"
  62. height="18"
  63. />
  64. </a>
  65. </div>
  66. </div>
  67. </div>
  68. </footer>