diff options
author | Dan McGee <dan@archlinux.org> | 2012-05-01 16:33:58 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-05-01 16:33:58 -0500 |
commit | b06efbe343eb6cd5cafe4c121d53a538302f9156 (patch) | |
tree | 34ad03eaaccd70eb50b787ddad4ff6439c3f0f18 | |
parent | f5c00577b3d364527481e5c98aa0fce8e300a341 (diff) |
Add a 144x144 apple-touch-icon to the resources
This is used on the high-resolution display of newer iPads, as well as
other tablets sure to come with high-resolution displays.
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | sitestatic/logos/apple-touch-icon-144x144.png | bin | 0 -> 3063 bytes | |||
-rw-r--r-- | templates/base.html | 1 |
2 files changed, 1 insertions, 0 deletions
diff --git a/sitestatic/logos/apple-touch-icon-144x144.png b/sitestatic/logos/apple-touch-icon-144x144.png Binary files differnew file mode 100644 index 00000000..cd177f2c --- /dev/null +++ b/sitestatic/logos/apple-touch-icon-144x144.png diff --git a/templates/base.html b/templates/base.html index b8a5be46..e6ccc972 100644 --- a/templates/base.html +++ b/templates/base.html @@ -10,6 +10,7 @@ <link rel="apple-touch-icon" href="{% static "logos/apple-touch-icon-57x57.png" %}" /> <link rel="apple-touch-icon" sizes="72x72" href="{% static "logos/apple-touch-icon-72x72.png" %}" /> <link rel="apple-touch-icon" sizes="114x114" href="{% static "logos/apple-touch-icon-114x114.png" %}" /> + <link rel="apple-touch-icon" sizes="144x144" href="{% static "logos/apple-touch-icon-144x144.png" %}" /> <link rel="search" type="application/opensearchdescription+xml" href="{% url 'opensearch-packages' as osp %}{{ osp }}" title="Arch Linux Packages" /> {% block head %}{% endblock %} </head> |