1
0
CompleteNodeJS/web-server/templates/views/about.hbs
Jason Williams 0628f3cdc7 Video 69: Avoiding Global Modules
Completed weather app, including all updates from Section 9 (Videos 60-69)
2019-10-10 17:48:22 -06:00

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>