freettrpg/download.html
2024-08-23 10:11:24 +02:00

67 lines
2.2 KiB
HTML

<!--
freettrpg website
Copyright (C) 2024 interstellar_development
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FreeTTRPG</title>
<link rel="stylesheet" href="style.css" />
<script src="header-download.js" type="text/javascript" defer></script>
<script src="java.js" type="text/javascript" defer></script>
</head>
<body>
<header-component></header-component>
<article>
<section id="section1">
<h1>Go to our codeberg website</h1>
<a href="https://codeberg.org/Patrick_Pluto/FreeTTRPG.git">
<button type="button">Our source code</button>
</a>
</section>
<section id="section2">
<h1>git clone</h1>
<p class="code-box">
$ git clone https://interstellardevelopment.org/code/interstellar_development/freettrpg.git
</p>
<p>
Clone the FreeTTRPG repository from Codeberg to your local machine.
</p>
</section>
<section id="section3">
<h1>move into the repository</h1>
<p class="code-box">$ cd FreeTTRPG</p>
<p>Display the contents of the license file (`LICENSE`).</p>
</section>
<section id="section4">
<h1>read through our license</h1>
<p class="code-box">$ less LICENSE</p>
<p>Move the bash console into the newly created repository</p>
</section>
</article>
<footer>
<br />
<br />
</footer>
</body>
</html>