]> arthur.barton.de Git - ngircd-web.git/blobdiff - includes/common.php
README.md: Fix output path of pandoc command
[ngircd-web.git] / includes / common.php
index f3de75e1d0c802a68573622e7a988837645ee156..c68277cffb5817455eea54aacdc87c5e58800114 100644 (file)
@@ -5,15 +5,16 @@ function begin_page($lang = 'en', $title = null) {
        echo '<html lang="' . $lang . '">' . "\n";
        echo '<head>';
        if ($title)
-               echo "<title>$title | ngIRCd: Next Generation IRC Daemon</title>";
+               echo "<title>$title | ngIRCd: Free, portable and lightweight Internet Relay Chat server</title>";
        else
-               echo '<title>ngIRCd: Next Generation IRC Daemon</title>';
+               echo '<title>ngIRCd: Free, portable and lightweight Internet Relay Chat server</title>';
        echo '<meta http-equiv="content-type" content="text/html; charset=utf-8">';
        echo '<meta name="author" content="Alexander Barton">';
        echo '<meta name="author-email" content="alex@barton.de">';
        echo '<meta name="MSSmartTagsPreventParsing" content="TRUE">';
        echo '<link rel="stylesheet" href="common/styles.css" type="text/css" media="screen">';
-       echo '<link rel="author" href="mailto:alex@barton.de" title="E-Mail an Alex">';
+       echo '<link rel="author" href="mailto:alex+ngircd@barton.de" title="E-Mail Alex">';
+       echo '<link rel="me" href="https://social.tchncs.de/@ngircd">';
        echo '<script src="common/mootools.js"></script>';
        echo '<script src="common/slide.js"></script>';
        echo "</head>\n<body>";
@@ -61,7 +62,7 @@ function begin_page($lang = 'en', $title = null) {
 
 function end_page() {
        echo '</div>';
-       echo '<p id="footer">ngIRCd &copy;2001-2021 Alexander Barton and ';
+       echo '<p id="footer">ngIRCd &copy;2001-2024 Alexander Barton and ';
        echo '<a href="doc/AUTHORS">Contributors</a>';
        echo '</div></body></html>';
 }