blob: 2c00dd465db5cba90c71576a794b05e41648463a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
%h3.page_title
Snippets
%small share code pastes with others out of git repository
= link_to new_snippet_path, class: "btn btn-small add_new pull-right", title: "New Snippet" do
Add new snippet
%hr
.row
.span3
%ul.nav.nav-pills.nav-stacked
= nav_tab :scope, nil do
= link_to "All", snippets_path
= nav_tab :scope, 'projects' do
= link_to "Projects", snippets_path(scope: 'projects')
.span9
= render 'snippets'
|