This repository has been archived by the owner on May 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Styling, added placeholder pages, edited 'Run your own server' instru…
…ctions
- Loading branch information
Neeraj Wahi
committed
Aug 21, 2015
1 parent
90c96ce
commit 398f3b9
Showing
8 changed files
with
427 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Zulip - Clients</title> | ||
<meta name="description" content=""> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<link rel="stylesheet" href="css/normalize.css"> | ||
<link rel="stylesheet" href="css/fonts.css"> | ||
<link rel="stylesheet" href="css/main.css"> | ||
<link rel="stylesheet" href="css/media.css"> | ||
</head> | ||
<body> | ||
<!-- Navigation bar --> | ||
<header> | ||
<div class="container"> | ||
<div id="logo"> | ||
<a href="index.html"><img src="images/logos/zulip-icon-512x512.png" />zulip</a> | ||
</div> | ||
<nav> | ||
<ul class="downloads"> | ||
<li><a href="server.html">Server</a></li> | ||
<li><a href="clients.html">Clients</a></li> | ||
</ul> | ||
<ul> | ||
<li><a href="features.html">Features</a></li> | ||
<li><a href="help.html">Help</a></li> | ||
<li><a href="contribute.html">Contribute</a></li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</header> | ||
|
||
<div class="band band-blue"> | ||
<div class="container"> | ||
<h2>Download a Zulip client for your platform</h2> | ||
</div> | ||
</div> | ||
|
||
<div class="container docs"> | ||
<article> | ||
<section style="text-align: left; color: #000"> | ||
<h3>Web</h3> | ||
<p>Ask your organization for a link to their Zulip web instance.</p> | ||
<h3>Desktop</h3> | ||
<h4>Mac</h4> | ||
<p>Download a package <a href="https://zulip.com/dist/apps/mac/Zulip-latest.dmg">here</a></p> | ||
<h4>Windows</h4> | ||
<p>Get an executable <a href="https://zulip.com/dist/apps/mac/Zulip-latest.dmg">here</a></p> | ||
<h4>Linux</h4> | ||
<p>If you have Ubuntu or Debian, you can get it from our apt repo:</p> | ||
<div class="terminal"> | ||
wget https://zulip.com/dist/keys/user-apt.asc<br/> | ||
cat user-apt.asc | sudo apt-key add -<br/> | ||
sudo apt-add-repository http://apt.zulip.com/user/<br/> | ||
sudo apt-get update<br/> | ||
|
||
sudo apt-get install zulip-desktop<br/> | ||
</div> | ||
or download a binary tarball for 64-bit systems <a href="https://zulip.com/dist/apps/linux/zulip-desktop_latest.bin.tar.gz">here</a> | ||
</section> | ||
</section> | ||
|
||
<section style="text-align: left; color: #000"> | ||
<h3>Mobile</h3> | ||
<p>Get it on the <a href="http://itunes.com/apps/zulip">App Store</a> and on the <a href="https://play.google.com/store/apps/details?id=com.zulip.android">Google Play Store</a></p> | ||
</section> | ||
</section> | ||
</article> | ||
</div> | ||
|
||
<!-- Footer --> | ||
<footer> | ||
v1.2.1<br/> | ||
Licensed under <a href="#">License</a> | ||
<ul> | ||
<li><a href="#">Github</a></li> | ||
<li><a href="#">Docs</a></li> | ||
<li><a href="#">Contributors</a></li> | ||
</ul> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Zulip - Server</title> | ||
<meta name="description" content=""> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<link rel="stylesheet" href="css/normalize.css"> | ||
<link rel="stylesheet" href="css/fonts.css"> | ||
<link rel="stylesheet" href="css/main.css"> | ||
<link rel="stylesheet" href="css/media.css"> | ||
</head> | ||
<body> | ||
<!-- Navigation bar --> | ||
<header> | ||
<div class="container"> | ||
<div id="logo"> | ||
<a href="index.html"><img src="images/logos/zulip-icon-512x512.png" />zulip</a> | ||
</div> | ||
<nav> | ||
<ul class="downloads"> | ||
<li><a href="server.html">Server</a></li> | ||
<li><a href="clients.html">Clients</a></li> | ||
</ul> | ||
<ul> | ||
<li><a href="features.html">Features</a></li> | ||
<li><a href="help.html">Help</a></li> | ||
<li><a href="contribute.html">Contribute</a></li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</header> | ||
|
||
<div class="band band-purple"> | ||
<div class="container"> | ||
<h2>Contribute to the open-source project</h2> | ||
</div> | ||
</div> | ||
|
||
<br/> | ||
<br/> | ||
<br/> | ||
|
||
<!-- Footer --> | ||
<footer> | ||
Licensed under <a href="#">License</a> | ||
<ul> | ||
<li><a href="#">Github</a></li> | ||
<li><a href="#">Docs</a></li> | ||
<li><a href="#">Contributors</a></li> | ||
</ul> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.