Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
e62c87c4
Commit
e62c87c4
authored
Feb 18, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:gitlabhq/gitlabhq
parents
bf9372ea
14fa0d5b
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
0 deletions
+7
-0
app/views/layouts/admin.html.haml
app/views/layouts/admin.html.haml
+1
-0
app/views/layouts/navless.html.haml
app/views/layouts/navless.html.haml
+1
-0
app/views/layouts/public.html.haml
app/views/layouts/public.html.haml
+1
-0
app/views/layouts/public_projects.html.haml
app/views/layouts/public_projects.html.haml
+1
-0
app/views/layouts/public_users.html.haml
app/views/layouts/public_users.html.haml
+1
-0
app/views/layouts/search.html.haml
app/views/layouts/search.html.haml
+1
-0
app/views/layouts/user_team.html.haml
app/views/layouts/user_team.html.haml
+1
-0
No files found.
app/views/layouts/admin.html.haml
View file @
e62c87c4
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
%html
{
lang:
"en"
}
%html
{
lang:
"en"
}
=
render
"layouts/head"
,
title:
"Admin area"
=
render
"layouts/head"
,
title:
"Admin area"
%body
{
class:
"#{app_theme} admin"
,
:'data-page'
=>
body_data_page
}
%body
{
class:
"#{app_theme} admin"
,
:'data-page'
=>
body_data_page
}
=
render
"layouts/broadcast"
=
render
"layouts/head_panel"
,
title:
"Admin area"
=
render
"layouts/head_panel"
,
title:
"Admin area"
=
render
"layouts/flash"
=
render
"layouts/flash"
%nav
.main-nav.navbar-collapse.collapse
%nav
.main-nav.navbar-collapse.collapse
...
...
app/views/layouts/navless.html.haml
View file @
e62c87c4
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
%html
{
lang:
"en"
}
%html
{
lang:
"en"
}
=
render
"layouts/head"
,
title:
@title
=
render
"layouts/head"
,
title:
@title
%body
{
class:
"#{app_theme} application"
,
:'data-page'
=>
body_data_page
}
%body
{
class:
"#{app_theme} application"
,
:'data-page'
=>
body_data_page
}
=
render
"layouts/broadcast"
=
render
"layouts/head_panel"
,
title:
@title
=
render
"layouts/head_panel"
,
title:
@title
=
render
"layouts/flash"
=
render
"layouts/flash"
...
...
app/views/layouts/public.html.haml
View file @
e62c87c4
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
%html
{
lang:
"en"
}
%html
{
lang:
"en"
}
=
render
"layouts/head"
,
title:
"Public Projects"
=
render
"layouts/head"
,
title:
"Public Projects"
%body
{
class:
"#{app_theme} application"
,
:'data-page'
=>
body_data_page
}
%body
{
class:
"#{app_theme} application"
,
:'data-page'
=>
body_data_page
}
=
render
"layouts/broadcast"
-
if
current_user
-
if
current_user
=
render
"layouts/head_panel"
,
title:
"Public Projects"
=
render
"layouts/head_panel"
,
title:
"Public Projects"
-
else
-
else
...
...
app/views/layouts/public_projects.html.haml
View file @
e62c87c4
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
%html
{
lang:
"en"
}
%html
{
lang:
"en"
}
=
render
"layouts/head"
,
title:
@project
.
name_with_namespace
=
render
"layouts/head"
,
title:
@project
.
name_with_namespace
%body
{
class:
"#{app_theme} application"
,
:'data-page'
=>
body_data_page
}
%body
{
class:
"#{app_theme} application"
,
:'data-page'
=>
body_data_page
}
=
render
"layouts/broadcast"
=
render
"layouts/public_head_panel"
,
title:
@project
.
name_with_namespace
=
render
"layouts/public_head_panel"
,
title:
@project
.
name_with_namespace
%nav
.main-nav
%nav
.main-nav
.container
=
render
'layouts/nav/project'
.container
=
render
'layouts/nav/project'
...
...
app/views/layouts/public_users.html.haml
View file @
e62c87c4
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
%html
{
lang:
"en"
}
%html
{
lang:
"en"
}
=
render
"layouts/head"
,
title:
@title
=
render
"layouts/head"
,
title:
@title
%body
{
class:
"#{app_theme} application"
,
:'data-page'
=>
body_data_page
}
%body
{
class:
"#{app_theme} application"
,
:'data-page'
=>
body_data_page
}
=
render
"layouts/broadcast"
=
render
"layouts/public_head_panel"
,
title:
@title
=
render
"layouts/public_head_panel"
,
title:
@title
.container.navless-container
.container.navless-container
.content
=
yield
.content
=
yield
app/views/layouts/search.html.haml
View file @
e62c87c4
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
%html
{
lang:
"en"
}
%html
{
lang:
"en"
}
=
render
"layouts/head"
,
title:
"Search"
=
render
"layouts/head"
,
title:
"Search"
%body
{
class:
"#{app_theme} application"
,
:'data-page'
=>
body_data_page
}
%body
{
class:
"#{app_theme} application"
,
:'data-page'
=>
body_data_page
}
=
render
"layouts/broadcast"
=
render
"layouts/head_panel"
,
title:
"Search"
=
render
"layouts/head_panel"
,
title:
"Search"
=
render
"layouts/flash"
=
render
"layouts/flash"
...
...
app/views/layouts/user_team.html.haml
View file @
e62c87c4
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
%html
{
lang:
"en"
}
%html
{
lang:
"en"
}
=
render
"layouts/head"
,
title:
"
#{
@team
.
name
}
"
=
render
"layouts/head"
,
title:
"
#{
@team
.
name
}
"
%body
{
class:
"#{app_theme} application"
,
:'data-page'
=>
body_data_page
}
%body
{
class:
"#{app_theme} application"
,
:'data-page'
=>
body_data_page
}
=
render
"layouts/broadcast"
=
render
"layouts/head_panel"
,
title:
"team:
#{
@team
.
name
}
"
=
render
"layouts/head_panel"
,
title:
"team:
#{
@team
.
name
}
"
=
render
"layouts/flash"
=
render
"layouts/flash"
%nav
.main-nav.navbar-collapse.collapse
%nav
.main-nav.navbar-collapse.collapse
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment