mrfdn.com – Hugo memiliki sedemikian rupa fungsi-fungsi yang bisa digunakan untuk merender halaman yang diinginkan.
Salah satunya adalah fungsi if dan isset yang bisa dilakukan untuk melakukan kondisional.
Dari pada melakukan pengkondisian sederhana seperti menampilkan description atau summary di hugo
Pada artikel ini saya ingin menunjukkan cara saya menggunakan rungsi if isset untuk merender taxonomy yang saya beri nama keyword dan tags, yang mana tag dan keyword ini sudah saya set pada bagian frontmatter file artikel.md saya.
keyword:- keyword1- keyword 2tags:- tag 1- tag 2Kode ini biasa digunakan pada file single.html hugo untuk merender tag.
{{ if isset .Params "keyword" }}{{ range .GetTerms "keyword" }}<a class="" href="{{ .Permalink }}">{{ .LinkTitle }}</a>{{ end }}{{ else }}{{ range .GetTerms "tags" }}<a class="" href="{{ .Permalink }}">{{ .LinkTitle }}</a>{{ end }}{{ end }}Penjelasan kode di atas#
Kode di atas akan merender list keyword saja jika itu terdapat pada artikel dan tidak akan merender tags, akan tetapi jika tidak terdapat keyword maka akan merender tags saja.
Mungkin di antara teman-teman punya trik yang lebih singkat, silahkan sampaikan pada kolom komentar di bawah.
PakarPBN
A Private Blog Network (PBN) is a collection of websites that are controlled by a single individual or organization and used primarily to build backlinks to a “money site” in order to influence its ranking in search engines such as Google. The core idea behind a PBN is based on the importance of backlinks in Google’s ranking algorithm. Since Google views backlinks as signals of authority and trust, some website owners attempt to artificially create these signals through a controlled network of sites.
In a typical PBN setup, the owner acquires expired or aged domains that already have existing authority, backlinks, and history. These domains are rebuilt with new content and hosted separately, often using different IP addresses, hosting providers, themes, and ownership details to make them appear unrelated. Within the content published on these sites, links are strategically placed that point to the main website the owner wants to rank higher. By doing this, the owner attempts to pass link equity (also known as “link juice”) from the PBN sites to the target website.
The purpose of a PBN is to give the impression that the target website is naturally earning links from multiple independent sources. If done effectively, this can temporarily improve keyword rankings, increase organic visibility, and drive more traffic from search results.

