-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathabout.php
More file actions
91 lines (79 loc) · 4.24 KB
/
about.php
File metadata and controls
91 lines (79 loc) · 4.24 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Wolfsvale | About</title>
<link rel="stylesheet" href="src/assets/styling/navbar.css">
<link rel="stylesheet" href="src/assets/styling/home.css">
<meta name="viewport" content="width=device-width">
</head>
<body>
<?php include_once('src/assets/components/navbar.php') ?>
<div style="margin-top: 50px" class="container">
<div id="about">
<h1 class="center">About the company</h1>
<div class="image-text-align">
<div>
Wolfsvale Software is a company founded and owned by <span class="text-highlight">Joshua Slui</span>,
containing a team of a dozen <span class="text-highlight">volunteer developers</span> looking to learn more about development at a reputable company.
Our main goal is to create <span class="text-highlight">FOSS software</span> where this is not present. We intend to do this <span class="text-highlight">with as little costs as possible</span>,
while maintaining our goal of <span class="text-highlight">user-friendliness</span>, as well as <span class="text-highlight">a feature-rich application</span>.
<br><br>
Wolfsvale will never charge you for usage of our software. Some of our services offer hosting.
We will set this up for you at a third party hosting and charge you for the hosting costs plus additional charges for updates, maintenance and our efforts.
</div>
<div id="mascotte">
<img src="src/assets/images/hazzy_icon.png" alt="our mascotte" height="200px" class="ml-50">
</div>
</div>
</div>
<hr>
<div id="team">
<h2>Owner</h2>
<div class="image-text-align">
<img height="100px" class="image-round" src="https://avatars.githubusercontent.com/u/34064010?v=4" alt="Josh">
<div class="ml-10">
<h3>Joshua Slui</h3>
<a href="https://github.com/MiataBoy" target="_blank" class="text-highlight">MiataBoy on Github</a>
</div>
</div>
<h2>Volunteer developers</h2>
<div id="volunteer">
<?php
include_once('getUserByRole.php');
$json = file_get_contents('cache.json');
$decoded = json_decode($json, true);
foreach ($decoded['users'] as $user) {
$avatar = $user['avatar'];
$username = $user['name'];
echo <<<EOL
<div class="image-text-align mr-50 mb-10 disableFloat">
<img height="100px" class="image-round" src="$avatar" alt="$username">
<div class="ml-10">
<h3>$username</h3>
</div>
</div>
EOL;
}
?>
</div>
</div>
<hr>
<div>
As we progress into a company, we are working towards providing more services to our users,
and opening the possibility to sell hosting for our services with third party hosting.
We currently have the following services and products:
<ul>
<li>Pingernos</li>
<li>Nightly ORG
<ul>
<li>Nightly Bot</li>
</ul>
</li>
</ul>
We are also working on a list of other services, such as the Dragonet support center.
More about this will be published as we approach a point of stability with Dragonet.
</div>
</div>
<?php include_once('src/assets/components/footer.php') ?>
</body>
</html>