選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

list.html 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {{ define "main" }}
  2. {{ partial "navigation.html" . }}
  3. {{ if .Content}}
  4. <section class="section section-bg">
  5. <div class="container">
  6. <div class="row">
  7. <div class="col-lg-12">
  8. <div class="title text-center">
  9. <h2> {{ with i18n "aboutAuthor" }} {{ index (split . " ") 0 }} {{ end }}<span class="color"> {{ with i18n "aboutAuthor" }} {{ index (split . " ") 1 }} {{ end }} </span></h2>
  10. <div class="border-meghna"></div>
  11. </div>
  12. <div class="content text-center">
  13. {{ partial "author-figure" . }}
  14. <hr>
  15. {{ .Content }}
  16. <hr>
  17. <div class="list-group">
  18. {{ with .Params.github }}
  19. <div>
  20. <i class="tf-ion-social-github-outline mr-1"></i>
  21. <span>GitHub: <a href="https://github.com/{{.}}">github.com/{{.}}</a>
  22. </span>
  23. </div>
  24. {{ end }}
  25. {{ with .Params.facebook }}
  26. <div>
  27. <i class="tf-ion-social-facebook-outline mr-1"></i>
  28. <span>Facebook: <a href="https://facebook.com/{{.}}">facebook.com/{{.}}</a>
  29. </span>
  30. </div>
  31. {{ end }}
  32. {{ with .Params.twitter }}
  33. <div>
  34. <i class="tf-ion-social-twitter-outline mr-1"></i>
  35. <span>Twitter: <a href="https://twitter.com/{{.}}">twitter.com/{{.}}</a>
  36. </span>
  37. </div>
  38. {{ end }}
  39. {{ with .Params.instagram }}
  40. <div>
  41. <i class="tf-ion-social-instagram-outline mr-1"></i>
  42. <span>Instagram: <a href="https://instagram.com/{{.}}">instagram.com/{{.}}</a>
  43. </span>
  44. </div>
  45. {{ end }}
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. </section>
  51. {{ end }}
  52. <section class="section">
  53. <div class="container">
  54. <div class="row">
  55. <div class="col-lg-12">
  56. <div class="title text-center">
  57. <h2> {{ with i18n "authorsPosts" }} {{ index (split . " ") 0 }} {{ end }}<span class="color"> {{ with i18n "authorsPosts" }} {{ index (split . " ") 1 }} {{ end }}</h2>
  58. <div class="border-meghna"></div>
  59. </div>
  60. </div>
  61. {{ range .Data.Pages }}
  62. {{ .Render "article" }}
  63. {{ end }}
  64. </div>
  65. </div>
  66. </div>
  67. </section>
  68. {{ end }}