mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-24 09:46:11 +01:00
Makes use of both bootstrap and a rendering of the Tracks logo to provide a bit better experience in term of brand identity as well as also supporting mobile better.
14 lines
478 B
Text
14 lines
478 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<%= favicon_link_tag 'favicon.ico' %>
|
|
<%= favicon_link_tag 'apple-touch-icon.png', :rel => 'apple-touch-icon', :type => 'image/png' %>
|
|
<title><%= @page_title -%></title>
|
|
<%= stylesheet_link_tag "application" %>
|
|
</head>
|
|
<body class="bootstrap">
|
|
<%= yield %>
|
|
</body>
|
|
</html>
|