mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-07 09:48:50 +01:00
16 lines
375 B
Text
16 lines
375 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Tracksapp</title>
|
|
<%= stylesheet_link_tag "application", :media => "all" %>
|
|
<%= javascript_include_tag "application" %>
|
|
<%= csrf_meta_tags %>
|
|
<%= favicon_link_tag 'favicon.ico' %>
|
|
<%= favicon_link_tag 'apple-touch-icon.png', :rel => 'apple-touch-icon', :type => 'image/png' %>
|
|
</head>
|
|
<body>
|
|
|
|
<%= yield %>
|
|
|
|
</body>
|
|
</html>
|