Changeset 2a71053 in OpenWorkouts-current for ow/templates


Ignore:
Timestamp:
Feb 8, 2019, 5:20:08 PM (5 years ago)
Author:
Segundo Fdez <segun.2@…>
Branches:
current, feature/docs, master
Children:
6edc367
Parents:
feab169
Message:

update favicon and responsive navigation

Location:
ow/templates
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • ow/templates/base.pt

    rfeab169 r2a71053  
    6363              current user now -->
    6464            <ul>
    65               <li class=""
     65              <li
    6666                  tal:attributes="class 'is-active' if 'dashboard' in renderer_name else ''">
    67                 <a href="" i18n:translate=""
     67                <a class="icon-dashboard" href="" i18n:translate=""
    6868                   tal:attributes="href request.resource_url(request.root)">
    69                   Dashboard</a>
     69                  <span>Dashboard</span></a>
    7070              </li>
    71               <li class=""
     71              <li
    7272                  tal:attributes="class 'is-active' if 'profile' in renderer_name else ''">
    73                 <a href="" i18n:translate=""
     73                <a class="icon-profile" href="" i18n:translate=""
    7474                   tal:attributes="href request.resource_url(request.root, current_user, 'profile')">
    75                   My profile</a>
     75                  <span>My profile</span></a>
    7676              </li>
    7777              <li class="add-workout">
     
    9191              </li>
    9292              <li>
    93                 <a href="" i18n:translate=""
     93                <a class="icon-logout" href="" i18n:translate=""
    9494                   tal:attributes="href request.resource_url(request.root, 'logout')">
    95                   Log out
     95                  <span>Log out</span>
    9696                </a>
    9797              </li>
  • ow/templates/base_anonymous.pt

    rfeab169 r2a71053  
    1515    <meta name="author" content="The OpenWorkouts Project">
    1616
    17     <link rel="shortcut icon"
    18           href="${request.static_url('ow:static/pyramid-16x16.png')}">
    1917
    20     <!--! This should be 182x182px-->
    21     <link rel="apple-touch-icon"
    22           href="${request.static_url('ow:static/pyramid-16x16.png')}">
     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">
    2325
    2426    <title>OpenWorkouts - tracking your workouts openly</title>
Note: See TracChangeset for help on using the changeset viewer.