diff --git a/humbug/urls.py b/humbug/urls.py index 1bea1d1df2..f1c23feed5 100644 --- a/humbug/urls.py +++ b/humbug/urls.py @@ -52,6 +52,7 @@ urlpatterns = patterns('', url(r'^api$', TemplateView.as_view(template_name='zephyr/api.html')), url(r'^integrations$', TemplateView.as_view(template_name='zephyr/integrations.html')), url(r'^zephyr$', TemplateView.as_view(template_name='zephyr/zephyr.html')), + url(r'^apps$', TemplateView.as_view(template_name='zephyr/apps.html')), # These are json format views used by the web client. They require a logged in browser. url(r'^json/get_updates$', 'zephyr.tornadoviews.json_get_updates'), diff --git a/templates/zephyr/apps.html b/templates/zephyr/apps.html new file mode 100644 index 0000000000..1ef0b70baa --- /dev/null +++ b/templates/zephyr/apps.html @@ -0,0 +1,112 @@ +{% extends "zephyr/portico.html" %} + +{# API information page #} + +{% block portico_content %} +
+
+

Do we have apps? App-solutely.

+ Ok, I take it back, I'm sorry, please don't go. + +

Installation instructions

+ + +
+ +
+ + +

Note: The Android app is currently in alpha.

+

Humbug has a 100% native app for Android, + and you can easily grab it from + the Google + Play Store.

+ + + Get it on Google Play + +
+ +
+ + +

Note: The iPhone app is currently in alpha.

+

Humbug has a 100% native app for iPhone, + and we're in the process of getting it into the App Store. + For now, + please email + us to request access.

+
+ +
+

Humbug for Mac is a Chrome Application Shortcut, which + means that it runs in its own window, with its own icon in the + Dock, and no URL bar, but is fundamentally the same as the + webapp. Many of our users find it more convenient because it's + easy to keep track of.

+ +

+ Download Humbug for Mac +

+ + +

Note: Humbug for Mac requires Google Chrome.

+
+ +
+

We recommend making + a Chrome + Application Shortcut for Humbug, so that it can appear on + your system like a native application. Alternatively, we + recommend simply pinning the Humbug tab in your browser.

+ +

You can find instructions for how to make a Chrome + Application + Shortcut here.

+ + +
+ +
+

First of all: seriously?

+ +

We recommend making + a Chrome + Application Shortcut for Humbug, so that it can appear on + your system like a native application. Alternatively, we + recommend simply pinning the Humbug tab in your browser.

+ +

You can find instructions for how to make a Chrome + Application + Shortcut here.

+ + +
+ +
+

First, connect to our hosted 9P filesystem + at plan9.humbughq.com and then... no, we're + totally kidding. There definitely isn't a version of Humbug + for Plan 9.

+

But if you're the kind of person who would've gotten a kick + out of that sort of thing, we'd love to talk to you, because + we're hiring. Please send us a resume and any other relevant + information (a GitHub account, a portfolio, etc.) + to jobs@humbughq.com + and we'll be in touch!

+
+ + +
+
+ +{% endblock %} diff --git a/zephyr/static/images/app-screenshots/humbug-android.png b/zephyr/static/images/app-screenshots/humbug-android.png new file mode 100644 index 0000000000..aa645d7800 Binary files /dev/null and b/zephyr/static/images/app-screenshots/humbug-android.png differ diff --git a/zephyr/static/images/app-screenshots/humbug-chrome-mac.png b/zephyr/static/images/app-screenshots/humbug-chrome-mac.png new file mode 100644 index 0000000000..ee04253de0 Binary files /dev/null and b/zephyr/static/images/app-screenshots/humbug-chrome-mac.png differ diff --git a/zephyr/static/images/app-screenshots/humbug-chrome-windows.png b/zephyr/static/images/app-screenshots/humbug-chrome-windows.png new file mode 100755 index 0000000000..f5c2dd4655 Binary files /dev/null and b/zephyr/static/images/app-screenshots/humbug-chrome-windows.png differ diff --git a/zephyr/static/images/app-screenshots/humbug-iphone.png b/zephyr/static/images/app-screenshots/humbug-iphone.png new file mode 100644 index 0000000000..d42153138a Binary files /dev/null and b/zephyr/static/images/app-screenshots/humbug-iphone.png differ