source: OpenWorkouts-current/ow/templates/base_anonymous.pt @ 816820d

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

Start to organize css structure. Added fake img for login

  • Property mode set to 100644
File size: 1.5 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    <link rel="shortcut icon"
18          href="${request.static_url('ow:static/pyramid-16x16.png')}">
19
20    <!--! This should be 182x182px-->
21    <link rel="apple-touch-icon"
22          href="${request.static_url('ow:static/pyramid-16x16.png')}">
23
24    <title>OpenWorkouts - tracking your workouts openly</title>
25
26    <link rel="stylesheet"
27          href="${request.static_url('ow:static/css/main.css')}" />
28
29  </head>
30
31  <body>
32
33    <div class="page">
34
35      <header class="header-content">
36        <h1 class="logo">
37          <a href="#" tal:attributes="href request.resource_url(request.root)">
38            <span class="logo-open">Open</span><span class="logo-work">work</span><span class="logo-outs">outs</span>
39          </a>
40        </h1>
41        <p class="description">tracking your workouts openly</p>
42      </header>
43
44      <metal:content metal:define-slot="content"></metal:content>
45
46    </div>
47
48  </body>
49
50</html>
Note: See TracBrowser for help on using the repository browser.