blob: 5a54354ed2ee9430ae0e7b3e9fda954592e18b19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#main
.container-fluid
.row-fluid
%h1= t(:welcome, :provider => APP_CONFIG[:domain])
%p
We provide secure communication services, including encrypted internet, email (coming soon), and chat (coming later).
.row-fluid
.span6.offset3
= render 'layouts/messages'
.row-fluid
= home_page_buttons
- if Rails.env == 'development'
.row-fluid
%hr
%p
= link_to "fetch a cert", cert_path
- # TODO: will want link to donation (anonymous payment), which is new_payment_path
|