Showing
1 changed file
with
24 additions
and
0 deletions
src/views/layouts/main.handlebars
0 → 100644
1 | +<!doctype html> | ||
2 | +<html lang="ko"> | ||
3 | +<head> | ||
4 | +<meta charset="UTF-8"> | ||
5 | +<meta name="viewport" | ||
6 | + content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | ||
7 | +<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
8 | +<title>Floater</title> | ||
9 | +<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"> | ||
10 | +</head> | ||
11 | +<body> | ||
12 | +<nav class="navbar navbar-light bg-light"> | ||
13 | + <div class="container"> | ||
14 | + <a class="navbar-brand" href="/">Floater</a> | ||
15 | + </div> | ||
16 | +</nav> | ||
17 | +<div class="container"> | ||
18 | + {{{body}}} | ||
19 | +</div> | ||
20 | +<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> | ||
21 | +<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"></script> | ||
22 | +<script src="https://unpkg.com/vue@next"></script> | ||
23 | +</body> | ||
24 | +</html> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment