Skip to content
Snippets Groups Projects
Commit 0e52b6ea authored by Felix Chadwick-Smith's avatar Felix Chadwick-Smith
Browse files

added nav bar

parent 491bd3b4
No related branches found
No related tags found
Loading
...@@ -9,6 +9,16 @@ ...@@ -9,6 +9,16 @@
<script src="https://kit.fontawesome.com/221d185582.js" crossorigin="anonymous"></script> <script src="https://kit.fontawesome.com/221d185582.js" crossorigin="anonymous"></script>
</head> </head>
<body> <body>
<nav>
<ul>
<li><a href="{{ url_for('home') }}">Home</a></li>
<li><a href="{{ url_for('about') }}">About Me</a></li>
<li><a href="{{ url_for('experience') }}">Experience</a></li>
<li><a href="{{ url_for('portfolio') }}">Portfolio</a></li>
<li><a href="{{ url_for('add_project') }}">Add Project</a></li>
<li><a href="{{ url_for('contact') }}">Contact</a></li>
</ul>
</nav>
<h2>Add Project</h2> <h2>Add Project</h2>
<form method="POST" action="{{ url_for('add_project') }}"> <form method="POST" action="{{ url_for('add_project') }}">
{% if form %} {% if form %}
......
...@@ -61,7 +61,6 @@ ...@@ -61,7 +61,6 @@
} }
</style> </style>
</head> </head>
<body> <body>
<nav> <nav>
<ul> <ul>
......
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