* Redesign the landing page, mount public timeline on it * Adjust the standalone mounted component to the lacking of router * Adjust auth layout pages to new design * Fix tests * Standalone public timeline polling every 5 seconds * Remove now obsolete translations * Add responsive design for new landing page * Address reviews * Add floating clouds behind frontpage form * Use access token from public page when available * Fix mentions and hashtags links, cursor on status content in standalone mode * Add footer link to source code * Fix errors on pages that don't embed the component, use classnames * Fix tests * Change anonymous autoPlayGif default to false * When gif autoplay is disabled, hover to play * Add option to hide the timeline preview * Slightly improve alt layout * Add elephant friend to new frontpage * Display "back to mastodon" in place of "login" when logged in on frontpage * Change polling time to 3s
		
			
				
	
	
		
			65 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| - content_for :page_title do
 | |
|   = t('admin.settings.title')
 | |
| 
 | |
| = form_tag(admin_settings_path, method: :put, class: 'simple_form', style: 'max-width: 100%') do
 | |
|   %table.table
 | |
|     %thead
 | |
|       %tr
 | |
|         %th{ width: '40%' }
 | |
|           = t('admin.settings.setting')
 | |
|         %th
 | |
|     %tbody
 | |
|       %tr
 | |
|         %td
 | |
|           %strong= t('admin.settings.contact_information.label')
 | |
|         %td= text_field_tag :site_contact_username, @settings['site_contact_username'].value, place_holder: t('admin.settings.contact_information.username')
 | |
|       %tr
 | |
|         %td
 | |
|           %strong= t('admin.accounts.email')
 | |
|         %td= text_field_tag :site_contact_email, @settings['site_contact_email'].value, place_holder: t('admin.settings.contact_information.email')
 | |
|       %tr
 | |
|         %td
 | |
|           %strong= t('admin.settings.site_title')
 | |
|         %td= text_field_tag :site_title, @settings['site_title'].value
 | |
|       %tr
 | |
|         %td
 | |
|           %strong= t('admin.settings.site_description.title')
 | |
|           %p= t('admin.settings.site_description.desc_html')
 | |
|         %td= text_area_tag :site_description, @settings['site_description'].value, rows: 8
 | |
|       %tr
 | |
|         %td
 | |
|           %strong= t('admin.settings.site_description_extended.title')
 | |
|           %p= t('admin.settings.site_description_extended.desc_html')
 | |
|         %td= text_area_tag :site_extended_description, @settings['site_extended_description'].value, rows: 8
 | |
|       %tr
 | |
|         %td
 | |
|           %strong= t('admin.settings.site_terms.title')
 | |
|           %p= t('admin.settings.site_terms.desc_html')
 | |
|         %td= text_area_tag :site_terms, @settings['site_terms'].value, rows: 8
 | |
|       %tr
 | |
|         %td
 | |
|           %strong= t('admin.settings.registrations.open.title')
 | |
|           %p= t('admin.settings.registrations.open.desc_html')
 | |
|         %td
 | |
|           = select_tag :open_registrations, options_for_select({ t('simple_form.no') => false, t('simple_form.yes') => true }, @settings['open_registrations'].value)
 | |
|       %tr
 | |
|         %td
 | |
|           %strong= t('admin.settings.registrations.closed_message.title')
 | |
|           %p= t('admin.settings.registrations.closed_message.desc_html')
 | |
|         %td= text_area_tag :closed_registrations_message, @settings['closed_registrations_message'].value, rows: 8
 | |
|       %tr
 | |
|         %td
 | |
|           %strong= t('admin.settings.registrations.deletion.title')
 | |
|           %p= t('admin.settings.registrations.deletion.desc_html')
 | |
|         %td
 | |
|           = select_tag :open_deletion, options_for_select({ t('simple_form.no') => false, t('simple_form.yes') => true }, @settings['open_deletion'].value)
 | |
|       %tr
 | |
|         %td
 | |
|           %strong= t('admin.settings.timeline_preview.title')
 | |
|           %p= t('admin.settings.timeline_preview.desc_html')
 | |
|         %td
 | |
|           = select_tag :timeline_preview, options_for_select({ t('simple_form.no') => false, t('simple_form.yes') => true }, @settings['timeline_preview'].value)
 | |
| 
 | |
|   .simple_form.actions
 | |
|     = button_tag t('generic.save_changes'), type: :submit, class: :btn
 |