diff options
author | Minteck <46352972+Minteck@users.noreply.github.com> | 2021-07-27 04:47:58 +0200 |
---|---|---|
committer | Minteck <46352972+Minteck@users.noreply.github.com> | 2021-07-27 04:47:58 +0200 |
commit | b028da9fea70c65ccd52d1d478859739027d756a (patch) | |
tree | f6ad05f4313499ebd84c2afd26320217b18ad04f /creations/kartik | |
parent | af9e5ef458b93ef2003905e1ccc5665e7266c242 (diff) | |
download | main-b028da9fea70c65ccd52d1d478859739027d756a.tar.gz main-b028da9fea70c65ccd52d1d478859739027d756a.tar.bz2 main-b028da9fea70c65ccd52d1d478859739027d756a.zip |
Commmmmmit
Diffstat (limited to 'creations/kartik')
-rw-r--r-- | creations/kartik/description.txt | 1 | ||||
-rw-r--r-- | creations/kartik/icon.txt | 1 | ||||
-rw-r--r-- | creations/kartik/index.php | 52 | ||||
-rw-r--r-- | creations/kartik/title.txt | 1 |
4 files changed, 55 insertions, 0 deletions
diff --git a/creations/kartik/description.txt b/creations/kartik/description.txt new file mode 100644 index 0000000..450e3cd --- /dev/null +++ b/creations/kartik/description.txt @@ -0,0 +1 @@ +A cross-platform and simple car racing game
\ No newline at end of file diff --git a/creations/kartik/icon.txt b/creations/kartik/icon.txt new file mode 100644 index 0000000..9fc85e0 --- /dev/null +++ b/creations/kartik/icon.txt @@ -0,0 +1 @@ +https://kartik.hopto.org/static/favicon.png
\ No newline at end of file diff --git a/creations/kartik/index.php b/creations/kartik/index.php new file mode 100644 index 0000000..248e35e --- /dev/null +++ b/creations/kartik/index.php @@ -0,0 +1,52 @@ +<?php $_TITLE = "Kartik"; require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/header.php"; ?> +<div style="margin-top: 56px;z-index: 5;background: #fff;padding-top: 20px;min-height: calc(100vh - 57px);" id="main-box"> + <div id="project-hero" style="background-image:url('https://raw.githubusercontent.com/Minteck-Projects/Kartik-Core/44210691ee8444509ac466a362337af77f2bcd49/views/menu.jpg');"></div> + + <div class="container"> + <h2><?= l("Kartik, a relaxing and easy car racing game", "Kartik, un jeu de course de voiture facile et calme") ?></h2> + + <p><a href="https://kartik.hopto.org" target="_blank">→ Kartik's official website</a></p> + + <h3>Download Kartik</h3> + <div class="card-group"> + <div class="card"> + <div class="card-body" style="text-align: center;"> + <?php + + $stable = file_get_contents("https://kartik.hopto.org/latest.php?v=stable"); + + ?> + <h3><?= $stable ?></h3> + <h5>Latest Stable Release</h5> + <p>Downstream from the older development version</p> + <div class="btn-group"> + <a href="https://kartik.hopto.org/cdn/release/stable/0/windows" class="btn btn-primary">Download for Windows</a> + <a href="https://kartik.hopto.org/cdn/release/stable/0/linux" class="btn btn-outline-primary">... Linux</a> + <a href="https://kartik.hopto.org/cdn/release/stable/0/darwin" class="btn btn-outline-primary">... macOS</a> + </div> + </div> + </div> + <div class="card"> + <div class="card-body" style="text-align: center;"> + <?php + + $eap = file_get_contents("https://kartik.hopto.org/latest.php?v=eap"); + + ?> + <h3><?= $eap ?></h3> + <h5>Latest Development Release</h5> + <p><span class="text-warning">Experimental release, use with caution.</span></p> + <div class="btn-group"> + <a href="https://kartik.hopto.org/cdn/release/eap/0/windows" class="btn btn-primary">Download for Windows</a> + <a href="https://kartik.hopto.org/cdn/release/eap/0/linux" class="btn btn-outline-primary">... Linux</a> + <a href="https://kartik.hopto.org/cdn/release/eap/0/darwin" class="btn btn-outline-primary">... macOS</a> + </div> + </div> + </div> + </div> + <small><a href="https://kartik.hopto.org" target="_blank">Thanks, I'd rather download from the official website.</a></small> + </div> + + <br> +</div> +<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/footer.php"; ?> diff --git a/creations/kartik/title.txt b/creations/kartik/title.txt new file mode 100644 index 0000000..40b3142 --- /dev/null +++ b/creations/kartik/title.txt @@ -0,0 +1 @@ +Kartik
\ No newline at end of file |