Updated base.html

This commit is contained in:
Abhiram Vishnubhotla
2024-07-21 12:42:47 -05:00
commit b0906f52f7
11 changed files with 126 additions and 0 deletions

7
templates/awards.html Normal file
View File

@@ -0,0 +1,7 @@
{% extends "base.html" %}
{% block title %}Awards{% endblock %}
{% block content %}
{% endblock %}

34
templates/base.html Normal file
View 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>

View File

@@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block title %}Competition Log{% endblock %}
{% block content %}
<body>
<p>competitions</p>
</body>
{% endblock %}

11
templates/contact.html Normal file
View File

@@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block title %}Communication{% endblock %}
{% block content %}
<body>
<p>contact</p>
</body>
{% endblock %}

View File

@@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block title %}Members and Contributors{% endblock %}
{% block content %}
<body>
<p>contributors</p>
</body>
{% endblock %}

11
templates/home.html Normal file
View File

@@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
<body>
<p>home</p>
</body>
{% endblock %}

7
templates/robot.html Normal file
View File

@@ -0,0 +1,7 @@
{% extends "base.html" %}
{% block title %}About The Robot{% endblock %}
{% block content %}
{% endblock %}