Skip to content
Snippets Groups Projects
Commit 2b942884 authored by Bryan BRANCOTTE's avatar Bryan BRANCOTTE
Browse files

Importing theme

parents
No related branches found
No related tags found
No related merge requests found
# A package theming django-basetheme-bootstrap for EBAII
===============================================================================
A package theming django-basetheme-bootstrap for EBAII
===============================================================================
\ No newline at end of file
from django.apps import AppConfig
class EbaiiConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'ebaii'
ebaii/static/img/aviesan.png

45.4 KiB

ebaii/static/img/cnrs-roscoff.png

18 KiB

This diff is collapsed.
{% load sstatic %}
<div class="footer__logo clearfix">
<img src="{% sstatic '/img/cnrs-roscoff.png'%}" alt="Institut Pasteur" title="Institut Pasteur" width="150px" style="background:white">
</div>
<div class="block block-block block-block-1">
<div class="content">
<root>
<div class="address_street">
<a href="https://www.google.com/maps/place/Place Georges Teissier, 29680 Roscoff/">Place Georges Teissier, 29680 Roscoff</a>
</div>
<div class="address_phone"><a href="tel:+332 98 29 23 23">02 98 29 23 23</a>
</div>
</root>
</div>
</div>
\ No newline at end of file
{% load basetheme_bootstrap %}
{% load i18n %}
<li class="nav-item "><a href="https://www.france-bioinformatique.fr/" target="_blank" class="nav-link">{%trans "L’Institut Français de Bioinformatique"%}</a></li>
<li class="nav-item "><a href="https://www.sb-roscoff.fr/" target="_blank" class="nav-link">{%trans "La Station Biologique de Roscoff"%}</a></li>
<hr/>
<li class="nav-item "><a href="https://www.pasteur.fr/" target="_blank" class="nav-link">{%trans "L'Institut Pasteur"%}</a></li>
<li class="nav-item "><a href="https://research.pasteur.fr/fr/team/bioinformatics-and-biostatistics-hub/" target="_blank" class="nav-link">{%trans "Bioinformatics and Biostatistics HUB"%}</a></li>
\ No newline at end of file
{% load sstatic %}
<img src="{% sstatic '/img/aviesan.png'%}" alt="Accueil">
\ No newline at end of file
{% load sstatic %}
<img class="header__face" src="{% sstatic '/img/logo-ifb-couleur.svg'%}">
\ No newline at end of file
{% load i18n %}
<li class="nav-item "><a href="https://www.france-bioinformatique.fr/" target="_blank" class="nav-link">{%trans "L’Institut Français de Bioinformatique"%}</a></li>
\ No newline at end of file
django-basetheme-bootstrap>=v1.5
\ No newline at end of file
setup.py 0 → 100644
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
readme = open('README.rst').read()
setup(
name='ebaii-theme',
version='1.0',
description='EBAII theming for django-basetheme-bootstrap',
long_description=readme,
author='Bryan Brancotte',
author_email='bryan.brancotte@pasteur.fr',
packages=['ebaii'],
install_requires=[
'django-basetheme-bootstrap'
],
license="BSD",
package_data={'ebaii': [
"templatetags/*",
"templates/strass_app/*",
"templates/*",
"static/css/*",
"static/js/*",
"static/img/*",
"locale/en/LC_MESSAGES/*",
"locale/fr/LC_MESSAGES/*",
]},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment