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.

53 lines
2.1 KiB

4 years ago
  1. +++
  2. title = "Post Images"
  3. description = "menambahkan gambar ke postingan tanpa menyentuh editor gambar."
  4. categories = ["experience"]
  5. tags = ["performance", "imaging", "graphics", "posts"]
  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. Tambahkan daya tarik visual ke postingan anda dengan memposting gambar. Gambar postingan muncul diatas konten postingan dan pengaruh {{< external href="https://gohugo.io/content-management/image-processing/" text="Hugo Image Processing" />}} dan [Lazy Loading](../lazy-loading) untuk menyediakan gambar yang sepenuhnya otomatis dan lazy-loaded <abbr title="Low-Quality Image Placeholders">LQIP</abbr> dan arah seni bawaan.
  13. {{< figure
  14. src="https://source.unsplash.com/Y-w15LfHO8w/1200x900"
  15. lqipsrc="https://source.unsplash.com/Y-w15LfHO8w/800x600"
  16. caption="Be Creative. Photo:"
  17. attr="AK¥N Cakiner on Unsplash"
  18. attrlink="https://unsplash.com/@akin"
  19. >}}
  20. Menggunakan gambar postingan memerlukan beberapa pendapat terkait dengan struktur konten anda. Untuk membuat postingan dengan gambar posting anda harus:
  21. 1. Gabungkan gambar dan konten dalam direktori seperti yang ditunjukan di bawah ini.
  22. 2. Perbarui postingan {{< external href="https://gohugo.io/content-management/front-matter/" text="Front Matter" />}} seperti yang dijelaskan dibawah ini.
  23. Contoh bundel halaman mungkin akan terlihat seperti berikut ini:
  24. ```
  25. ├── archetypes
  26. ├── content
  27. │ └── post
  28. │ └── secure-your-digital-life
  29. │ ├── images
  30. │ │ └── florian-klauer-119557-unsplash.jpg
  31. │ └── index.md
  32. ├── layouts
  33. ```
  34. Dengan gambar `header` yang ditunjukkan di `index.md`:
  35. ```toml
  36. [[resources]]
  37. src = "images/*119557*"
  38. name = "header"
  39. ```
  40. {{% hackcss-alert type="info" %}}**Tip:** Orientasi tidak signifikan. Untuk tampilan optimal gunakan gambar yang lebih besar.{{% /hackcss-alert %}}
  41. Itu dia! After Dark melakukan hal selebihnya.
  42. Untuk membantu memahami bundel, lihat {{< external href="https://gohugo.io/content-management/page-bundles/" text="Page Bundles in Hugo" />}}.