Skip to content

Instantly share code, notes, and snippets.

View ugifractal's full-sized avatar

sugiarto ugifractal

View GitHub Profile
{{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
{% if current_product %}
Produk tersedia
{% else %}
Produk tidak tersedia
{% endif %}
{% if condition %}
...
{% else %}
...
{% endif %}
{% judul = 'selamat datang di web kami' %}
<html>
<head>
<title>{{ judul }}</title>
</head>
<body>
</body>
</html>
{% assign nama = 'udin' %}
@ugifractal
ugifractal / output.html
Created February 23, 2011 02:00
liquid output on template
<html>
<head>
</head>
<body>
{{ page_content }}
</body>
</html>
{{ page_content }}