This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ page_content }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
</head> | |
<body> | |
{{ page_content }} | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% assign nama = 'udin' %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% judul = 'selamat datang di web kami' %} | |
<html> | |
<head> | |
<title>{{ judul }}</title> | |
</head> | |
<body> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if condition %} | |
... | |
{% else %} | |
... | |
{% endif %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if current_product %} | |
Produk tersedia | |
{% else %} | |
Produk tidak tersedia | |
{% endif %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{site.name}} # menampilkan nama web | |
{{site.domain_name}} # menampilkan nama domain | |
{% for page in site.latest_pages %}{{page.title}}{%endfor%} #menampilkan daftar judul halaman terbaru | |
{% for product in site.latest_products %}{{product.title}}{%endfor%} #menampilkan daftar judul produk terbaru |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{current_page.title}} #menampilkan judul halaman | |
{{current_page.uname}} #menampilkan nama unik untuk akses URL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{current_product.title}} #untuk menampilkan judul | |
{{current_product.name}} #untuk menampilkan nama produk | |
{{current_product.description}} #untuk menampilkan deskripsi produk | |
{{current_product.image_thumb_url}} #untuk mendapatkan URL gambar produk ukuran thumbnail | |
{{current_product.image_medium_url}} #untuk mendapatkan URL gambar produk ukuran medium |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% twitter_widget nama_akun_twitter %} | |
# contoh: | |
{% twitter_widget 'webmuapp' %} |
OlderNewer