diff --git a/includes/about.php b/includes/about.php index 1ddcb8c2..45008f2d 100755 --- a/includes/about.php +++ b/includes/about.php @@ -11,6 +11,14 @@ function DisplayAbout() $strContent = file_get_contents($_SERVER['DOCUMENT_ROOT'].'/BACKERS.md'); $sponsorsHtml = $Parsedown->text($strContent); - echo renderTemplate("about", compact('sponsorsHtml')); + $strContent = file_get_contents($_SERVER['DOCUMENT_ROOT'].'/CONTRIBUTING.md'); + $contributingHtml = $Parsedown->text($strContent); + + echo renderTemplate( + "about", compact( + 'sponsorsHtml', + 'contributingHtml' + ) + ); } diff --git a/locale/en_US/LC_MESSAGES/messages.mo b/locale/en_US/LC_MESSAGES/messages.mo index 9bf6a3bd..b5bbee2c 100644 Binary files a/locale/en_US/LC_MESSAGES/messages.mo and b/locale/en_US/LC_MESSAGES/messages.mo differ diff --git a/locale/en_US/LC_MESSAGES/messages.po b/locale/en_US/LC_MESSAGES/messages.po index 609b404d..fd35b6c7 100644 --- a/locale/en_US/LC_MESSAGES/messages.po +++ b/locale/en_US/LC_MESSAGES/messages.po @@ -1374,3 +1374,14 @@ msgstr "Connect %s" msgid "Disconnect %s" msgstr "Disconnect %s" +#: includes/about.php + +msgid "About" +msgstr "About" + +msgid "Insiders" +msgstr "Insiders" + +msgid "Contributing" +msgstr "Contributing" + diff --git a/templates/about.php b/templates/about.php index 80ac2dd1..6a5e6ed7 100755 --- a/templates/about.php +++ b/templates/about.php @@ -19,6 +19,7 @@ require_once 'app/lib/Parsedown.php'; @@ -26,6 +27,7 @@ require_once 'app/lib/Parsedown.php';
+
diff --git a/templates/about/contributing.php b/templates/about/contributing.php new file mode 100644 index 00000000..868cc022 --- /dev/null +++ b/templates/about/contributing.php @@ -0,0 +1,9 @@ + +
+
+
+ +
+
+
+