5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-26 15:06:22 +00:00
panel/app/views/sites/_header.haml

12 lines
521 B
Text
Raw Normal View History

2023-04-21 15:31:46 +00:00
.hyphens{ lang: site.default_locale }
%h1= site.title
%p.lead= site.description
2024-02-20 17:09:46 +00:00
%form{ action: site_posts_path }
- @filter_params.each do |param, value|
- next if param == 'q'
%input{ type: 'hidden', name: param, value: value }
.form-group.flex-grow-0.m-0
%label.sr-only{for: 'q'}= t('posts.index.search')
%input#q.form-control.border.border-magenta{ type: 'search', placeholder: t('posts.index.search'), name: 'q', value: @filter_params[:q] }
%input.sr-only{ type: 'submit' }