Video 52: Styling the Application: Part II
This commit is contained in:
@@ -3,13 +3,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>404</title>
|
||||
<link rel="icon" href="/img/weather.png">
|
||||
<link rel="stylesheet" href="/css/styles.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="main-content">
|
||||
{{>header}}
|
||||
<p>{{errorMessage}}</p>
|
||||
{{>footer}}
|
||||
</div>
|
||||
|
||||
{{>footer}}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
@@ -3,13 +3,18 @@
|
||||
<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}}
|
||||
<img src="/img/me.jpg">
|
||||
{{>footer}}
|
||||
<img class="portrait" src="/img/me.jpg">
|
||||
</div>
|
||||
|
||||
{{>footer}}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
@@ -3,13 +3,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Help</title>
|
||||
<link rel="icon" href="/img/weather.png">
|
||||
<link rel="stylesheet" href="/css/styles.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="main-content">
|
||||
{{>header}}
|
||||
<p>{{helpText}}</p>
|
||||
{{>footer}}
|
||||
</div>
|
||||
|
||||
{{>footer}}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
@@ -3,13 +3,19 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Weather</title>
|
||||
<link rel="icon" href="/img/weather.png">
|
||||
<link rel="stylesheet" href="/css/styles.css">
|
||||
<script src="/js/app.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="main-content">
|
||||
{{>header}}
|
||||
{{>footer}}
|
||||
<p>Use this site to get your weather!</p>
|
||||
</div>
|
||||
|
||||
{{>footer}}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user