-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstats.php
More file actions
30 lines (27 loc) · 748 Bytes
/
stats.php
File metadata and controls
30 lines (27 loc) · 748 Bytes
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
<?php
include_once 'includes/default-section.php';
include_once 'includes/components.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include 'includes/head.php';
head('MS Paint IDE - Stats');
?>
</head>
<body id="page-top">
<?php include 'includes/navbar.php' ?>
<div class="content">
<div class="container col-xl-9 first-container">
<?php startSection('Stats', 'stats', 'large-section'); ?>
<p>The organization contains several repos revolving around the IDE, most of which are being constantly worked on. More statistics are coming soon.</p>
<?php
createStatsCard(557, 11, 607);
endSection();
?>
</div>
</div>
<?php include 'includes/footer.php' ?>
</body>
</html>