talk_links.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {{ $is_list := .is_list }}
  2. {{ $ := .content }}
  3. {{ with $.Params.url_pdf }}
  4. <a class="btn btn-outline-primary my-1 mr-1{{ if $is_list }} btn-sm{{end}}" href="{{ . | relURL }}">
  5. {{ i18n "btn_pdf" }}
  6. </a>
  7. {{ end }}
  8. {{ with $.Params.url_slides }}
  9. <a class="btn btn-outline-primary my-1 mr-1{{ if $is_list }} btn-sm{{end}}" href="{{ . | relURL }}">
  10. {{ i18n "btn_slides" }}
  11. </a>
  12. {{ end }}
  13. {{ with $.Params.url_video }}
  14. <a class="btn btn-outline-primary my-1 mr-1{{ if $is_list }} btn-sm{{end}}" href="{{ . | relURL }}">
  15. {{ i18n "btn_video" }}
  16. </a>
  17. {{ end }}
  18. {{ with $.Params.url_code }}
  19. <a class="btn btn-outline-primary my-1 mr-1{{ if $is_list }} btn-sm{{end}}" href="{{ . | relURL }}">
  20. {{ i18n "btn_code" }}
  21. </a>
  22. {{ end }}
  23. {{ range $.Params.projects }}
  24. {{ with ($.Site.GetPage (printf "project/%s" .)) }}
  25. <a class="btn btn-outline-primary my-1 mr-1{{ if $is_list }} btn-sm{{end}}" href="{{ .RelPermalink }}">
  26. {{ i18n "btn_project" }}
  27. </a>
  28. {{ else }}
  29. {{ errorf "The `projects` parameter in `content/%s` references a project file, `content/project/%s`, which cannot be found. Please either set `projects = []` or fix the reference." $.File.Path . }}
  30. {{ end }}
  31. {{ end }}
  32. {{ range $.Params.url_custom }}
  33. <a class="btn btn-outline-primary my-1 mr-1{{ if $is_list }} btn-sm{{end}}" href="{{ .url | relURL }}">
  34. {{ .name }}
  35. </a>
  36. {{ end }}