Fix web manifest accessibility

pull/2988/head
Victor Baranov 5 years ago
parent c450a88a01
commit b898602051
  1. 4
      CHANGELOG.md
  2. 0
      apps/block_scout_web/assets/static/manifest.webmanifest
  3. 4
      apps/block_scout_web/lib/block_scout_web/endpoint.ex
  4. 2
      apps/block_scout_web/lib/block_scout_web/templates/layout/app.html.eex

@ -3,8 +3,8 @@
### Features
### Fixes
- [#2897]( https://github.com/poanetwork/blockscout/pull/2897) - remove duplicate indexes
- [#2988](https://github.com/poanetwork/blockscout/pull/2988) - Fix web manifest accessibility
- [#2897](https://github.com/poanetwork/blockscout/pull/2897) - remove duplicate indexes
### Chore

@ -29,9 +29,9 @@ defmodule BlockScoutWeb.Endpoint do
browserconfig.xml
mstile-150x150.png
safari-pinned-tab.svg
site.manifest
robots.txt
)
),
only_matching: ~w(manifest)
)
# Code reloading can be explicitly enabled under the

@ -12,7 +12,7 @@
<link rel="apple-touch-icon" sizes="180x180" href="<%= static_path(@conn, "/apple-touch-icon.png") %>">
<link rel="icon" type="image/png" sizes="32x32" href="<%= static_path(@conn, "/images/favicon-32x32.png") %>">
<link rel="icon" type="image/png" sizes="16x16" href="<%= static_path(@conn, "/images/favicon-16x16.png") %>">
<link rel="manifest" href="<%= static_path(@conn, "/site.webmanifest") %>">
<link rel="manifest" href="<%= static_path(@conn, "/manifest.webmanifest") %>">
<link rel="mask-icon" href="<%= static_path(@conn, "/safari-pinned-tab.svg") %>" color="#5bbad5">
<link rel="shortcut icon" type='image/x-icon' href="<%= static_path(@conn, "/images/favicon.ico") %>">
<meta name="msapplication-TileColor" content="#7dd79f">

Loading…
Cancel
Save