summaryrefslogtreecommitdiff
path: root/amber
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2014-03-21 15:09:29 -0700
committerelijah <elijah@riseup.net>2014-03-21 15:09:29 -0700
commit032c109614e794ff89ebee28889a5a107dcadf7a (patch)
tree9a22bc82e8699d03c55488ce238c234493f84a62 /amber
parent01c77f14a1c7305d6632e0c423cc4888b92f3685 (diff)
added initial content
Diffstat (limited to 'amber')
-rw-r--r--amber/layouts/_footer.html.haml6
-rw-r--r--amber/layouts/_masthead.html.haml3
-rw-r--r--amber/layouts/default.html.haml32
3 files changed, 41 insertions, 0 deletions
diff --git a/amber/layouts/_footer.html.haml b/amber/layouts/_footer.html.haml
new file mode 100644
index 0000000..11197c1
--- /dev/null
+++ b/amber/layouts/_footer.html.haml
@@ -0,0 +1,6 @@
+#footer-inner
+ .container
+ .row
+ .col-sm-12
+ %div.footer-text
+ %ul.list-inline \ No newline at end of file
diff --git a/amber/layouts/_masthead.html.haml b/amber/layouts/_masthead.html.haml
new file mode 100644
index 0000000..2506d28
--- /dev/null
+++ b/amber/layouts/_masthead.html.haml
@@ -0,0 +1,3 @@
+.text
+ .title Bitmask
+ .tagline Encrypted communication for mere mortals<br/>(superheroes welcome, too).
diff --git a/amber/layouts/default.html.haml b/amber/layouts/default.html.haml
new file mode 100644
index 0000000..6b11c8d
--- /dev/null
+++ b/amber/layouts/default.html.haml
@@ -0,0 +1,32 @@
+!!!
+%html{:lang => @locals[:locale].to_s}
+ %head
+ %title
+ = @page.nav_title + ' - ' + @site.title
+ %meta(name="viewport" content="width=device-width, initial-scale=1.0")/
+ %meta(charset="UTF-8")
+ %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")/
+ %link(rel="icon" href="/assets/images/favicon.png" type="image/x-icon")/
+ %body.home
+ #wrap
+ #masthead
+ = render 'layouts/masthead'
+ .navheader
+ .container
+ .row
+ .col-sm-12
+ %ul.nav.nav-pills
+ %li
+ %a{href:"#how-it-works"} How it works
+ %li
+ %a{href:"#providers"} Supported providers
+ %li
+ %a{href:"#about-us"} About us
+ %li
+ %a{href:"#code"} Fork our code
+ #main.container
+ = yield :content
+ #footer
+ = render 'layouts/footer'