zulip/static/images/logo
Anders Kaseorg c1675913a2 web: Move web app to ‘web’ directory.
Ever since we started bundling the app with webpack, there’s been less
and less overlap between our ‘static’ directory (files belonging to
the frontend app) and Django’s interpretation of the ‘static’
directory (files served directly to the web).

Split the app out to its own ‘web’ directory outside of ‘static’, and
remove all the custom collectstatic --ignore rules.  This makes it
much clearer what’s actually being served to the web, and what’s being
bundled by webpack.  It also shrinks the release tarball by 3%.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
2023-02-23 16:04:17 -08:00
..
README.md logo: Add README for logo directory with format conversion advice. 2021-04-14 08:39:23 -07:00
apple-touch-icon-precomposed.png logo: Update Zulip logo. 2020-07-16 01:37:08 -07:00
zulip-icon-128x128.png logo: Update Zulip logo. 2020-07-16 01:37:08 -07:00
zulip-icon-512x512.png logo: Update Zulip logo. 2020-07-16 01:37:08 -07:00
zulip-icon-circle.svg logo: Update Zulip logo. 2020-07-16 01:37:08 -07:00
zulip-icon-square.svg logo: Update Zulip logo. 2020-07-16 01:37:08 -07:00
zulip-org-logo.svg dependencies: Upgrade JavaScript dependencies. 2021-03-03 21:46:42 -08:00

README.md

Generally, we prefer to use SVG assets when possible.

However, many websites where you might want to use a Zulip logo do not support SVG files. If you need a Zulip logo asset in a different format (E.g. a 512px height PNG), you can generate that from one of the .svg files in this directory.

On Linux, you can generate a PNG of a given height using the following:

rsvg-convert -h 512 static/images/logo/zulip-org-logo.svg -o /tmp/zulip-org-logo-512.png