Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 781 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 781 Bytes

Matplotlib Brochure site

This is the source for the top-level index.html for matplotlib.org

Deployment

Copy the contents of site/ to the top level of matplotlib/matplotlib.github.com and push to the default branch.

CSS cache-busting

If you change the css files it is important to also change the query parameter on the css link to ensure that users will not see a mix of new content and old css. For example

    <link rel="stylesheet" href="_static/mpl.css?v1" type="text/css" />

to

    <link rel="stylesheet" href="_static/mpl.css?v2" type="text/css" />

The query parameter will be ignored when serving the file from the origin but will be taken into consideration by both cloudflare and users browsers when identifying cache hits.