55 lines
1.2 KiB
HTML
55 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
|
|
<meta content="width=device-width, initial-scale=1" name="viewport">
|
|
|
|
<link rel="shortcut icon" href="img/favicon.ico">
|
|
|
|
<title>Owl Sprit Cafe</title>
|
|
|
|
<meta content="" name="description">
|
|
<meta content="" name="keywords">
|
|
|
|
<link href="styles/index.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
|
|
</body>
|
|
<h1>Owl Sprit Cafe</h1>
|
|
<p>Delicious Homemade Food</p>
|
|
|
|
<h3>Fresh Local Food</h3>
|
|
<p>We believe in local and oranic food and love to share it with our guests.</p>
|
|
<p>For those who apperciate a cooked meal made from scratch.</p>
|
|
<p>Treat yourself and your date to homemade goodness when you take the time to enjoy a meal at the Owl Sprit Cafe.</p>
|
|
|
|
<h4>Hours</h4>
|
|
<p>
|
|
11:00am - 7:30pm<br>
|
|
Closed Sundays
|
|
</p>
|
|
<h4>Location</h4>
|
|
<address>
|
|
218 Polk St<br>
|
|
Port Townsend, WA 98368
|
|
</address>
|
|
|
|
<h4>Phone</h4>
|
|
<a href="tel:+13603855275">360.385.5275</a>
|
|
|
|
<div id="container">
|
|
<h3>{{ menu.title }}</h3>
|
|
<ul>
|
|
<li v-for="item in menu.entrees">
|
|
{{ item.name }}: {{ item.description }}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
|
|
<script src="/scripts/index.js"></script>
|
|
</body>
|
|
</html> |