18 lines
983 B
Text
18 lines
983 B
Text
- button_path = local_assigns.fetch(:button_path, false)
|
|
|
|
.row.empty-state
|
|
.col-12
|
|
.svg-content{ data: { qa_selector: 'svg_content' } }
|
|
= image_tag 'illustrations/snippets_empty.svg'
|
|
.text-content.gl-text-center.gl-pt-0
|
|
- if current_user
|
|
%h4
|
|
= s_('SnippetsEmptyState|Code snippets')
|
|
%p.gl-mb-0
|
|
= s_('SnippetsEmptyState|Store, share, and embed small pieces of code and text.')
|
|
.gl-mt-3<
|
|
- if button_path
|
|
= link_to s_('SnippetsEmptyState|New snippet'), button_path, class: 'btn gl-button btn-confirm', title: s_('SnippetsEmptyState|New snippet'), id: 'new_snippet_link', data: { qa_selector: 'create_first_snippet_link' }
|
|
= link_to s_('SnippetsEmptyState|Documentation'), help_page_path('user/snippets.md'), class: 'btn gl-button btn-default', title: s_('SnippetsEmptyState|Documentation')
|
|
- else
|
|
%h4.gl-text-center= s_('SnippetsEmptyState|There are no snippets to show.')
|