79 lines
2.3 KiB
Text
79 lines
2.3 KiB
Text
!!!
|
|
%html
|
|
%head
|
|
%title
|
|
= "#{current_user.real_name} | diaspora" if current_user
|
|
|
|
%meta{"http-equiv"=>"Content-Type", :content=>"text/html; charset=utf-8"}/
|
|
|
|
= stylesheet_link_tag "blueprint/screen", :media => 'screen'
|
|
= stylesheet_link_tag "application", "ui", 'bubble'
|
|
|
|
= stylesheet_link_tag "/../javascripts/fancybox/jquery.fancybox-1.3.1"
|
|
= stylesheet_link_tag "fileuploader"
|
|
|
|
/= javascript_include_tag "http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"
|
|
= javascript_include_tag 'jquery-1.4.2.min', 'rails', 'google'
|
|
= javascript_include_tag 'jquery.infieldlabel', 'jquery.cycle/jquery.cycle.min.js'
|
|
|
|
= javascript_include_tag 'fancybox/jquery.fancybox-1.3.1.pack'
|
|
= javascript_include_tag 'fileuploader'
|
|
|
|
= javascript_include_tag 'view', 'image_picker', 'group_nav', 'stream'
|
|
= render 'js/websocket_js'
|
|
|
|
= csrf_meta_tag
|
|
= yield(:head)
|
|
|
|
%body
|
|
- flash.each do |name, msg|
|
|
= content_tag :div, msg, :id => "flash_#{name}"
|
|
|
|
%header
|
|
.container
|
|
#diaspora_text{:href => root_path}
|
|
= link_to "DIASPORA*", root_path
|
|
%span.sub_text
|
|
PREVIEW
|
|
|
|
%span{:style => "padding-left:30px;"}
|
|
= link_to "photos", albums_path
|
|
|
|
#session_action
|
|
#global_search
|
|
= form_tag(people_path, :method => 'get') do
|
|
%label{:for => 'q'} Search
|
|
= text_field_tag 'q'
|
|
|
|
%ul#user_menu
|
|
%li
|
|
= owner_image_tag
|
|
= link_to current_user.real_name, current_user.person
|
|
%li.requests= link_to "requests (#{@request_count})", requests_path, :class => new_request(@request_count)
|
|
%li.settings= link_to "edit profile", edit_user_path(current_user)
|
|
%li.logout= link_to "logout", destroy_user_session_path
|
|
|
|
= render "shared/group_nav"
|
|
|
|
#group_header
|
|
.container
|
|
.span-5.last
|
|
- if @group == :all
|
|
%h1
|
|
All Groups
|
|
- else
|
|
%h1
|
|
= @group.name
|
|
.span-19.last
|
|
= render "shared/publisher", :group_ids => :all
|
|
|
|
.container
|
|
.span-5.last
|
|
= render "shared/group_friends"
|
|
|
|
.span-19.last
|
|
= yield
|
|
|
|
.span-19.prepend-5.last
|
|
= render "posts/debug"
|
|
|