-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (69 loc) · 2.24 KB
/
index.html
File metadata and controls
85 lines (69 loc) · 2.24 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SJ14Apps</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/logo.css">
<link rel="stylesheet" href="css/home-style.css">
<link rel="mask-icon" href="img/logo2.2.png" color="#000000">
<link rel="alternate icon" class="js-site-favicon" type="image/x-icon" href="img/logo2.3.png" color="#000000">
<link rel="icon" type="image/x-icon" href="img/logo2.3.png">
<meta name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="theme-color" content="#0066FF"/>
<meta name="google-site-verification" content="oO5kxLwZb3jPSbs-HEURHZr2hbkCq_GcGTITCJHdB9g" />
</head>
<script>
const navList= [
{ text: "Home", href: "#home" },
{ text: "Projects", href: "#projects" },
{ text: "Contact", href: "#contacts" }
]
</script>
<body data-page="home">
<div id="nav"></div>
<div id="bg">
<div class="blobs">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div id="main">
<div id="msg_dialog">
<div class="corner">
<div>
<p id="msg_txt">{Message}</p>
</div>
<a onclick="hideDialog()">OK</a>
</div>
</div>
<div id="home" class="section">
<div>
<h3>🚧 Under construction 🚧</h3>
<h1>SJ14Apps</h1>
<h3>Projects created by <a href="https://slavce.sj14apps.com">SlaVcE14</a></h3>
</div>
</div>
<div id="projects" class="section">
<h2>Projects</h2>
<div id="projects_container">
<!-- generate from projects.json -->
</div>
</div>
<div id="contacts" class="section"></div>
<footer id="footer"></footer>
</div>
<script src="js/loadTemplates.js"></script>
<script src="js/script.js"></script>
<script src="js/displayProjects.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2YS8LF47VL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2YS8LF47VL');
</script>
</body>
</html>