Created
August 5, 2019 06:56
-
-
Save jcuffe/5b496799ef871dc6d4063d7867e9c6e0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
<title>Updog</title> | |
</head> | |
<body> | |
<nav-bar></nav-bar> | |
<script type="module" src="main.js"></script> | |
</body> | |
</html> |
This file contains hidden or 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
import "./components/site-icon.js" | |
import "./components/nav-bar.js" | |
const navBar = document.querySelector("nav-bar") | |
navBar.pages = [{ name: "About", location: "/about.html" }] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment