public
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/insoshi/insoshi.git
Search Repo:
Michael Hartl (author)
Thu May 01 15:45:25 -0700 2008
commit  11d51bcea514ab0dbe34c8fa0053c4106a991060
tree    5e6eed9e0020e5d0ffd0736c4d2e6d7cc3d99883
parent  d90318842f415d512d65d5f3e741cb2677d96ccd
insoshi / app / views / home / index.html.erb
100644 28 lines (23 sloc) 0.855 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<%- column_div :type => :primary do -%>
  <%= render :partial => 'feed' %>
<%- end -%>
 
<%- column_div :type => :secondary do -%>
  <%= render :partial => "searches/box" %>
  <%- if logged_in? -%>
    <%= render :partial => 'requested_contacts' %>
    <%= render :partial => 'messages_preview' %>
    <%= render :partial => 'shared/contacts_preview',
               :locals => { :person => current_person } %>
  <%- else -%>
    <h2>About Insoshi</h2>
    
    <p><a href="http://insoshi.com/">Insoshi</a>
       is an open-source project dedicated to making the best
      social networking platform.</p>
      
      <p>This is the
      developer community site for the Insoshi project.
      </p>
      
    <div style="text-align: center;">
      <%= link_to image_tag("button_signup.png"), signup_path %>
    </div>
      
  <%- end -%>
<%- end -%>