41 lines
1.3 KiB
Text
41 lines
1.3 KiB
Text
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3 or later. See
|
|
-# the COPYRIGHT file.
|
|
|
|
!!!
|
|
%html{lang: I18n.locale.to_s, dir: (rtl? ? "rtl" : "ltr")}
|
|
%head{prefix: og_prefix}
|
|
- content_for :javascript do
|
|
= javascript_include_tag "mobile/mobile"
|
|
= load_javascript_locales
|
|
|
|
= render "head"
|
|
= include_color_theme "mobile"
|
|
|
|
%meta{name: "viewport", content: "width=device-width, minimum-scale=1 maximum-scale=1"}/
|
|
%meta{name: "HandheldFriendly", content: "True"}/
|
|
%meta{name: "MobileOptimized", content: "320"}/
|
|
%meta{"http-equiv" => "cleartype", :content => "on"}/
|
|
|
|
/ iOS mobile web app indicator
|
|
/ NOTE(we will enable these once we don't have to rely on back/forward buttons anymore)
|
|
/%meta{:name => "apple-mobile-web-app-capable", :content => "yes"}
|
|
/%link{:rel => "apple-touch-startup-image", :href => "/images/apple-splash.png"}
|
|
|
|
%body
|
|
#app
|
|
= render "layouts/header"
|
|
- if user_signed_in?
|
|
= render "layouts/drawer"
|
|
|
|
.flash-messages-container
|
|
.flash-messages#flash-messages
|
|
|
|
#main{:role => "main"}
|
|
- if current_page?(:activity_stream)
|
|
%h3
|
|
= t("streams.activity.title")
|
|
= yield
|
|
|
|
= include_chartbeat
|
|
= include_mixpanel_guid
|