mirror of
https://github.com/Xevion/runnerspace.git
synced 2025-12-15 22:12:56 -06:00
Switch text-based logo in header to image with RoadRunner
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.5.0/js/all.min.js"
|
||||
integrity="sha512-YUwFoN1yaVzHxZ1cLsNYJzVt1opqtVLKgBQ+wDj+JyfvOkH66ck1fleCm8eyJG9O1HpKIf86HrgTXkWDyHy9HA=="
|
||||
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||
<link rel="preload" href="{{ url_for('static', filename='roadrunner_header.png') }}" as="image">
|
||||
{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
<div class="header">
|
||||
<div class="header-primary">
|
||||
<a id="logo" href="{{ url_for('main.index') }}">runnerspace</a>
|
||||
<a id="img-logo" href="{{ url_for('main.index') }}">
|
||||
<img src="{{ url_for('static', filename='roadrunner_header.png') }}">
|
||||
</a>
|
||||
{# <a id="text-logo" href="{{ url_for('main.index') }}">runnerspace</a>#}
|
||||
<div class="header-login">
|
||||
{% if current_user.is_authenticated %}
|
||||
Logged in as
|
||||
@@ -18,9 +21,9 @@
|
||||
<li><a href="{{ url_for('main.feed') }}">My Feed</a></li>
|
||||
<li><a href="{{ url_for('main.browse') }}">Browse</a></li>
|
||||
<li><a href="{{ url_for('main.search') }}">Search</a></li>
|
||||
{# <li><a href="{{ url_for('main.messages') }}">My Messages</a></li>#}
|
||||
{# <li><a href="{{ url_for('main.blogs') }}">Blog</a></li>#}
|
||||
{# <li><a href="{{ url_for('main.groups') }}">Groups</a></li>#}
|
||||
{# <li><a href="{{ url_for('main.messages') }}">My Messages</a></li>#}
|
||||
{# <li><a href="{{ url_for('main.blogs') }}">Blog</a></li>#}
|
||||
{# <li><a href="{{ url_for('main.groups') }}">Groups</a></li>#}
|
||||
<li><a href="{{ url_for('main.about') }}">About</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
Reference in New Issue
Block a user