forked from interstellar_development/freeftf
Licenses added
This commit is contained in:
parent
94350dc638
commit
d3a3d1c35b
9 changed files with 160 additions and 6 deletions
|
@ -1,3 +1,20 @@
|
|||
<!--
|
||||
freeftf website
|
||||
Copyright (C) 2024 Patrick_Pluto
|
||||
|
||||
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>
|
||||
|
|
|
@ -1,3 +1,21 @@
|
|||
/*
|
||||
* freeftf website
|
||||
* Copyright (C) 2024 Patrick_Pluto
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
// Define the download options for different platforms
|
||||
const downloadData = {
|
||||
"Linux": {
|
||||
|
|
19
footer.js
19
footer.js
|
@ -1,3 +1,20 @@
|
|||
/*
|
||||
* freeftf website
|
||||
* Copyright (C) 2024 Patrick_Pluto
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
class Footer extends HTMLElement {
|
||||
constructor() {
|
||||
super();
|
||||
|
@ -16,4 +33,4 @@ class Footer extends HTMLElement {
|
|||
}
|
||||
}
|
||||
|
||||
customElements.define('footer-component', Footer);
|
||||
customElements.define('footer-component', Footer);
|
||||
|
|
19
game.js
19
game.js
|
@ -1,3 +1,20 @@
|
|||
/*
|
||||
* freeftf website
|
||||
* Copyright (C) 2024 Patrick_Pluto
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
class Game extends HTMLElement {
|
||||
constructor() {
|
||||
super();
|
||||
|
@ -13,4 +30,4 @@ class Game extends HTMLElement {
|
|||
}
|
||||
}
|
||||
|
||||
customElements.define('game-component', Game);
|
||||
customElements.define('game-component', Game);
|
||||
|
|
19
header.js
19
header.js
|
@ -1,3 +1,20 @@
|
|||
/*
|
||||
* freeftf website
|
||||
* Copyright (C) 2024 Patrick_Pluto
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
class Header extends HTMLElement {
|
||||
constructor() {
|
||||
super();
|
||||
|
@ -18,4 +35,4 @@ class Header extends HTMLElement {
|
|||
}
|
||||
}
|
||||
|
||||
customElements.define('header-component', Header);
|
||||
customElements.define('header-component', Header);
|
||||
|
|
19
index.html
19
index.html
|
@ -1,3 +1,20 @@
|
|||
<!--
|
||||
freeftf website
|
||||
Copyright (C) 2024 Patrick_Pluto
|
||||
|
||||
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>
|
||||
|
@ -17,4 +34,4 @@
|
|||
<footer-component></footer-component>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
19
license.html
19
license.html
|
@ -1,3 +1,20 @@
|
|||
<!--
|
||||
freeftf website
|
||||
Copyright (C) 2024 Patrick_Pluto
|
||||
|
||||
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>
|
||||
|
@ -17,4 +34,4 @@
|
|||
<footer-component></footer-component>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
19
license.js
19
license.js
|
@ -1,3 +1,20 @@
|
|||
/*
|
||||
* freeftf website
|
||||
* Copyright (C) 2024 Patrick_Pluto
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
class License extends HTMLElement {
|
||||
constructor() {
|
||||
super();
|
||||
|
@ -688,4 +705,4 @@ class License extends HTMLElement {
|
|||
}
|
||||
}
|
||||
|
||||
customElements.define('license-component', License);
|
||||
customElements.define('license-component', License);
|
||||
|
|
17
styles.css
17
styles.css
|
@ -1,3 +1,20 @@
|
|||
/*
|
||||
freeftf website
|
||||
Copyright (C) 2024 Patrick_Pluto
|
||||
|
||||
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/>.
|
||||
*/
|
||||
/* Browser reset */
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
|
|
Loading…
Reference in a new issue