source: OpenWorkouts-current/ow/templates/base_anonymous.pt @ 2a71053

currentfeature/docs
Last change on this file since 2a71053 was 2a71053, checked in by Segundo Fdez <segun.2@…>, 5 years ago

update favicon and responsive navigation

  • Property mode set to 100644
File size: 1.9 KB
Line 
1<html xml:lang="en"
2      xmlns:tal="http://xml.zope.org/namespaces/tal"
3      xmlns:metal="http://xml.zope.org/namespaces/metal"
4      xmlns:i18n="http://xml.zope.org/namespaces/i18n"
5      i18n:domain="OpenWorkouts"
6      tal:attributes="lang request.locale_name">
7
8  <head>
9
10    <meta charset="utf-8">
11    <meta http-equiv="X-UA-Compatible" content="IE=edge">
12    <meta name="viewport" content="width=device-width, initial-scale=1.0">
13    <meta name="description"
14          content="OpenWorkouts - tracking your workouts openly">
15    <meta name="author" content="The OpenWorkouts Project">
16
17
18    <link rel="apple-touch-icon" sizes="180x180" href="${request.static_url('ow:static/apple-touch-icon.png')}">
19    <link rel="icon" type="image/png" sizes="32x32" href="${request.static_url('ow:static/favicon-32x32.png')}">
20    <link rel="icon" type="image/png" sizes="16x16" href="${request.static_url('ow:static/favicon-16x16.png')}">
21    <link rel="manifest" href="${request.static_url('ow:static/site.webmanifest')}">
22    <link rel="mask-icon" href="${request.static_url('ow:static/safari-pinned-tab.svg')}" color="#5bbad5">
23    <meta name="msapplication-TileColor" content="#da532c">
24    <meta name="theme-color" content="#ffffff">
25
26    <title>OpenWorkouts - tracking your workouts openly</title>
27
28    <link rel="stylesheet"
29          href="${request.static_url('ow:static/css/main.css')}" />
30
31  </head>
32
33  <body>
34
35    <div class="page">
36
37      <header class="header-content">
38        <h1 class="logo">
39          <a href="#" tal:attributes="href request.resource_url(request.root)">
40            <span class="logo-open">Open</span><span class="logo-work">work</span><span class="logo-outs">outs</span>
41          </a>
42        </h1>
43        <p class="description">tracking your workouts openly</p>
44      </header>
45
46      <metal:content metal:define-slot="content"></metal:content>
47
48    </div>
49
50  </body>
51
52</html>
Note: See TracBrowser for help on using the repository browser.