-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6892e77
commit 78241d6
Showing
16 changed files
with
633 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>About</title> | ||
<style> | ||
/* Body styles */ | ||
body { | ||
background-color: #dad8c9; /* Light blue background */ | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
/* Header styles */ | ||
h1 { | ||
color: #6a6767; /* Yellow for header */ | ||
font-size: 2em; | ||
text-align: center; | ||
margin: 20px 0; /* Add some top and bottom margin */ | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
{{template "header.html" .}} | ||
<p></p> | ||
<h1>About</h1> | ||
<div>This is an about page.</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<html> | ||
<head> | ||
<title>My Website</title> | ||
<style> | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
font-family: Arial, sans-serif; | ||
} | ||
|
||
header { | ||
background-color: #f0f0f0; | ||
padding: 20px; | ||
display: flex; /* Make header elements flexible */ | ||
justify-content: space-between; /* Space buttons evenly */ | ||
} | ||
|
||
h1 { | ||
margin: 0; | ||
font-size: 2em; | ||
} | ||
|
||
nav { | ||
display: flex; /* Make buttons behave as flex items */ | ||
} | ||
|
||
nav a { | ||
margin: 0 10px; /* Adjust spacing between buttons */ | ||
text-decoration: none; | ||
color: #333; | ||
padding: 10px 20px; /* Add padding for buttons */ | ||
border: 1px solid #ddd; /* Add simple border */ | ||
border-radius: 5px; /* Add rounded corners */ | ||
} | ||
|
||
nav a:hover { | ||
background-color: #eee; | ||
color: #000; | ||
} | ||
|
||
/* Responsive Styles (for smaller screens) */ | ||
@media (max-width: 768px) { | ||
header { | ||
flex-direction: column; /* Stack elements vertically */ | ||
} | ||
|
||
nav { | ||
flex-direction: column; /* Make buttons stack vertically */ | ||
} | ||
|
||
nav a { | ||
margin-bottom: 10px; /* Adjust spacing for stacked buttons */ | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>NK Robotics - Admin</h1> | ||
<nav> | ||
<a href="http://localhost:8080/admin/">Home</a> | ||
<a href="http://localhost:8080/admin/about">About</a> | ||
<a href="contact">Contact</a> | ||
<a href="login">Login</a> | ||
</nav> | ||
</header> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Management</title> | ||
<style> | ||
/* Body styles */ | ||
body { | ||
background-color: #dad8c9; /* Light blue background */ | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
/* Header styles */ | ||
h1 { | ||
color: #6a6767; /* Yellow for header */ | ||
font-size: 2em; | ||
text-align: center; | ||
margin: 20px 0; /* Add some top and bottom margin */ | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
{{template "header.html" .}} | ||
<p></p> | ||
<h1>Admin Management Panel</h1> | ||
<div>Admin Management here.</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Contact Us</title> | ||
<style> | ||
/* Body styles */ | ||
body { | ||
background-color: #dad8c9; /* Light blue background */ | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
/* Header styles */ | ||
h1 { | ||
color: #6a6767; /* Yellow for header */ | ||
font-size: 2em; | ||
text-align: center; | ||
margin: 20px 0; /* Add some top and bottom margin */ | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
{{template "header.html" .}} | ||
<p></p> | ||
<h1>Contact Us</h1> | ||
<div>This is a contact page.</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<html> | ||
<head> | ||
<title>My Website</title> | ||
<style> | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
font-family: Arial, sans-serif; | ||
} | ||
|
||
header { | ||
background-color: #f0f0f0; | ||
padding: 20px; | ||
display: flex; /* Make header elements flexible */ | ||
justify-content: space-between; /* Space buttons evenly */ | ||
} | ||
|
||
h1 { | ||
margin: 0; | ||
font-size: 2em; | ||
} | ||
|
||
nav { | ||
display: flex; /* Make buttons behave as flex items */ | ||
} | ||
|
||
nav a { | ||
margin: 0 10px; /* Adjust spacing between buttons */ | ||
text-decoration: none; | ||
color: #333; | ||
padding: 10px 20px; /* Add padding for buttons */ | ||
border: 1px solid #ddd; /* Add simple border */ | ||
border-radius: 5px; /* Add rounded corners */ | ||
} | ||
|
||
nav a:hover { | ||
background-color: #eee; | ||
color: #000; | ||
} | ||
|
||
/* Responsive Styles (for smaller screens) */ | ||
@media (max-width: 768px) { | ||
header { | ||
flex-direction: column; /* Stack elements vertically */ | ||
} | ||
|
||
nav { | ||
flex-direction: column; /* Make buttons stack vertically */ | ||
} | ||
|
||
nav a { | ||
margin-bottom: 10px; /* Adjust spacing for stacked buttons */ | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>NK Robotics</h1> | ||
<nav> | ||
<a href="http://localhost:8080/">Home</a> | ||
<a href="about">About</a> | ||
<a href="contact">Contact</a> | ||
<a href="login">Login</a> | ||
</nav> | ||
</header> | ||
</body> | ||
</html> |
Oops, something went wrong.