jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/405540 )

Change subject: Add navbar and update htnl/css
......................................................................


Add navbar and update htnl/css

Change-Id: Ifb95c846ed9e0da33fb7d638ee56de98a718f74c
---
A public_html/about.html
D public_html/about.php
A public_html/contribs.html
D public_html/contribs.php
A public_html/css/common.css
D public_html/css/docs.css
M public_html/documentation.html
A public_html/index.html
D public_html/index.php
9 files changed, 146 insertions(+), 68 deletions(-)

Approvals:
  MacFan4000: Verified; Looks good to me, approved
  jenkins-bot: Verified



diff --git a/public_html/about.html b/public_html/about.html
new file mode 100644
index 0000000..f431f8e
--- /dev/null
+++ b/public_html/about.html
@@ -0,0 +1,17 @@
+
+<html>
+<title>About -ZppixBot</title>
+<head>
+<link rel="stylesheet" href="css/common.css">
+<div class="topnav">
+  <a href="index.html">Home</a>
+  <a href="documentation.html">Documentation</a>
+  <a href="contribs.html">Contributors</a>
+  <a class="active" href="about.html">About</a>
+</div>
+</head>
+<body>
+<h1>About</h1>
+ZppixBot is an IRC bot running <a href="https://sopel.chat";>Sopel</a> 6.5.1 
and Python 2.7.9. The current release of ZppixBot customizations is version 
3.0. ZppixBot has lots of commands and more can be added by writing more mo$
+</body>
+</html>
diff --git a/public_html/about.php b/public_html/about.php
deleted file mode 100644
index dee937e..0000000
--- a/public_html/about.php
+++ /dev/null
@@ -1,4 +0,0 @@
-<title>About -ZppixBot</title>
-<h1>About</h1>
-<body>
-ZppixBot is an IRC bot running <a href="https://sopel.chat";>Sopel</a> 6.5.1 
and Python 2.7.9. The current release of ZppixBot customizations is version 
3.0. ZppixBot has lots of commands and more can be added by writing more 
modules. The home channel for ZppixBot is <a 
href="irc://chat.freenode.net/#ZppixBot">#ZppixBot</a> where you can get help 
from the maintainers. ZppixBot's current maintainers are MacFan4000, Zppix and 
Reception123.</body>
\ No newline at end of file
diff --git a/public_html/contribs.html b/public_html/contribs.html
new file mode 100644
index 0000000..01d381f
--- /dev/null
+++ b/public_html/contribs.html
@@ -0,0 +1,29 @@
+<html>
+<title>Contributors -ZppixBot</title>
+<head>
+<link rel="stylesheet" href="css/common.css">
+<div class="topnav">
+  <a href="index.html">Home</a>
+  <a href="documentation.html">Documentation</a>
+  <a class="active" href="contribs.html">Contributors</a>
+  <a href="about.html">About</a>
+</div>
+</head>
+<body>
+<h1>People whom have contributed to Zppixbot</h1>
+<ul>
+<li>Zppix- Operator</li>
+<li>tom29739- Release version bot operator,, developer</li>
+<li>SwisterTwister- Zppixbot web design, and friend.</li>
+<li><a 
href="https://meta.miraheze.org/wiki/User:Reception123";>Reception123</a> - 
Helps with new features/Operator</li>
+<li>MacFan4000 -Web design/Operator</li>
+<li>Phantom42 -Web design/developer</li>
+</ul>
+</body>
+</html>
+
+
+
+
+
+
diff --git a/public_html/contribs.php b/public_html/contribs.php
deleted file mode 100644
index f83117f..0000000
--- a/public_html/contribs.php
+++ /dev/null
@@ -1,8 +0,0 @@
-<title>Contributors -ZppixBot</title>
-<h1>People whom have contributed to Zppixbot</h1><br />
-Zppix- Operator<br />
-tom29739- Release version bot operator, developer<br />
-SwisterTwister- Zppixbot web design, and friend.<br />
-<a href="https://meta.miraheze.org/wiki/User:Reception123";>Reception123</a> - 
Helps with new features/Operator<br/>
-MacFan4000 -Web design/Operator<br/>
-Phantom42 -Web design/developer
diff --git a/public_html/css/common.css b/public_html/css/common.css
new file mode 100644
index 0000000..590cc22
--- /dev/null
+++ b/public_html/css/common.css
@@ -0,0 +1,68 @@
+'html {
+    font-family: 'Times New Roman';
+}
+
+body {
+    margin: 8px;
+}
+
+h1 {
+    font-weight: normal;
+    display: block;
+    border-bottom: 1px solid #a2a9b1;
+}
+
+a {
+    text-decoration: none;
+    color: #0645ad;
+}
+
+table {
+    border-collapse: collapse;
+}
+
+th {
+    background-color: #ebebeb;
+}
+
+tr:nth-child(even) {
+    background-color: #f5f5f5;
+}
+
+th, td {
+    padding: 0.5em;
+}
+
+pre {
+    padding: 1em;
+    font-family: monospace;
+    background-color: #f5f5f5;
+    white-space: pre-wrap;
+}
+
+.topnav {
+    background-color: #333;
+    overflow: hidden;
+}
+
+/* Style the links inside the navigation bar */
+.topnav a {
+    float: left;
+    color: #f2f2f2;
+    text-align: center;
+    padding: 14px 16px;
+    text-decoration: none;
+    font-size: 17px;
+}
+
+/* Change the color of links on hover */
+.topnav a:hover {
+    background-color: #ddd;
+    color: black;
+}
+
+/* Add a color to the active/current link */
+.topnav a.active {
+    background-color: #4CAF50;
+    color: white;
+}
diff --git a/public_html/css/docs.css b/public_html/css/docs.css
deleted file mode 100644
index b00decf..0000000
--- a/public_html/css/docs.css
+++ /dev/null
@@ -1,41 +0,0 @@
-html {
-    font-family: 'Times New Roman';
-}
-
-body {
-    margin: 8px;
-}
-
-h1 {
-    font-weight: normal;
-    display: block;
-    border-bottom: 1px solid #a2a9b1;
-}
-
-a {
-    text-decoration: none;
-    color: #0645ad;
-}
-
-table {
-    border-collapse: collapse;
-}
-
-th {
-    background-color: #ebebeb;
-}
-
-tr:nth-child(even) {
-    background-color: #f5f5f5;
-}
-
-th, td {
-    padding: 0.5em;
-}
-
-pre {
-    padding: 1em;
-    font-family: monospace;
-    background-color: #f5f5f5;
-    white-space: pre-wrap;
-}
diff --git a/public_html/documentation.html b/public_html/documentation.html
index 662337b..187e7a1 100644
--- a/public_html/documentation.html
+++ b/public_html/documentation.html
@@ -3,7 +3,13 @@
 <head>
     <meta charset="UTF-8"/>
     <title>Documentation - ZppixBot</title>
-    <link rel="stylesheet" href="css/docs.css">
+    <link rel="stylesheet" href="css/common.css">
+<div class="topnav">
+  <a href="index.html">Home</a>
+  <a class="active" href="documentation.html">Documentation</a>
+  <a href="contribs.html">Contributors</a>
+  <a href="about.html">About</a>
+</div>
 </head>
 <body>
     <h1>Table of contents</h1>
diff --git a/public_html/index.html b/public_html/index.html
new file mode 100644
index 0000000..7e3b9cd
--- /dev/null
+++ b/public_html/index.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html>
+<title>Home - ZppixBot</title>
+<head>
+<link rel="stylesheet" href="css/common.css">
+<div class="topnav">
+  <a class="active" href="index.html">Home</a>
+  <a href="documentation.html">Documentation</a>
+  <a href="contribs.html">Contributors</a>
+  <a href="about.html">About</a>
+</div>
+</head>
+<br/>
+<body>
+If you would like ZppixBot in your channel, join <a 
href="irc://chat.freenode.net/#ZppixBot">#ZppixBot</a> and say .addchannel <br/>
+
+<h1> The third release of ZppixBot is now here! </h1>
+<p> For more information please check out <a 
href="https://github.com/Pix1234/ZppixBot-Source/releases/tag/v3";>the release 
tag</a> !!!<br/>
+
+<b>Previous releases</b>:<br/>
+
+<a href="https://github.com/Pix1234/ZppixBot-Source/releases/tag/v1";>v1 (30 
July 2017)</a><br/>
+<a href="https://github.com/Pix1234/ZppixBot-Source/releases/tag/v2";>v2 (8 
August 2017)</a><br/>
+</body>
+</html>
diff --git a/public_html/index.php b/public_html/index.php
deleted file mode 100644
index 62e76a7..0000000
--- a/public_html/index.php
+++ /dev/null
@@ -1,14 +0,0 @@
-<title>Home - ZppixBot</title>
-For more information, click <a href="/zppixbot/about.php">here</a>. </br>
-For a list of commands, click <a href="/zppixbot/documentation.html">here</a>. 
</br>
-List of contributors, click <a href="/zppixbot/contribs.php">here</a> </br>
-
-If you would like ZppixBot in your channel, join <a 
href="irc://chat.freenode.net/#ZppixBot">#ZppixBot</a> and say .addchannel </br>
-
-<h1> The third release of ZppixBot is now here! </h1>
-<p> For more information please check out <a 
href="https://github.com/Pix1234/ZppixBot-Source/releases/tag/v3";>the release 
tag</a> !!!</br>
-
-<b>Previous releases</b>:</br>
-
-<a href="https://github.com/Pix1234/ZppixBot-Source/releases/tag/v1";>v1 (30 
July 2017)</a></br>
-<a href="https://github.com/Pix1234/ZppixBot-Source/releases/tag/v2";>v2 (8 
August 2017)</a></br>
\ No newline at end of file

-- 
To view, visit https://gerrit.wikimedia.org/r/405540
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ifb95c846ed9e0da33fb7d638ee56de98a718f74c
Gerrit-PatchSet: 1
Gerrit-Project: labs/tools/ZppixBot
Gerrit-Branch: master
Gerrit-Owner: MacFan4000 <paulfkef...@gmail.com>
Gerrit-Reviewer: MacFan4000 <paulfkef...@gmail.com>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to