12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <footer class="container-fluid text-center align-content-center footer pb-2">
- <div class="container pt-5">
- <div class="row text-left">
- <div class="col-md-4 col-sm-12">
- <h5>Navigation</h5>
- <ul>
- {{ range .Site.Menus.main }}
- <li class="nav-item">
- <a class="smooth-scroll" href="#{{ .URL }}">{{ .Name }}</a>
- </li>
- {{ end }}
- </ul>
- </div>
- <div class="col-md-4 col-sm-12">
- <h5>Contact Me</h5>
- <ul>
- {{ range $key,$value:=.Site.Params.contactInfo }}
- <li><span>{{ title $key }}: </span> <span>{{ $value }}</span></li>
- {{ end }}
- </ul>
- </div>
- <div class="col-md-4 col-sm-12">
- <!-- <h5>Newsletter</h5> -->
- <p>Stay up to date with email notification</p>
- <form>
- <div class="form-group">
- <input
- type="email"
- class="form-control"
- id="exampleInputEmail1"
- aria-describedby="emailHelp"
- placeholder="Enter email"
- />
- <small id="emailHelp" class="form-text text-muted"
- >We'll never share your email with anyone else.</small
- >
- </div>
- <button type="submit" class="btn btn-info">Submit</button>
- </form>
- </div>
- </div>
- </div>
- <hr />
- <div class="container">
- <div class="row text-left">
- <div class="col-md-4">
- Theme:
- <a id="theme" href="https://github.com/hossainemruz/toha" target="#">Toha</a>
- </div>
- <div class="col-md-4">© 2019 Copyright.</div>
- <div class="col-md-4">
- Powered by <a href="https://gohugo.io/">Hugo</a>
- <img
- src="assets/images/logos/hugo-logo-wide.svg"
- alt="Hugo Logo"
- height="18"
- />
- </div>
- </div>
- </div>
- </footer>
|