forked from angular/design-love
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_layout.ejs
More file actions
22 lines (19 loc) · 804 Bytes
/
_layout.ejs
File metadata and controls
22 lines (19 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="favicon.ico" rel="shortcut icon" type="image/ico">
<title>Angular Name</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300,500,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="/node_modules/material-design-lite/material.min.css">
<link rel="stylesheet" href="styles/main.css">
</head>
<body class="mdl-base">
<%- yield %>
<script src="/node_modules/material-design-lite/material.min.js"></script>
</body>
</html>