-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterface.php
More file actions
executable file
·50 lines (41 loc) · 1.64 KB
/
interface.php
File metadata and controls
executable file
·50 lines (41 loc) · 1.64 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
<?php
# TITLE : Application Interface
# DESC : The Interface handling the Application GUI
# PROPRIETOR: VARSITYMARKET_TECHNOLOGIES
# VERSION : 1.0.1.1
# AUTHOR : HARDY HASTINGS
# RELEASE : 2026/01/30
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Embedded Store Engine</title>
<link rel="stylesheet" href="/assets/style.css">
<meta name="description" content="Varsity Market — Premium Embedded Store Engine">
<meta name="keywords" content="store, ecommerce, embedded, varsity market">
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json">
<!-- Theme Color -->
<meta name="theme-color" content="#7a1aab">
<!-- iOS PWA Support -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Embedded Admin Store ">
<!-- Favicons -->
<link href="/assets/favicon.png" rel="icon">
<link href="/assets/favicon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<!-- Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<?php if (isset($_GET['source']) && $_GET['source'] == "pwa") { ?>
<?php @include_once "pages/page.mobile.php"; ?>
<?php } else { ?>
<?php @include_once "pages.php"; ?>
<?php } ?>
</body>
</html>