module ApplicationHelper

    def default_meta_tags
        {
          site: 'fotogallery',
          title: 'fotogallery by date',
          reverse: true,
          separator: '|',
          description: 'fotogallery',
          keywords: 'action, horror, drama',
          noindex: !Rails.env.production?,
          charset: 'utf-8',
          viewport: 'width=device-width,initial-scale=1',
          #icon: [
            #{ href: image_url('favicon.ico') },
            #{ href: image_url('icon.jpg'), rel: 'apple-touch-icon', sizes: '180x180', type: 'image/jpg' },
          #]
        }
    end

    def icon(name)
      content_tag(:i, "", class: ["fa-solid", "fa-"+name])
    end

end
