Make the page presentable.
This commit is contained in:
parent
31779c2a61
commit
3455ffa89f
4 changed files with 35 additions and 6 deletions
|
@ -19,13 +19,13 @@ function navbar_click() {
|
|||
nav.classList.add("navbar-active");
|
||||
nav.classList.remove("navbar");
|
||||
// TODO: This breaks with every new page added
|
||||
nav.children[4].innerHTML = "<"
|
||||
nav.children[3].innerHTML = "<"
|
||||
nav.state.open = true;
|
||||
}
|
||||
else {
|
||||
nav.classList.remove("navbar-active");
|
||||
nav.classList.add("navbar");
|
||||
nav.children[4].innerHTML = ">"
|
||||
nav.children[3].innerHTML = ">"
|
||||
nav.state.open = false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,7 +7,10 @@
|
|||
<h1> Homepage </h1>
|
||||
<h2> UNDER MAINTENANCE </h2>
|
||||
<h2> Welcome to my website </h2>
|
||||
<h3> Marcel Plch </h3> <img src="{% static "base_app/img/me.jpg" %}" width="125" />
|
||||
|
||||
<h3> Marcel Plch </h3>
|
||||
<img src="{% static "base_app/img/me.jpg" %}" width="125" />
|
||||
|
||||
<p>
|
||||
Let's turn this into something useful,
|
||||
shall we.
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{% load static %}
|
||||
|
||||
<title>{{ title }}</title>
|
||||
<link rel="icon" type="image/png" href="">
|
||||
<link rel="icon" type="image/png" href="{% static "base_app/img/dormouse.svg" %}">
|
||||
|
||||
{# REQUIRED META TAGS #}
|
||||
<meta charset="utf-8">
|
||||
|
@ -19,6 +19,33 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<body onload="init()">
|
||||
{# NAVBAR #}
|
||||
<section class="navbar" id="nav">
|
||||
|
||||
<a href="/">
|
||||
<div class="navbar-block">
|
||||
Home
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="/curriculum-vitae">
|
||||
<div class="navbar-block">
|
||||
Curriculum Vitae
|
||||
</div>
|
||||
<a href="/ukraine">
|
||||
<div class="navbar-block">
|
||||
<img src="{% static "base_app/img/ukraine.png" %}" width="16" style="display:inline">
|
||||
Ukraine
|
||||
</div>
|
||||
</a>
|
||||
<div class="navbar-button"
|
||||
onclick="navbar_click()"
|
||||
>
|
||||
>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
{# CONTENT #}
|
||||
{% block content %}
|
||||
|
@ -40,6 +67,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="{% static "base_app/js/master.js" %}"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
|
@ -18,9 +18,7 @@ from django.urls import path
|
|||
from base_app.views import IndexView, LoremView, CVView, UkraineView
|
||||
|
||||
urlpatterns = [
|
||||
path('admin/', admin.site.urls),
|
||||
path('', IndexView.as_view()),
|
||||
path('lorem-ipsum/', LoremView.as_view()),
|
||||
path('curriculum-vitae/', CVView.as_view()),
|
||||
path('ukraine/', UkraineView.as_view()),
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue