myshortcode.html 896 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {{ $mypat := $.Params.pat}}
  2. {{ with .Site.GetPage .Params.ser }}
  3. {{/* $post_paginator := .Paginate (.Pages) 12 */}}
  4. {{/* range $post_paginator.Pages */}}
  5. {{ range first 12 .Pages }}
  6. <div class="col-sm-4">
  7. <div class="mycard">
  8. <div class="image">
  9. {{ $mypage := . }}
  10. {{$images := .Resources.ByType "image"}}
  11. {{with $images.GetMatch "*cover*" }}
  12. <a class="text-dark" href="{{ $mypage.Permalink }}">
  13. <img src="{{ .Permalink }}" alt="A thumbnail image">
  14. </a>
  15. {{end}}
  16. </div>
  17. <div class="mycard-inner">
  18. <div class="header">
  19. <a class="text-dark" href="{{ .Permalink }}"><h6>{{ .Title }}</h6></a>
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24. {{end}}
  25. {{end}}
  26. {{.Inner}}