-
Notifications
You must be signed in to change notification settings - Fork 1
/
logos.php
80 lines (76 loc) · 3.1 KB
/
logos.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
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
<?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 - Logos');
?>
<script src="/js/logos.js" async></script>
</head>
<body id="page-top">
<?php include 'includes/navbar.php' ?>
<div class="content">
<div class="container col-xl-9 first-container">
<?php startSection('Logos', 'logos', 'large-section'); ?>
<p>All MS Paint IDE logos are available to be used by anyone to refer to MS Paint IDE, or a project in the
organization. Logos are available in both PNG and SVG formats.</p>
<div class="even-card-container resource-card-container top-padded">
<?php
createResourceCards([
[
'name' => 'Colored',
'image' => '/images/logos/ms-paint-logo-colored.png',
'downloads' => [
'PNG' => '/images/logos/ms-paint-logo-colored.png',
'SVG' => '/images/logos/ms-paint-logo-colored.svg'
]
],
[
'name' => 'White',
'image' => '/images/logos/ms-paint-logo-white.png',
'downloads' => [
'PNG' => '/images/logos/ms-paint-logo-white.png',
'SVG' => '/images/logos/ms-paint-logo-white.svg'
]
],
[
'name' => 'Black',
'image' => '/images/logos/ms-paint-logo.png',
'downloads' => [
'PNG' => '/images/logos/ms-paint-logo.png',
'SVG' => '/images/logos/ms-paint-logo.svg'
]
],
[
'name' => 'Animated White',
'image' => '/images/logos/ms-paint-logo-animated-white.svg',
'info' => 'SVG provides a single animation, where Toggleable requires the class \'animate\' to be added to the SVG content to activate the animation.',
'downloads' => [
'SVG' => '/images/logos/ms-paint-logo-animated-white-immediate.svg',
'Toggleable' => '/images/logos/ms-paint-logo-animated-white.svg'
]
],
[
'name' => 'Animated Black',
'image' => '/images/logos/ms-paint-logo-animated-black.svg',
'info' => 'SVG provides a single animation, where Toggleable requires the class \'animate\' to be added to the SVG content to activate the animation.',
'downloads' => [
'SVG' => '/images/logos/ms-paint-logo-animated-black-immediate.svg',
'Toggleable' => '/images/logos/ms-paint-logo-animated-black.svg'
]
]
]);
?>
</div>
<?php
endSection();
?>
</div>
</div>
<?php include 'includes/footer.php' ?>
</body>
</html>