diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-08-25 23:27:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 23:27:10 +0200 |
commit | d696f729f1dc27c9d92b896c651e1ea73bf93d75 (patch) | |
tree | 9f2ca8cdd2d8a94ee748efafc2d2b43d629dd0f0 /app/views/layouts | |
parent | 3c79ccb7e36f2a1f291374a0a57e4c24af4ef0bd (diff) |
Add meta tag for official iOS app (#16599)
Diffstat (limited to 'app/views/layouts')
-rwxr-xr-x | app/views/layouts/application.html.haml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml index bf164223c..3e50de3fb 100755 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml @@ -23,6 +23,7 @@ %link{ rel: 'manifest', href: manifest_path(format: :json) }/ %meta{ name: 'theme-color', content: '#6364FF' }/ %meta{ name: 'apple-mobile-web-app-capable', content: 'yes' }/ + %meta{ name: 'apple-itunes-app', content: 'app-id=1571998974' }/ %title= content_for?(:page_title) ? safe_join([yield(:page_title).chomp.html_safe, title], ' - ') : title |