Skip to content
Snippets Groups Projects
Commit bc2ff8ff authored by Jomaro Rodrigues's avatar Jomaro Rodrigues
Browse files

work in progress: interface

parent 9f345bd2
No related branches found
No related tags found
1 merge request!1WIP: Development
html {
height: 100%;
}
body {
min-height: 100%;
display: flex;
}
header {
}
main {
flex-grown: 1;
}
footer {
}
<!DOCTYPE html>
{% load static %}<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{{ title|default:"A.D.E.G.A"}}</title>
<link rel="stylesheet" href="{% static 'bootstrap4/css/bootstrap.min.css' %}"/>
</head>
<body>
{% block content %}
<header>
</header>
<main class="container-fluid">
<div class="row">
<aside class="col-md-3">
<ul>
<li><a href="{% url 'uploads:home' %}">Upload new</a></li>
</ul>
</aside>
<section id="main" class="col-md-9">
{% block content %}
{% endblock %}
</section>
</div>
</main>
<footer>
@ Copyright 2018 PET Computação UFPR
</footer>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
{% endblock %}
<script src="{% static 'bootstrap4/js/bootstrap.bundle.min.js' %}"></script>
</body>
</html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment