Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #30

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# www.brow.sh
This is the GitHub repository for the main Browsh website. It contains links for the homepage, downloads, documentation and donation pages.
This is the GitHub repository for the main Browsh website. It contains links for the homepage, downloads, documentation, and donation pages.

It's currently a [Jekyll](https://jekyllrb.com/) site.

Expand All @@ -25,4 +25,4 @@ Serve the Website:

Jekyll’s built-in development server will run the website at http://localhost:4000

Jekyll isn’t officially supported for Windows; for more information on how to install Jekyll for Windows, check out the documentation [here](https://jekyllrb.com/docs/windows/#installation).
Jekyll isn’t officially supported for Windows; for more information on how to install Jekyll for Windows, check out the documentation [here](https://jekyllrb.com/docs/windows/#installation).
3 changes: 3 additions & 0 deletions _data/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ main:

docs:
- title: Getting Started
url: /docs/introduction
children:
- title: "Introduction"
url: /docs/introduction/
Expand All @@ -22,6 +23,7 @@ docs:
url: /docs/extensions/

- title: TTY client
url: /docs/keybindings
children:
- title: "Keybindings"
url: /docs/keybindings/
Expand All @@ -31,6 +33,7 @@ docs:
url: /docs/mosh/

- title: In-browser client
url: /docs/in-browser-usage
children:
- title: "Usage"
url: /docs/in-browser-usage/
4 changes: 2 additions & 2 deletions downloads.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ terminal with [true colour support](https://gist.github.com/XVilka/8346728).
* Debian/Ubuntu: [x64]({{base}}_linux_amd64.deb) / [386]({{base}}_linux_386.deb) / [ARMv6]({{base}}_linux_armv6.deb) / [ARMv7]({{base}}_linux_armv7.deb) / [ARM64]({{base}}_linux_arm64.deb)
* Redhat/Fedora: [x64]({{base}}_linux_amd64.rpm) / [386]({{base}}_linux_386.rpm) / [ARMv6]({{base}}_linux_armv6.rpm) / [ARMv7]({{base}}_linux_armv7.rpm) / [ARM64]({{base}}_linux_arm64.rpm)
* Arch AUR: 'browsh-bin'. Eg; `yay -S browsh-bin`
* FreeBSD: [x64]({{base}}_freebsd_amd64) / [386]({{base}}_freebsd_386) / [ARMv6]({{base}}_freebsd_armv6) / [ARMv7]({{base}}_freebsd_armv7) / [ARM64]({{base}}_freebsd_arm64)
* OpenBSD: [x64]({{base}}_openbsd_amd64) / [386]({{base}}_openbsd_386) / [ARMv6]({{base}}_openbsd_armv6) / [ARMv7]({{base}}_openbsd_armv7) / [ARM64]({{base}}_openbsd_arm64)
* FreeBSD: [x64]({{base}}_freebsd_amd64) / [386]({{base}}_freebsd_386) / [ARMv6]({{base}}_freebsd_armv6) / [ARMv7]({{base}}_freebsd_armv7)
* OpenBSD: [x64]({{base}}_openbsd_amd64) / [386]({{base}}_openbsd_386) / [ARMv6]({{base}}_openbsd_armv6) / [ARMv7]({{base}}_openbsd_armv7)
* Mac OSX: `brew tap browsh-org/homebrew-browsh` or [tar.gz]({{base}}_darwin_amd64.tar.gz)
* Windows: [.exe]({{base}}_windows_amd64.exe) (requires Win 10 or newer) (experimental)

Expand Down
42 changes: 24 additions & 18 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,27 +42,33 @@ <h2>Download (v{{ version }})</h2>
</div>
<div class="home-column">
<h2>Live SSH Demo</h2>
Just point your SSH client to <em>brow.sh</em>, eg;
<code>ssh brow.sh</code>. No auth needed. The service
is for demonstration only, sessions last 5 minutes and are logged.<br />
<small>
Note that SSH is actually a very inefficient protocol, for best results install
Browsh on your own server along with <a href="https://mosh.org/">Mosh</a>.
</small>
<strong>Temporarily offline</strong>
<div style="opacity: 0.4">
Just point your SSH client to <em>brow.sh</em>, eg;
<code>ssh brow.sh</code>. No auth needed. The service
is for demonstration only, sessions last 5 minutes and are logged.<br />
<small>
Note that SSH is actually a very inefficient protocol, for best results install
Browsh on your own server along with <a href="https://mosh.org/">Mosh</a>.
</small>
</div>
</div>
<div class="home-column">
<h2>In-browser Services</h2>
<ul>
<li>
<a href="https://html.brow.sh" target="_blank">html.brow.sh</a>
Uses very basic graphics and HTML anchor tags.
<small>Although this service may appear similar to the terminal client it does not yet have feature parity.</small>
</li>
<li>
<a href="https://text.brow.sh" target="_blank">text.brow.sh</a> Uses nothing but pure text,
better for usage with <code>curl</code>, for instance.
</li>
</ul>
<strong>Temporarily offline</strong>
<div style="opacity: 0.4">
<ul>
<li>
<a href="https://html.brow.sh" target="_blank">html.brow.sh</a>
Uses very basic graphics and HTML anchor tags.
<small>Although this service may appear similar to the terminal client it does not yet have feature parity.</small>
</li>
<li>
<a href="https://text.brow.sh" target="_blank">text.brow.sh</a> Uses nothing but pure text,
better for usage with <code>curl</code>, for instance.
</li>
</ul>
</div>
</div>
</div>

Expand Down