-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (94 loc) · 3.5 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
<!--
@project: Open Transfer - https://cacybernetic.github.io/opentransfer
@author: Obrymec - obrymecsprinces@gmail.com
@fileoverview: The global html structure.
@supported: DESKTOP & MOBILE
@created: 2024-03-04
@updated: 2024-04-17
@file: index.html
@version: 0.0.2
-->
<!--Open Transfer-->
<!doctype html>
<!--HTML structure-->
<html lang = "fr">
<!--Head-->
<head>
<!--Global title-->
<title>Open Transfer</title>
<!--Loads stylesheet-->
<link href = "./style.css" rel = "stylesheet"/>
<!--Favicon-->
<link href = "./favicon.ico" rel = "shortcut icon" type = "image/ico"/>
<link href = "./favicon.ico" type = "image/ico" rel = "icon"/>
<!--PWA-->
<link href = "./assets/logos/logo-96.png" rel = "apple-touch-icon"/>
<meta name = "apple-mobile-web-status-bar" content = "black"/>
<meta http-equiv = "X-UA-Compatible" content = "id=edge"/>
<meta name = "theme-color" content = "black"/>
<!--Meta configs-->
<meta name = "twitter:image:alt" content = "The landing page."/>
<meta property = "og:site_name" content = "Open Transfer"/>
<meta property = "og:type" content = "article"/>
<meta property = "og:local" content = "fr_FR"/>
<meta
content = "Enfin une solution alternative aux pénibles code USSD pour effectuer des transferts MoMo sans frais (0f) grâce à une application mobile fonctionnant hors connexion adaptée aux problèmes des réseaux souvent rencontrés."
name = "twitter:description"
/>
<meta
content = "Enfin une solution alternative aux pénibles code USSD pour effectuer des transferts MoMo sans frais (0f) grâce à une application mobile fonctionnant hors connexion adaptée aux problèmes des réseaux souvent rencontrés."
property = "og:description"
/>
<meta
content = "Enfin une solution alternative aux pénibles code USSD pour effectuer des transferts MoMo sans frais (0f) grâce à une application mobile fonctionnant hors connexion adaptée aux problèmes des réseaux souvent rencontrés."
name = "description"
/>
<meta
content = "https://cacybernetic.github.io/opentransfer/assets/render/render_1.png"
name = "twitter:image"
/>
<meta
content = "https://cacybernetic.github.io/opentransfer/assets/render/render_1.png"
property = "og:image"
/>
<meta
content = "Ne saisissez plus manuellement les codes USSD"
name = "tweetmeme-title"
/>
<meta
content = "Ne saisissez plus manuellement les codes USSD"
name = "twitter:title"
/>
<meta
content = "Ne saisissez plus manuellement les codes USSD"
property = "og:title"
/>
<meta
content = "https://cacybernetic.github.io/opentransfer/"
property = "og:url"
/>
<meta
content = "https://cacybernetic.github.io/opentransfer/"
name = "twitter:card"
/>
<meta
content = "8UBavBS3-MRNRScqmxLiM5gEIT91jzM7HCqzEFUK3OA"
name = "google-site-verification"
/>
<meta
content = "width=device-width, initial-scale=1.0"
charset = "utf-8"
name = "viewport"
/>
</head>
<!--Global body-->
<body>
<!--Root node-->
<div id = "root"></div>
<!--External dependencies-->
<script src = "./widgets/msgbox.js" type = "text/javascript"></script>
<script src = "./widgets/toast.js" type = "text/javascript"></script>
<!--Controller-->
<script src = "./src/main.jsx" type = "module"></script>
</body>
</html>