Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2019-05-17 14:48:20 +02:00
parent b9f8914121
commit 06ef79a801
2 changed files with 77 additions and 1 deletions

View File

@@ -1,14 +1,51 @@
{% load leaflet_tags %}
{% load cookielaw_tags %}
{% load rowerfilters %}
{% load tz_detect %}
{% tz_detect %}
{% load analytical %}
{% block filters %}
{% endblock %}
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}Rowsandall Rowing Data Analytics{% endblock %}</title>
{% block og_image %}
<meta property="og:image" content="https://rowsandall.com/static/img/logo_r.png" />
<meta property="og:image:secure_url" content="https://rowsandall.com/static/img/logo_r.png" />
{% endblock %}
<meta property="og:url" content="https://rowsandall.com{{ request.get_full_path }}" />
<meta property="fb:app_id" content="694685920739849" />
<meta property="og:title" content="{% block og_title %}Rowsandall{% endblock %}" />
<meta property="og:description" content="{% block og_description %}Rowsandall: Free Data and Analysis. For Rowers. By Rowers.{% endblock %}" />
<link rel="stylesheet" href="/static/css/resetnew.css" />
<link rel="stylesheet" href="/static/fontawesome/css/fontawesome.css">
<link rel="stylesheet" href="/static/fontawesome/css/all.css">
<link rel="stylesheet" href="/static/css/frontstyles.css">
<link rel="stylesheet" href="/static/css/text2.css" />
<meta charset="utf-8" />
{% block image_src %}<link rel="image_src" href="static/img/logo7.png" />{% endblock %}
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body, html {
height: 100%;
height: 100%;
margin: 0;
font: 400 15px/1.8 "Lato", sans-serif;
color: #777;
}
.sticky {
position: fixed;
right: 0;
left: 0;
top: 0;
padding: 5px;
z-index: 1;
height:65px;
width: 100%;
color: #fff;
background: #fff;
}
.bgimg-1, .bgimg-2, .bgimg-3 {
position: relative;
@@ -65,8 +102,16 @@
}
}
</style>
{% analytical_head_bottom %}
</head>
<body>
<div class="sticky">
<a href="/" title="Home">
<img src="/static/img/logo7.png"
alt="Rowsandall logo" height="55px">
</a>
</div>
<div class="bgimg-1">
<div class="caption">

View File

@@ -143,7 +143,38 @@
<!-- Container element -->
<body data-root="https://webapiv2.navionics.com/dist/webapi/images">
{% if user.is_authenticated %}
<nav class="main-nav">
<ul>
<li id="nav-workouts">
<a href="/rowers/list-workouts/">
<i class="fas fa-clipboard-list"></i>&nbsp;Workouts
</a>
</li>
<li id="nav-racing">
<a href="/rowers/virtualevents/">
<i class="fas fa-flag-checkered"></i>&nbsp;Racing
</a>
</li>
<li id="nav-analysis">
<a href="/rowers/analysis/">
<i class="fas fa-analytics"></i>&nbsp;Analysis
</a>
</li>
<li id="nav-plan">
<a href="/rowers/sessions/">
<i class="fas fa-calendar-alt"></i>&nbsp;Plan
</a>
</li>
<li id="nav-teams">
<a href="/rowers/me/teams/">
<i class="fas fa-bullhorn"></i>&nbsp;Groups
</a>
</li>
</ul>
</nav>
{% endif %}
<div class="parallax">
<p>Aap</p>
</div>