Updated base.html
This commit is contained in:
34
templates/base.html
Normal file
34
templates/base.html
Normal file
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{% block title %}FTC Robotics{% endblock %}</title>
|
||||
<!--Shared Files-->
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
|
||||
<script src="{{ url_for('static', filename='js/scripts.js') }}"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul class="nav-container">
|
||||
<li class="nav-item nav-brand">
|
||||
<a href="/"></a>
|
||||
</li>
|
||||
<li class="nav-item center">
|
||||
<a href="/contributors">Contributors</a>
|
||||
</li>
|
||||
<li class="nav-item center">
|
||||
<a href="/competitions">Competitions</a>
|
||||
</li>
|
||||
<li class="nav-item center">
|
||||
<a href="/contact">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!-- This is where child templates will insert their content -->
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user