You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

terms.html 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {{ define "main" }}
  2. {{ partial "navigation.html" . }}
  3. <section class="section">
  4. <div class="container">
  5. <div class="row">
  6. <div class="col-lg-12">
  7. <div class="title text-center">
  8. <h2> {{ with i18n "authorsOfPosts" }} {{ index (split . " ") 0 }} <span class="color"> {{ index (split . " ") 1 }} {{ index (split . " ") 2 }} {{ end }} </span></h2>
  9. <div class="border-meghna"></div>
  10. </div>
  11. </div>
  12. {{ range .Data.Pages }}
  13. <article class="col-lg-4 col-md-6 col-12 clearfix wow fadeInUp" data-wow-duration="500ms">
  14. <div class="post-block">
  15. <div class="media-wrapper">
  16. <div class="content">
  17. <figure>
  18. {{ if .Params.photo }}
  19. <img class="rounded-circle img-fluid pt-2" src="{{.Params.photo}}">
  20. {{else if .Params.email}}
  21. <img class="rounded-circle img-fluid pt-2" src="https://www.gravatar.com/avatar/{{ md5 .Params.email }}?s=128&pg&d=identicon">
  22. {{ end }}
  23. <figcaption>
  24. <h5 class="font-weight-bold">
  25. {{ .Params.name }}
  26. </h5>
  27. <p>{{ .Summary }}</p>
  28. <a class="btn btn-transparent" href="{{ .Permalink }}">{{ i18n "readMore" }}</a>
  29. </figcaption>
  30. </figure>
  31. </div>
  32. </div>
  33. </div>
  34. </article>
  35. {{ end }}
  36. </div>
  37. </div>
  38. </div>
  39. </section>
  40. {{ end }}