branch: new-master commit 347030d6936d4efafbadb81480f45406ef1a64c2 Author: Stefan Kangas <stefankan...@gmail.com> Commit: Stefan Kangas <stefankan...@gmail.com>
Add contact details to front page (Bug#34460) * html/index.html: Add contact details. * html/layout.css: Add new styles for h3, ul, li. --- html/index.html | 24 ++++++++++++++++++++---- html/layout.css | 14 ++++++++++++++ 2 files changed, 34 insertions(+), 4 deletions(-) diff --git a/html/index.html b/html/index.html index 1dcecc3..0533151 100644 --- a/html/index.html +++ b/html/index.html @@ -42,11 +42,27 @@ (see the <a href="https://savannah.gnu.org/projects/emacs">GNU Emacs project page</a> for clone instructions). </p> - - <p> - To contribute new packages refer to the + + <h3>Contact</h3> + + <ul> + <li> + To contribute a new package refer to the <a href="http://git.savannah.gnu.org/cgit/emacs/elpa.git/plain/README">README</a>. - </p> + </li> + <li> + To report a bug, use the <code>M-x report-emacs-bug</code> + command in Emacs.<br />For more information on reporting bugs, see + <a href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Bugs.html">the + Emacs Manual</a>. + </li> + <li> + If you need help, you could try the <a href="https://lists.gnu.org/mailman/listinfo/help-gnu-emacs">help-gnu-emacs mailing list</a>. + </li> + <li> + For general inquiries, please contact <a href="https://lists.gnu.org/mailman/listinfo/emacs-devel">emacs-devel mailing list</a>. + </li> + </ul> <!-- <p> You can grab the <a href="emacs-packages-latest.tgz">latest package snapshot</a>. --> </div> diff --git a/html/layout.css b/html/layout.css index c75e0ea..eb38ee9 100644 --- a/html/layout.css +++ b/html/layout.css @@ -76,6 +76,11 @@ h2 { margin: 1.2em 0px; } +h3 { + font-size: 1.5em; + margin: 1.2em 0px; +} + a { color: #c73a6c; text-decoration: none; @@ -292,3 +297,12 @@ td { font-size: 1.2em; } } + +ul { + list-style-type: circle; + margin-left: 1.2em; +} + +li { + margin-bottom: 0.25em; +}