ruby-benchmarks/templates/liquid.liquid

21 lines
538 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello from Liquid!</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/test.css">
<meta name="current_time" content="{{ "now" | date: "%Y-%m-%d %H:%M" }}">
</head>
<body>
<div id="content">
<div class="container">
{% for i in (0..100) %}
<div>This is div #{{ i }}</div>
{% endfor %}
</div>
</div>
</body>
</html>