43 lines
1.3 KiB
HTML
43 lines
1.3 KiB
HTML
{% load bootstrap4 %}
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
|
|
<title>Starter Template for Bootstrap</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
{% bootstrap_css %}
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
|
|
<!-- Custom styles for this template -->
|
|
<link href="/static/css/custom.css" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include 'nav.html' %}
|
|
|
|
|
|
{% block main_body %}
|
|
<main role="main" class="container">
|
|
<div class="starter-template">
|
|
<h1>Bootstrap starter template</h1>
|
|
<p class="lead">Use this document as a way to quickly start any new project.<br> All you get is this text and a mostly barebones HTML document.</p>
|
|
</div>
|
|
</main><!-- /.container -->
|
|
{% endblock main_body %}
|
|
|
|
|
|
<!-- Bootstrap core JavaScript
|
|
================================================== -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
{% bootstrap_javascript jquery='full' %}
|
|
</body>
|
|
</html>
|