60 lines
1.7 KiB
HTML
60 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!--#include virtual="components/head.html" -->
|
|
<title>JavaScript - Software Libre Liberec</title>
|
|
<meta name="description" content="Explanation of JavaScript usage on this website">
|
|
</head>
|
|
<body>
|
|
<!--#include virtual="components/header.html" -->
|
|
<!--#include virtual="components/nav.html" -->
|
|
<main>
|
|
<h1>JavaScript used on this website</h1>
|
|
|
|
<p>
|
|
This website is enhanced with few short snippets of JavaScript.
|
|
</p>
|
|
|
|
<p>
|
|
This page insures that visiting any page of this website does not load any non-free software
|
|
(which means that it will properly function on browsers with LibreJS).
|
|
</p>
|
|
|
|
<p>Please verify the following scripts and their licences.</p>
|
|
|
|
<table>
|
|
<caption>List of client scripts</caption>
|
|
<thead>
|
|
<tr>
|
|
<th rowspan=2>Script</th>
|
|
<th colspan=2>Description</th>
|
|
</tr>
|
|
<tr>
|
|
<th>Function</th>
|
|
<th>Licence</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><a href="../countdown.js">countdown.js</a></td>
|
|
<td>Countdown until the start of the lecture.</td>
|
|
<td><a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GNU GPL v3</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td><a href="../lang.js">lang.js</a></td>
|
|
<td>Language switch.</td>
|
|
<td><a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GNU GPL v3</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td><a href="../theme.js">theme.js</a></td>
|
|
<td>Light/dark mode switch.</td>
|
|
<td><a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GNU GPL v3</a></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</main>
|
|
<!--#include virtual="components/footer.html" -->
|
|
</body>
|
|
</html>
|
|
|