-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
92 lines (82 loc) · 4.67 KB
/
index.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
81
82
83
84
85
86
87
88
89
90
91
92
<?php
include_once 'includes/default-section.php';
include_once 'includes/components.php';
include_once 'includes/ads.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include 'includes/head.php';
head('MS Paint IDE');
?>
</head>
<body id="page-top">
<?php include 'includes/navbar.php' ?>
<div class="content">
<div class="container-fluid main-center">
<div class="row justify-content-md-center">
<object class="logo col-xl-3 col-lg-4" onload="startAnimation()" data="images/logos/ms-paint-logo-animated-white.svg" type="image/svg+xml"></object>
</div>
<div class="row justify-content-md-center">
<h1 class="main-header text-center col-xl-4 col-xl-5">MS Paint IDE</h1>
</div>
<div class="row justify-content-md-center">
<div class="button-container d-flex justify-content-center col-xl-4 col-xl-5">
<a class="btn btn-black-outline" href="https://wiki.ms-paint-i.de/" target="_blank">Wiki</a>
<a class="btn btn-black-outline" href="https://github.com/MSPaintIDE" target="_blank">GitHub</a>
<a class="btn btn-black-outline" href="https://discord.gg/RXmPkPJ" target="_blank">Discord</a>
</div>
</div>
</div>
<div class="container col-xl-9">
<?php startSection('About', 'about'); ?>
<p>MS Paint IDE is a program that can read a normal image file saved with MS Paint, and can then translate it to
text with the ability to highlight the text in the image, parse the code, compile and execute it. It
provides a clean and simple interface, with your actual programming in a program you and millions of others
already know how to use, and already have. MS Paint IDE allows the use of external libraries, multiple
classes, and much much more.</p>
<div class="m-auto col-12 col-md-10 col-lg-10">
<div class="video-container">
<iframe class="demo-video" src="https://www.youtube.com/embed/fhSaLx6l9Xk" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<?php
endSection();
createHorizontal();
startSection('Features', 'features');
?>
<div class="even-card-container">
<?php
createInfoCards([
['Assistant Support', 'MS Paint IDE supports basic IDE actions on the Google Assistant, to be used on a Google Home, or just on your phone.', '#'],
['Highlighting', 'The most advanced code highlighting is packaged with the IDE, allowing to make your code not just run beautifully, but look beautiful as well.', '#'],
['Parsing', 'Top of the line parsing is just standard with MS Paint IDE, providing with sometimes a 99% accuracy reading and parsing your programs.', '#'],
['Git', 'MS Paint IDE has all the essential Git features, including and limited to creating a git repository, adding a remote origin, adding files, and committing/pushing.', '#'],
['Theming', 'Don’t quite like how something looks in the IDE? Change it! All colors in the IDE are changeable, so you can make, share, and use themes.', '#'],
['Fastest Growing', 'The fastest growing IDE by our polls, with the most features of any modern day IDE. Since this features section isn\'t legally binding, we can say that.', '#'],
]);
?>
</div>
<?php
endSection();
startSection('Advantages', 'advantages');
?>
<div class="even-card-container">
<?php
createInfoCards([
['Partially Native', 'The main IDE comes with your Windows computer, so you don\'t need to worry about potential viruses with your brand new computer.', '#'],
['Popular', 'Chances are, you probably know about MS Paint, or at least have heard of it. This makes adapting to it easier than most programs.', '#'],
['Oldest', 'MS Paint IDE\'s core program, MS Paint, is older than almost every modern IDE, also making it easily recognisable and bug-resistant.', '#'],
['Code Sharing', 'Code sharing is easy, as your code is just an image. Reduce overhead by ditching your screenshot program, when you can just copy and paste.', '#'],
['Open Source', 'If you wanted to help with the IDE, there are many different areas to work on, including the IDE, the OCR, several wikis, docs, and 2 websites.', '#'],
['Superiority', 'It\'s not Eclipse.', '#']
]);
?>
</div>
<?php endSection(); ?>
</div>
</div>
<?php include 'includes/footer.php' ?>
</body>
</html>