diff --git a/basetheme_bootstrap/static/img/institut-pasteur-logo-2020.png b/basetheme_bootstrap/static/img/institut-pasteur-logo-2020.png new file mode 100644 index 0000000000000000000000000000000000000000..fad57ee4c5bc59be8f253875fa5bb0aa3bc7eb9f Binary files /dev/null and b/basetheme_bootstrap/static/img/institut-pasteur-logo-2020.png differ diff --git a/basetheme_bootstrap/static/img/pasteur-white.png b/basetheme_bootstrap/static/img/pasteur-white.png new file mode 100644 index 0000000000000000000000000000000000000000..cc49b00defd710e9526f137c425ff00c1bbd04d9 Binary files /dev/null and b/basetheme_bootstrap/static/img/pasteur-white.png differ diff --git a/basetheme_bootstrap/static/img/pasteur.png b/basetheme_bootstrap/static/img/pasteur.png new file mode 100644 index 0000000000000000000000000000000000000000..aa0c98ec5c623ab21ddde34400e16c57e0a06337 Binary files /dev/null and b/basetheme_bootstrap/static/img/pasteur.png differ diff --git a/basetheme_bootstrap/templates/basetheme_bootstrap/basePasteur.html b/basetheme_bootstrap/templates/basetheme_bootstrap/basePasteur.html index e2ec337d52b0f871974e743a6f7db5db01d2ae43..4d74d49b237e37f81d08bd2685949b36db37cec1 100644 --- a/basetheme_bootstrap/templates/basetheme_bootstrap/basePasteur.html +++ b/basetheme_bootstrap/templates/basetheme_bootstrap/basePasteur.html @@ -58,7 +58,7 @@ </nav> <nav class="header__middle navbar navbar-expand-md navbar-light"> <div class="header__logo-wrapper"> - <img src="https://www.pasteur.fr/sites/default/files/institut-pasteur-logo-2020.png" alt="Accueil"> + <img src="{% sstatic '/img/institut-pasteur-logo-2020.png'%}" alt="Accueil"> </div> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar__middle__collapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation"> @@ -77,7 +77,7 @@ <div></div> </div> <div class="header__face-wrapper d-none d-md-block"> - <img class="header__face" src="https://www.pasteur.fr//sites/all/themes/custom/pasteur/assets/img/art/pasteur.png"> + <img class="header__face" src="{% sstatic '/img/pasteur.png'%}"> </div> </nav> </header> @@ -122,7 +122,7 @@ <div class="inner-wrap"> <div class="footer__section footer__address"> <div class="footer__logo clearfix"> - <img src="https://www.pasteur.fr/sites/all/themes/custom/pasteur/assets/img/pasteur-white.png" alt="Institut Pasteur" title="Institut Pasteur"> + <img src="{% sstatic '/img/pasteur-white.png'%}" alt="Institut Pasteur" title="Institut Pasteur"> </div> <div class="block block-block block-block-1"> <div class="content"> diff --git a/setup.py b/setup.py index 4730ebf7d5bdb5de9b282c3d8b514f480ff20726..ea003b9c9d6b6b0b34ff156fd2f0cbe8e91cad08 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ readme = open('README.rst').read() setup( name='django-basetheme-bootstrap', - version='0.2.49', + version='0.2.50', description='Django Basetheme Bootstrap', long_description=readme, author='Bryan Brancotte',