Merge branch 'feature-header-template' into 'develop'

Feature header template

See merge request !44
This commit is contained in:
Henri Varjotie
2017-09-20 19:11:53 +03:00
4 changed files with 25 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
.header-content {
}
.header-content .logo {
}
.header-content .logo img {
display: block;
width: 100%;
height: auto;
margin: auto;
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

+3
View File
@@ -22,6 +22,9 @@
</head>
<body>
<div class="header">
{% include "sik_header.html" %}
</div>
<div class="page-content">
{% include "navigation.html" %}
{% block content %}
+8
View File
@@ -0,0 +1,8 @@
{% load i18n %}
<link rel="stylesheet" href="/static/css/sik_header.css">
<div class="header-content">
<div class="logo">
<a href="/"><img src="/static/img/logo_header.png" alt="Shiit ei kuvaa"></a>
</div>
</div>