-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.html
79 lines (76 loc) · 4.15 KB
/
header.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!--<!DOCTYPE html>-->
<!--<html lang="en">-->
<!--<head>-->
<!-- <meta charset="UTF-8">-->
<!-- <title>-->
<!-- <title>Yute's portfolio</title>-->
<!-- <meta charset="utf-8" />-->
<!-- <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />-->
<!-- <link rel="stylesheet" href="static/assets/css/main.css" />-->
<!-- <noscript><link rel="stylesheet" href="static/assets/css/noscript.css" /></noscript>-->
<!-- </title>-->
<!--</head>-->
<!--<body>-->
<!-- <nav id="nav">-->
<!-- <ul>-->
<!-- <li><a href="index.html">Home</a></li>-->
<!-- <li>-->
<!-- <a href="#">Background</a>-->
<!-- <ul>-->
<!-- <li><a href="{{url_for('hobbies')}}">Hobbies</a></li>-->
<!-- <li><a href="#">Education</a></li>-->
<!-- <li><a href="#">Specialty</a></li>-->
<!--<!– <li>–>-->
<!--<!– <a href="#">And a submenu …</a>–>-->
<!--<!– <ul>–>-->
<!--<!– <li><a href="#">Lorem ipsum dolor</a></li>–>-->
<!--<!– <li><a href="#">Phasellus consequat</a></li>–>-->
<!--<!– <li><a href="#">Magna phasellus</a></li>–>-->
<!--<!– <li><a href="#">Etiam dolore nisl</a></li>–>-->
<!--<!– </ul>–>-->
<!--<!– </li>–>-->
<!--<!– <li><a href="#">Veroeros feugiat</a></li>–>-->
<!-- </ul>-->
<!-- </li>-->
<!-- <li><a href="#">Projects</a></li>-->
<!--<!– <li><a href="right-sidebar.html">Right Sidebar</a></li>–>-->
<!-- <li><a href="{{url_for('contact')}}">Contact Me</a></li></ul>-->
<!-- </nav>-->
<!--</body>-->
<!--</html>-->
<!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>Victor Buntrok</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="static/assets/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v6.1.0/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="static/css/styles.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand" href="{{url_for('hello_world')}}">Victor Buntrok</a>
<button class="navbar-toggler text-uppercase font-weight-bold bg-primary text-white rounded" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ms-auto">
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="#"}>Portfolio</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="#">Sobre</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="{{url_for('contact')}}">Contato</a></li>
</ul>
</div>
</div>
</nav>