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.

56 lines
2.5 KiB

4 years ago
  1. +++
  2. title = "Social Meta"
  3. description = "Membagikan tautan dengan gambar di Facebook dan Twitter."
  4. categories = ["social"]
  5. tags = ["author", "metadata", "images"]
  6. feature = ["code highlighter", "snippets", "related content"]
  7. [[copyright]]
  8. owner = "Josh Habdas"
  9. date = "2019"
  10. license = "agpl-3.0-or-later"
  11. +++
  12. After Dark menyediakan {{< external text="Open Graph Protocol" href="http://opengraphprotocol.org" />}} dan {{< external href="https://developer.twitter.com/en/docs/tweets/optimize-with-cards" text="Twitter Cards" />}} metadata di halaman untuk mencapai kartu berbagi yang banyak:
  13. ![Open Graph sharing card screenshot](/images/instant-view-fs8.png "Contoh kartu berbagi Open Graph yang dihasilkan oleh by After Dark")
  14. Menyesuaikan`author` di {{< external href="https://gohugo.io/getting-started/configuration/" text="Site Configuration" />}} untuk menentukan nama yang ditampilkan, jika ada:
  15. ```toml
  16. [params]
  17. author = "Bali Bebas!"
  18. ```
  19. Setel atau ganti`author` per halaman menggunakan {{< external href="https://gohugo.io/content-management/front-matter/" text="Front Matter" />}} seperti yang ditunjukkan disini:
  20. ```toml
  21. title = "Become a Digital Nomad in Bali: The Lost Guide"
  22. description = "Everything you need to know to become a Digital Nomad in Bali."
  23. author = "After Dark"
  24. date = "2017-02-02T11:57:24+08:00"
  25. publishdate = "2017-01-28T02:31:22+08:00"
  26. images = [
  27. "https://source.unsplash.com/-09QE4q0ezw/2000x1322"
  28. ]
  29. ```
  30. Sesuaikan `images` untuk menentukan gambar eksternal atau jika menggunakan {{< external href="https://gohugo.io/content-management/page-bundles/" text="Page Bundles" />}}, tentukan jalur relatif ke sumber gambar untuk digunakan:
  31. ```toml
  32. images = [
  33. "/post/post-title/images/lana-abie-581813-unsplash.jpg"
  34. ]
  35. ```
  36. {{% hackcss-alert type="info" %}}**Kenapa menggunakan susunan?** Open Graph mendukung berbagai ukuran gambar. Dan meskipun After Dark tidak mendukung berbagai ukuran, pengguna dapat membuat [custom layouts](../custom-layouts) itu.{{% /hackcss-alert %}}
  37. Jika tidak ada gambar tingkat halaman yang disediakan After Dark akan mundur ke gambar site-wide yang dapat disesuaikan atau dihapus dari {{< external href="https://gohugo.io/getting-started/configuration/" text="Site Configuration" />}}:
  38. ```toml
  39. [params]
  40. images = [
  41. "https://source.unsplash.com/-09QE4q0ezw/2000x1322" # site-wide og:image
  42. ]
  43. ```
  44. Lihat {{< external href="https://unsplash.com/" text="Unsplash" />}} dan {{< external href="https://source.unsplash.com/" text="Unsplash Source" />}} untuk ribuan gambar bebas royalti.