diff options
-rw-r--r-- | site/common/variables.php | 3 | ||||
-rw-r--r-- | site/index.php | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/site/common/variables.php b/site/common/variables.php index c73482f..e3bd50b 100644 --- a/site/common/variables.php +++ b/site/common/variables.php @@ -21,6 +21,9 @@ /* Project home page */ $lbHomepage = "https://libreboot.org/"; + $mumbleServerAddress = "libreboot.org"; + $mumbleServerPort = "64738"; + /* Main git repositories */ $lbFirmwareGitRepoAddress = "git://git.savannah.gnu.org/libreboot.git"; $lbFirmwareGitwebAddress = "http://git.savannah.gnu.org/cgit/libreboot.git"; diff --git a/site/index.php b/site/index.php index ef241f7..d74511e 100644 --- a/site/index.php +++ b/site/index.php @@ -73,7 +73,10 @@ <li><a href="<?php echo $userMailingListAddress; ?>"><?php echo gettext("Subscribe to mailing list"); ?></a></li> <li><a href="<?php echo $devMailingListAddress; ?>"><?php echo gettext("Subscribe to dev mailing list"); ?></a></li> <li><a href="contrib/"><?php echo gettext("Contact the developers"); ?></a></li> - </ul> + </ul> + <ul> + <li><strong><a href="https://wiki.mumble.info/wiki/Main_Page">Mumble</a> server address:</strong> <?php echo $mumbleServerAddress; ?> (port <?php echo $mumbleServerPort; ?>)</li> + </ul> <ul> <li><strong><a href="git/">How can I help the libreboot project?</a></strong></li> </ul> |