diff options
| author | kj-sh604 | 2024-07-03 20:49:24 -0400 |
|---|---|---|
| committer | kj-sh604 | 2024-07-03 20:49:24 -0400 |
| commit | dc0b0b099495e6380827827e454078f02802d6a4 (patch) | |
| tree | e90f58868dca01686c50c613fc23a7823946fb55 | |
| parent | 0c12477f4bb368f4255b4b488f43a77ddefc2e83 (diff) | |
kj-gitbot: download.php
| -rw-r--r-- | download.php | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/download.php b/download.php index f97ccd0..ed7f468 100644 --- a/download.php +++ b/download.php @@ -17,14 +17,11 @@ </head> <body> - <div class=banner> - <h1>📑 procrastiSlides v0.02 🎬</h1> - <hr /> - </div> - <p class="centered">this website is inspired from the suckless's presentation tool (<a target="_blank" href="https://tools.suckless.org/sent">sent</a>). it uses pandoc and LaTeX beamer for the backend. <br><br><b>latest feature update:</b> addition of 16:9 themes</p> - <hr> - - <?php include "includes/nav-header.php"; ?> + <?php + include "includes/procrastislides-banner.php"; + include "includes/secondary-info.php"; + include "includes/nav-header.php"; + ?> <br> <h3 class="centered">🎉 your procrastiSlides .pdf presentation has been generated successfully!!! 🍾 @@ -51,7 +48,7 @@ shell_exec($createConvertFile); shell_exec($conversion); - echo "<h2><a href=\"output/$filename\">download presentation</a></h2>"; + echo "<h2><a href=\"output/$filename\" target=_blank>download presentation</a></h2>"; } if (isset($_POST["90sMakeUpCommercial"])) { |
