mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
18 lines
587 B
Text
18 lines
587 B
Text
= content_for :splash_nav do
|
|
%li
|
|
= link_to 'Code of Conduct', '#',
|
|
data: { toggle: 'modal', target: '#modal-code-of-conduct'}
|
|
|
|
- content_for :modals do
|
|
- cache '#CoC-modal' do
|
|
.modal.fade{ id: "modal-code-of-conduct" }
|
|
.modal-dialog
|
|
.modal-content
|
|
.modal-header
|
|
%button.close{ data: { dismiss: 'modal' } }
|
|
%i.fa-solid.fa-xmark
|
|
%h3.modal-title Code of Conduct
|
|
.modal-body
|
|
= markdown conference.code_of_conduct
|
|
.modal-footer
|
|
= link_to 'permalink', :code_of_conduct
|