-
Notifications
You must be signed in to change notification settings - Fork 0
/
view.html
55 lines (40 loc) · 1.33 KB
/
view.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<title>RBlog</title>
<meta name="description" content="I occasionally writes.">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,h1,h2,h3,h4,h5 {font-family: "Raleway", sans-serif}
</style>
<body class="w3-light-grey">
<!-- w3-content defines a container for fixed size centered content, and is wrapped around the whole page content, except for the footer in this example -->
<div class="w3-content" style="max-width:1400px">
<!-- Header -->
<div data-include="views/header.html"></div>
<!-- Grid -->
<div class="w3-row">
<!-- Blog entries -->
<div class="w3-col l8 s12">
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div data-view=""></div>
</div>
</div>
<!-- Introduction menu -->
<div class="w3-col l4">
<div data-include="views/menu.html"></div>
<div data-include="views/contacts.html"></div>
</div>
<!-- END GRID -->
</div><br>
<!-- END w3-content -->
</div>
<script src="js/jquery-3.6.0.min.js"></script>
<script src="js/include.js"></script>
<script src="js/view.js"></script>
</body>
</html>