Compare commits

..

No commits in common. "4796e28dd35c2b955a20b9117a9392e39821a547" and "040a35163047ed46ee872526e6eacc319481414e" have entirely different histories.

3 changed files with 37 additions and 22 deletions

View file

@ -56,7 +56,7 @@
<a href="Template/template.html"><button type="button">Template</button></a>
<h1>License</h1>
<a href="license.html">Go to License</a>
<license-component></license-component>
</article>
</body>
</html>

View file

@ -1,21 +1,31 @@
<!--
foss_alternatives website
Copyright (C) 2024 interstellar_development
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-3.0
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.
/*
* foss_alternatives 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/>.
*/
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.
class License extends HTMLElement {
constructor() {
super();
}
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/>.
-->
<div class="license">
connectedCallback() {
this.innerHTML = `
<div class="license">
<h1>GNU AFFERO GENERAL PUBLIC LICENSE</h1>
<p>Version 3, 19 November 2007</p>
@ -662,8 +672,8 @@
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.</p>
<pre> foss_alternatives website
Copyright (C) 2024 interstellar_development
<p> 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
@ -677,7 +687,7 @@
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see &lt;https://www.gnu.org/licenses/&gt;.
</pre>
</p>
<p>Also add information on how to contact you by electronic and paper mail.</p>
@ -693,4 +703,11 @@
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
&lt;<a href="https://www.gnu.org/licenses/">https://www.gnu.org/licenses/</a>&gt;.</p>
</div>
</div>
`;
}
}
customElements.define('license-component', License);
// @license-end

View file

@ -276,12 +276,10 @@ ul li:last-child {
ul.fully-free li {
background-color: #e8f5e9;
color: black;
}
ul.non-free-assets li {
background-color: #ffebee;
color: black;
}
.fiveStar, .fourStar, .threeStar, .twoStar, .oneStar, .death{