talk_links.html 995 B

123456789101112131415161718192021222324252627282930313233
  1. {{ $is_list := .is_list }}
  2. {{ $ := .content }}
  3. {{ if $is_list }}
  4. <a class="btn btn-primary btn-outline btn-xs" href="{{ $.Permalink }}">
  5. {{ i18n "btn_details" }}
  6. </a>
  7. {{ end }}
  8. {{ with $.Params.url_pdf }}
  9. <a class="btn btn-primary btn-outline{{ if $is_list }} btn-xs{{end}}" href="{{ . | absURL }}">
  10. {{ i18n "btn_pdf" }}
  11. </a>
  12. {{ end }}
  13. {{ with $.Params.url_slides }}
  14. <a class="btn btn-primary btn-outline{{ if $is_list }} btn-xs{{end}}" href="{{ . | absURL }}">
  15. {{ i18n "btn_slides" }}
  16. </a>
  17. {{ end }}
  18. {{ with $.Params.url_video }}
  19. <a class="btn btn-primary btn-outline{{ if $is_list }} btn-xs{{end}}" href="{{ . | absURL }}">
  20. {{ i18n "btn_video" }}
  21. </a>
  22. {{ end }}
  23. {{ with $.Params.url_code }}
  24. <a class="btn btn-primary btn-outline{{ if $is_list }} btn-xs{{end}}" href="{{ . | absURL }}">
  25. {{ i18n "btn_code" }}
  26. </a>
  27. {{ end }}
  28. {{ range $.Params.url_custom }}
  29. <a class="btn btn-primary btn-outline{{ if $is_list }} btn-xs{{end}}" href="{{ .url | absURL }}">
  30. {{ .name }}
  31. </a>
  32. {{ end }}