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

Merge branch 'master' into 'main'

added nav bar to add project

See merge request !22
parents 414d0cbe 0e52b6ea
No related branches found
No related tags found
1 merge request!22added nav bar to add project
......@@ -9,6 +9,16 @@
<script src="https://kit.fontawesome.com/221d185582.js" crossorigin="anonymous"></script>
</head>
<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>
<form method="POST" action="{{ url_for('add_project') }}">
{% if form %}
......
......@@ -61,7 +61,6 @@
}
</style>
</head>
<body>
<nav>
<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