-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
110 lines (109 loc) · 3.7 KB
/
index.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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!--
@project: GitLab - https://obrymec.github.io/gitlab_home_page_clone/
@author: Obrymec - obrymecsprinces@gmail.com
@fileoverview: The main html structure.
@supported: DESKTOP, MOBILE
@created: 2023-06-16
@updated: 2024-06-09
@file: index.html
@version: 0.0.4
-->
<!--General structure-->
<!DOCTYPE html>
<!--Global structure-->
<html lang = "en">
<!--Head-->
<head>
<!--Loads stylesheet-->
<link href = "./style.css" rel = "stylesheet"/>
<!--Global title-->
<title>GitLab Clone</title>
<!--App favicon-->
<link ref = "./favicon.ico" rel = "shortcut icon" type = "image/ico"/>
<link href = "./favicon.ico" type = "image/ico" rel = "icon"/>
<!--PWA-->
<link href = "./assets/logos/icon-96.png" rel = "apple-touch-icon"/>
<meta name = "apple-mobile-web-status-bar" content = "black"/>
<meta http-equiv = "X-UA-Compatible" content = "id=edge"/>
<link href = "./manifest.json" rel = "manifest"/>
<meta name = "theme-color" content = "black"/>
<!--Meta configurations-->
<meta name = "twitter:image:alt" content = "The home page."/>
<meta name = "tweetmeme-title" content = "The home page"/>
<meta property = "og:site_name" content = "GitLab Clone"/>
<meta name = "twitter:title" content = "The home page"/>
<meta property = "og:title" content = "The home page"/>
<meta property = "og:type" content = "article"/>
<meta property = "og:local" content = "en_US"/>
<meta
content = "The project is academic. It's made to evaluate my level in native web development languages; test my capacity to build advanced user interfaces with HTML, CSS and JavaScript only and learn more things about those technologies."
name = "twitter:description"
/>
<meta
content = "The project is academic. It's made to evaluate my level in native web development languages; test my capacity to build advanced user interfaces with HTML, CSS and JavaScript only and learn more things about those technologies."
property = "og:description"
/>
<meta
content = "The project is academic. It's made to evaluate my level in native web development languages; test my capacity to build advanced user interfaces with HTML, CSS and JavaScript only and learn more things about those technologies."
name = "description"
/>
<meta
content = "https://obrymec.github.io/gitlab_home_page_clone/assets/render/render_1.png"
name = "twitter:image"
/>
<meta
content = "https://obrymec.github.io/gitlab_home_page_clone/assets/render/render_1.png"
property = "og:image"
/>
<meta
content = "https://obrymec.github.io/gitlab_home_page_clone"
property = "og:url"
/>
<meta
content = "https://obrymec.github.io/gitlab_home_page_clone"
name = "twitter:card"
/>
<meta
content = "kDOg6y8PemiOdA-KwvwCThKtTmq-4DH3APNi_DJE8nA"
name = "google-site-verification"
/>
<meta
content = "width=device-width, initial-scale=1"
charset = "utf-8"
name = "viewport"
/>
</head>
<!--Global root-->
<body>
<!--Header-->
<header></header>
<!--Main-->
<main></main>
<!--Footer-->
<footer></footer>
<!--Aside-->
<aside></aside>
<!--External libraries-->
<script
src = "./src/common/utilities/typewriter/typewriter.min.js"
type = "text/javascript"
></script>
<script
src = "./src/common/utilities/toastify/toastify.min.js"
type = "text/javascript"
></script>
<script
src = "./src/common/utilities/animator/anime.min.js"
type = "text/javascript"
></script>
<script
src = "./src/common/utilities/redux/redux.min.js"
type = "text/javascript"
></script>
<!--Controller-->
<script
src = "./src/home_page/main.js"
type = "module"
></script>
</body>
</html>