0628f3cdc7
Completed weather app, including all updates from Section 9 (Videos 60-69)
22 lines
399 B
Handlebars
22 lines
399 B
Handlebars
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<title>About</title>
|
|
<link rel="icon" href="/img/weather.png">
|
|
<link rel="stylesheet" href="/css/styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="main-content">
|
|
{{>header}}
|
|
<p>This site was created by Jason Williams. It uses data from mapbox.com and darksky.net!</p>
|
|
<img class="portrait" src="/img/me.jpg">
|
|
</div>
|
|
|
|
{{>footer}}
|
|
</body>
|
|
|
|
</html>
|