hrb/benchmark/templates/simple.erb

21 lines
499 B
Plaintext
Raw Normal View History

2019-06-19 00:17:37 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello!</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="created" content="<%= created %>">
</head>
<body>
<div id="content">
<div class="container">
<% numbers.each do |n| %>
<div>This is div #<%= n %></div>
<% end %>
</div>
</div>
</body>
</html>