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.

list.html 1.2KB

123456789101112131415161718192021222324252627282930313233343536
  1. {{ define "main" }}
  2. {{ partial "header.html" . }}
  3. {{ partial "navigation.html" . }}
  4. {{"<!-- Start Blog Section -->" | safeHTML}}
  5. <section id="blog" class="section">
  6. <div class="container">
  7. <div class="row">
  8. <div class="clearfix">
  9. {{ range .Data.Pages }}
  10. {{"<!-- single blog post -->" | safeHTML}}
  11. <article class="col-md-4 col-sm-6 col-xs-12 clearfix wow fadeInUp" data-wow-duration="500ms">
  12. <div class="post-block">
  13. <div class="media-wrapper">
  14. {{ with .Params.image }}<img src="{{ . | absURL }}" alt="post-image" class="img-responsive">{{ end }}
  15. </div>
  16. <div class="content">
  17. <h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
  18. <p>{{ .Summary }}</p>
  19. <a class="btn btn-transparent" href="{{ .Permalink }}">Read more</a>
  20. </div>
  21. </div>
  22. </article>
  23. {{"<!-- /single blog post -->" | safeHTML}}
  24. {{ end }}
  25. </div>
  26. </div>
  27. </div>
  28. </section>
  29. {{"<!-- /blog -->" | safeHTML}}
  30. {{ end }}