starting to look like something
This commit is contained in:
@@ -38,6 +38,8 @@
|
||||
<link rel="icon" sizes="192x192" href="/static/img/favicon-192x192.png" type="image/png"/>
|
||||
<link rel="icon" sizes="16x16" href="/static/img/favicon-16x16.png" type="image/png"/>
|
||||
<meta charset="utf-8" />
|
||||
{% block image_src %}<link rel="image_src" href="static/img/logo7.png" />{% endblock %}
|
||||
<meta property="og:type" content="website">
|
||||
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
@@ -55,7 +57,8 @@
|
||||
|
||||
<link rel="stylesheet" href="/static/css/resetnew.css" />
|
||||
<link rel="stylesheet" href="/static/css/styles2.css">
|
||||
<link rel="stylesheet" href="/static/css/text.css" />
|
||||
<link rel="stylesheet" href="/static/css/text2.css" />
|
||||
<link rel="stylesheet" href="/static/css/rowsandall2.css" />
|
||||
{% block meta %} {% endblock %}
|
||||
{% leaflet_js %}
|
||||
{% leaflet_css %}
|
||||
@@ -90,20 +93,63 @@
|
||||
{% analytical_head_bottom %}
|
||||
</head>
|
||||
|
||||
<body class="container">
|
||||
<header>Header</header>
|
||||
<nav>
|
||||
<div>Navigation 1</div>
|
||||
<div>Navigation 2</div>
|
||||
<div>Navigation 3</div>
|
||||
<body data-root="https://webapiv2.navionics.com/dist/webapi/images">
|
||||
<div class="wrapper">
|
||||
<header class="main-head">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/"><img src="/static/img/logo7.png"
|
||||
alt="Rowsandall logo" width="300px"></a>
|
||||
</li>
|
||||
<li>
|
||||
<p>Free Data and Analysis. For Rowers. By Rowers.</p>
|
||||
</li>
|
||||
<li>
|
||||
<a href="">Help</a>
|
||||
</li>
|
||||
{% if user.is_authenticated %}
|
||||
<li>
|
||||
<p>
|
||||
{% if user.first_name %}
|
||||
<a href="/rowers/me/edit">{{ user.first_name }}</a>
|
||||
{% else %}
|
||||
<a href="/rowers/me/edit">{{ user }}</a>
|
||||
{% endif %}
|
||||
</p>
|
||||
</li>
|
||||
<li>
|
||||
<a href="">Logout</a>
|
||||
{% else %}
|
||||
<li>
|
||||
<p><a href="{% url 'login' %}">login</a> </p>
|
||||
</li>
|
||||
{% endif %}
|
||||
</li>
|
||||
</ul>
|
||||
</header>
|
||||
<nav class="main-nav">
|
||||
<ul>
|
||||
<li><a href="">Nav 1</a></li>
|
||||
<li><a href="">Nav 2</a></li>
|
||||
<li><a href="">Nav 3</a></li>
|
||||
<li><a href="">Nav 4</a></li>
|
||||
<li><a href="">Nav 5</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<main>
|
||||
<main class="content">
|
||||
{% block main %}
|
||||
{% endblock %}
|
||||
</main>
|
||||
<aside>Related links</aside>
|
||||
<footer>Footer</footer>
|
||||
{% analytical_body_bottom %}
|
||||
{% block body_bottom %}{% endblock %}
|
||||
</main>
|
||||
<aside class="side">
|
||||
{% block sidebar %}
|
||||
Related links
|
||||
{% endblock %}</aside>
|
||||
<div class="ad">
|
||||
{% block ad %}
|
||||
Advertising
|
||||
{% endblock %}</div>
|
||||
<footer class="main-footer">Footer</footer>
|
||||
{% analytical_body_bottom %}
|
||||
{% block body_bottom %}{% endblock %}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user