summaryrefslogtreecommitdiff
path: root/pages/common
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2014-01-08 03:13:44 -0800
committerelijah <elijah@riseup.net>2014-01-08 03:13:44 -0800
commit8b41350baf3aaa4988843a9bc2e8884abec07c4c (patch)
tree61dce1acbb916d37c8abf65f257b6d397b7dba1f /pages/common
parent020b3a8d972005207129a6af7a2c519fb0981820 (diff)
switched to using amber, added all the main pages.
Diffstat (limited to 'pages/common')
-rw-r--r--pages/common/_download_button.haml3
-rw-r--r--pages/common/_email.md18
-rw-r--r--pages/common/_footer.html11
-rw-r--r--pages/common/_header.html13
4 files changed, 45 insertions, 0 deletions
diff --git a/pages/common/_download_button.haml b/pages/common/_download_button.haml
new file mode 100644
index 0000000..d42816d
--- /dev/null
+++ b/pages/common/_download_button.haml
@@ -0,0 +1,3 @@
+%a{:href => @locals[:link], :class => 'btn btn-primary btn-large'}
+ %i.fa.fa-cloud-download.fa-lg
+ = @locals[:text] || t("Download")
diff --git a/pages/common/_email.md b/pages/common/_email.md
new file mode 100644
index 0000000..6797bb5
--- /dev/null
+++ b/pages/common/_email.md
@@ -0,0 +1,18 @@
+## Configuring email
+
+To get encrypted email to work, you have two options:
+
+1. Install the [Bitmask Thunderbird Extension](https://addons.mozilla.org/en-us/thunderbird/addon/bitmask/) (recommended).
+2. Configure your email client manually.
+
+Manual email client configuration:
+
+* IMAP -- `localhost:1984`
+ * username: the full email address you use with the Bitmask app.
+ * password: ignored, can be anything.
+ * SSL/TLS: off
+* SMTP -- `localhost:2013`
+ * authentication: none
+ * SSL/TLS: off
+
+You should also disable any local caching in your email client, if applicable. All the data stored by Bitmask is kept on disk in an encrypted format, but your mail client might cache your email in clear text, so it is good to disable caching if you can. Also, all your Bitmask email is sync'ed locally anyway, so there is no benefit to local caching.
diff --git a/pages/common/_footer.html b/pages/common/_footer.html
new file mode 100644
index 0000000..c6ad99e
--- /dev/null
+++ b/pages/common/_footer.html
@@ -0,0 +1,11 @@
+ <footer>
+ <div>
+ (c) 2014 LEAP Encryption Access Project
+ </div>
+ <div>
+ Everything available for download on this site is free and open source software.
+ </div>
+ </footer>
+</div>
+</body>
+</html>
diff --git a/pages/common/_header.html b/pages/common/_header.html
new file mode 100644
index 0000000..55d4c1d
--- /dev/null
+++ b/pages/common/_header.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>dl.bitmask.net</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="stylesheet" href="/assets/bootstrap.min.css">
+ <link rel="stylesheet" href="/assets/font-awesome/css/font-awesome.min.css">
+ <link rel="stylesheet" href="/assets/style.css">
+</head>
+<body>
+ <a class="bm-masthead" href="/"></a>
+ <div class="bm-bar">Bitmask Downloads</div>
+ <div class="bm-main container"> \ No newline at end of file