Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html.haml « contacts « views « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4878f1da5fd77588ae356de1f7b10aec00ec20b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- content_for :page_title do
  = t('.title')

.container-fluid#contacts_container
  .row-fluid
    .span3
      = render 'contacts/sidebar'

    .span9
      #people_stream.stream.contacts
        = render 'contacts/header'

        - if @contacts_size > 0
          - @contacts.each do |contact|
            = render 'contacts/contact', :contact => contact
        - else
          .no_contacts
            %h3
              = t('.no_contacts')
            %p
              != t('.no_contacts_message',
                   :community_spotlight => link_to(t('.community_spotlight'), community_spotlight_path))