ruby-benchmarks/templates/markaby.mab

20 lines
425 B
Plaintext

html do
head do
title 'Hello from Markaby'
meta charset: 'utf-8'
meta name: 'viewport', content: 'width=device-width, initial-scale=1'
link rel: 'stylesheet', href: '/test.css'
meta name: 'current_time', content: Time.now.to_s
end
body do
div(id: 'content') do
div(class: 'container') do
100.times do |i|
div("This is div ##{i}")
end
end
end
end
end