mirror of
https://github.com/sharkdp/bat
synced 2024-11-08 19:10:41 +00:00
21 lines
355 B
Plaintext
Vendored
21 lines
355 B
Plaintext
Vendored
doctype html
|
|
html lang=locale
|
|
head
|
|
meta charset='utf-8'
|
|
title #{@title ? "#{@title} | Testing" : 'Testing'}
|
|
== stylesheet('app.css')
|
|
|
|
body
|
|
header
|
|
h1.title Testing
|
|
|
|
- @links.each do |link|
|
|
a href=link.href
|
|
=link.title
|
|
div
|
|
== yield
|
|
|
|
- if APP_ENV == 'production'
|
|
footer
|
|
p Testing
|