-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.php
52 lines (45 loc) · 2.65 KB
/
about.php
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
<?php
include $_SERVER["DOCUMENT_ROOT"] . '/resources/common/autoloader.php';
include $_SERVER["DOCUMENT_ROOT"] . '/resources/common/session.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php require $_SERVER["DOCUMENT_ROOT"] . '/resources/templates/head.php'; ?>
<!-- Title -->
<title>About | Scratch Tools</title>
</head>
<body data-dm-shortcut-enabled="true" data-sidebar-shortcut-enabled="true" <?php include $_SERVER["DOCUMENT_ROOT"] . '/resources/common/theme.php'; ?>>
<!-- Hidden navigation section id -->
<input type="hidden" name="nav-section-id" id="nav-section-id" value="about">
<?php include $_SERVER["DOCUMENT_ROOT"] . '/resources/common/modals.php'; ?>
<!-- Page wrapper with navbar, sidebar, navbar fixed bottom, and sticky alerts (toasts) -->
<div class="page-wrapper with-navbar with-sidebar with-navbar-fixed-bottom with-custom-webkit-scrollbars with-custom-css-scrollbars" data-sidebar-type="overlayed-sm-and-down">
<!-- Sticky alerts (toasts), empty container -->
<div class="sticky-alerts"></div>
<!-- Navbar -->
<?php require $_SERVER["DOCUMENT_ROOT"] . '/resources/templates/header.php'; ?>
<!-- Sidebar overlay -->
<div class="sidebar-overlay" onclick="halfmoon.toggleSidebar()"></div>
<!-- Sidebar -->
<?php require $_SERVER["DOCUMENT_ROOT"] . '/resources/templates/sidebar.php'; ?>
<!-- Content wrapper -->
<div class="content-wrapper">
<div class="content">
<p class="font-size-24 text-center">
ABOUT - Scratch Tools is under development.
</p>
<p class="text-justify">
Welcome to Scratch Tools! This website is dedicated to helping Scratchers as well as New Scratchers get the most out of the Scratch website. Packed with great tools and utilities, Scratch Tools is the perfect choice for beginners and advanced coders. However, since Scratch Tools has just launched, there are actually very few working features. Still, you can go ahead and explore Scratch Tools right now! If you would like to join the development team, please post a comment on my Scratch profile (link below). Thanks!
<br><br>
Should you have any questions please <a href="https://scratch.mit.edu/users/SuperScratcher_1234" class="hyperlink">contact me on</a> Scratch. Please check back later for updates! Thank you for
visiting!
</div>
</div>
<!-- Navbar fixed bottom -->
<?php
require $_SERVER["DOCUMENT_ROOT"] . '/resources/templates/footer.php';
?>
</div>
</body>
</html>