aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates/navbar.html
blob: 0efa51c215e527a81b7c3981b769053028a04c15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends 'base.html' %}
{% load static %}

{% block head %}
  <link rel="stylesheet" href="{% static 'css/navbar.css' %}">
{% endblock %}
{% block body %}
  <nav class="navbar is-dark" role="navigation" aria-label="main navigation">
    <div class="navbar-brand">
      <img src="{% static 'assets/logo-banner.svg' %}" class="navbar-brand navbar-icon" alt="Python Discord">
    </div>
  </nav>
  {{ block.super }}
{% endblock %}

<!-- vim: set ft=htmldjango: -->