Add link to source code

This commit is contained in:
Miraty 2022-10-07 21:25:15 +02:00
parent f372bbbce7
commit 1aa0d02f5e
2 changed files with 8 additions and 1 deletions

View File

@ -92,6 +92,11 @@ a[rel=help]:before {
font-size: 0.8rem; font-size: 0.8rem;
} }
a[rel=external]:after {
content: '\202F↗';
font-size: 0.8rem;
}
dt a { dt a {
font-size: 1.1rem; font-size: 1.1rem;
} }

View File

@ -1,5 +1,4 @@
<?php <?php
define("CONF", parse_ini_file(__DIR__ . "/config.ini", true, INI_SCANNER_TYPED)); define("CONF", parse_ini_file(__DIR__ . "/config.ini", true, INI_SCANNER_TYPED));
foreach (array_diff(scandir(CONF['common']['root_path'] . "/fn"), array('..', '.')) as $file) foreach (array_diff(scandir(CONF['common']['root_path'] . "/fn"), array('..', '.')) as $file)
@ -127,6 +126,9 @@ function executePage() {
echo $final_message ?? ''; echo $final_message ?? '';
?> ?>
</main> </main>
<footer>
<small><a rel="external" href="https://code.antopie.org/Niver/core" class="niver">Code source</a> sous <abbr title="Cooperative Nonviolent Public License No Attribution version 7 ou plus">CNPL-NAv7+</abbr>.</small>
</footer>
</body> </body>
</html> </html>
<?php <?php