summaryrefslogtreecommitdiff
path: root/jetbrains/index.php
blob: 5d2802a38c5bfce337b7d5eba51bd0ae364cc952 (plain)
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
<?php $title = "Supported by JetBrains"; require $_SERVER['DOCUMENT_ROOT'] . "/includes/main.php"; require $_SERVER['DOCUMENT_ROOT'] . "/includes/header.php"; ?>

<div class="container">
    <br><br>
    <h1>Supported by <a href="https://jetbrains.com" target="_blank">JetBrains</a></h1>
</div>

<div style="background-color: #000000; margin-top: 20px; border-top: 1px solid rgba(255, 255, 255, .25); border-bottom: 1px solid rgba(255, 255, 255, .25);height: 360px;margin-bottom: 20px;">
    <div class="container" style="display: grid; grid-template-columns: max-content 1px 1fr;height: 360px;">
        <div style="height: 360px;">
            <img alt="" src="/assets/jetbrains/main.svg" style="height: 180px;">
        </div>
        <div style="width: 1px; height: 100%; background-color: rgba(255, 255, 255, .25);"></div>
        <div style="height: 360px;">
            <div style="display: grid; grid-template-columns: repeat(6, 1fr); height: 50%;">
                <div style="display: flex; align-items: center; justify-content: center; text-align: center;">
                    <div>
                        <img alt="" src="/assets/jetbrains/clion.svg"><br>
                        <span style="display: block; margin-top: 5px;">CLion</span>
                    </div>
                </div>
                <div style="display: flex; align-items: center; justify-content: center; text-align: center;">
                    <div>
                        <img alt="" src="/assets/jetbrains/intellij.svg"><br>
                        <span style="display: block; margin-top: 5px;">IntelliJ IDEA</span>
                    </div>
                </div>
                <div style="display: flex; align-items: center; justify-content: center; text-align: center;">
                    <div>
                        <img alt="" src="/assets/jetbrains/phpstorm.svg"><br>
                        <span style="display: block; margin-top: 5px;">PhpStorm</span>
                    </div>
                </div>
                <div style="display: flex; align-items: center; justify-content: center; text-align: center;">
                    <div>
                        <img alt="" src="/assets/jetbrains/pycharm.svg"><br>
                        <span style="display: block; margin-top: 5px;">PyCharm</span>
                    </div>
                </div>
                <div style="display: flex; align-items: center; justify-content: center; text-align: center;">
                    <div>
                        <img alt="" src="/assets/jetbrains/rider.svg"><br>
                        <span style="display: block; margin-top: 5px;">Rider</span>
                    </div>
                </div>
                <div style="display: flex; align-items: center; justify-content: center; text-align: center;">
                    <div>
                        <img alt="" src="/assets/jetbrains/webstorm.svg"><br>
                        <span style="display: block; margin-top: 5px;">WebStorm</span>
                    </div>
                </div>
            </div>
            <div style="display: grid; grid-template-columns: 1fr 3fr repeat(2, 1fr); height: 50%;">
                <div style="display: flex; align-items: center; justify-content: center; text-align: center;">
                    <div>
                        <img alt="" src="/assets/jetbrains/fleet.svg"><br>
                        <span style="display: block; margin-top: 5px;">Fleet</span>
                    </div>
                </div>
                <div></div>
                <div style="display: flex; align-items: center; justify-content: center; text-align: center;">
                    <div>
                        <img alt="" src="/assets/jetbrains/cwm.svg"><br>
                        <span style="display: block; margin-top: 5px;">Code With Me</span>
                    </div>
                </div>
                <div style="display: flex; align-items: center; justify-content: center; text-align: center;">
                    <div>
                        <img alt="" src="/assets/jetbrains/space.svg"><br>
                        <span style="display: block; margin-top: 5px;">Space</span>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

<div class="container">
    <p>JetBrains has been providing Equestria.dev with free licenses to their products for <?= floor((time() - 1619308800) / 31557600) ?> year<?= floor((time() - 1619308800) / 31557600) > 1 ? "s" : "" ?> now. Getting these licenses have helped us gain in productivity and focus more on writing code than fixing bugs, since the IDE will automatically catch most of the potential bugs. Huge thanks to JetBrains for their support!</p>
    <p></p>
</div>

<?php require $_SERVER['DOCUMENT_ROOT'] . "/includes/footer.php"; ?>