add logo
This commit is contained in:
parent
307f25efb7
commit
8594e604fc
3 changed files with 25 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -89,5 +89,5 @@ venv/
|
||||||
.vscode/
|
.vscode/
|
||||||
.env
|
.env
|
||||||
db.sqlite3
|
db.sqlite3
|
||||||
static/
|
/static
|
||||||
media/
|
media/
|
||||||
|
|
21
jobs/static/img/logo.svg
Normal file
21
jobs/static/img/logo.svg
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="119px" height="21px" viewBox="0 0 119 21" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
|
<!-- Generator: Sketch 49.2 (51160) - http://www.bohemiancoding.com/sketch -->
|
||||||
|
<title>Desktop</title>
|
||||||
|
<desc>Created with Sketch.</desc>
|
||||||
|
<defs></defs>
|
||||||
|
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||||
|
<g id="Desktop" transform="translate(-756.000000, -1761.000000)" fill="#0E0E0E">
|
||||||
|
<text id="IPv6.WORK" font-family="Helvetica-Bold, Helvetica" font-size="25" font-weight="bold" letter-spacing="0.2027027">
|
||||||
|
<tspan x="756" y="1780">IP</tspan>
|
||||||
|
<tspan x="780.026011" y="1780" font-size="22">v</tspan>
|
||||||
|
<tspan x="792.464065" y="1780">6</tspan>
|
||||||
|
<tspan x="806.570576" y="1780" font-size="18">.</tspan>
|
||||||
|
<tspan x="811.774256" y="1780" font-family="Helvetica" font-size="17" font-weight="normal">WORK</tspan>
|
||||||
|
</text>
|
||||||
|
<text id="≠" font-family="Helvetica" font-size="14" font-weight="normal" letter-spacing="0.113513499">
|
||||||
|
<tspan x="866" y="1771">≠</tspan>
|
||||||
|
</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -1,3 +1,4 @@
|
||||||
|
{% load static %}
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
|
@ -13,7 +14,8 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white border-bottom shadow-sm">
|
<div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white border-bottom shadow-sm">
|
||||||
<h5 class="my-0 mr-md-auto font-weight-normal"><a href="{% url 'jobs:index' %}">IPv6.Work</a></h5>
|
|
||||||
|
<h5 class="my-0 mr-md-auto font-weight-normal"><a href="{% url 'jobs:index' %}"><img src="{% static 'img/logo.svg' %}"/></a></h5>
|
||||||
<nav class="my-2 my-md-0 mr-md-3">
|
<nav class="my-2 my-md-0 mr-md-3">
|
||||||
<a class="p-2 text-dark" href="#">Search</a>
|
<a class="p-2 text-dark" href="#">Search</a>
|
||||||
<a class="p-2 text-dark" href="#">Tags</a>
|
<a class="p-2 text-dark" href="#">Tags</a>
|
||||||
|
|
Loading…
Reference in a new issue