Skip to content
Snippets Groups Projects
Commit e3464708 authored by Eloi Perdereau's avatar Eloi Perdereau
Browse files

footer et bien plus encore

    footer/custom.html avant footer.html
    author-profile dans le footer (voir si on l'enlève du sidebar)
    clean footer links dans _config.yml
    créé pages navigables mais qu'étaient 404
    logo-ccl.png : garde que le transparent (ex 'grand')
    /!\ bootstrap
parent 9019f405
No related branches found
No related tags found
No related merge requests found
Showing with 356 additions and 38 deletions
......@@ -120,29 +120,6 @@ footer:
url: "/contribute/"
- label: "Contact webmaster"
url: "/contact/"
# - label: "Twitter"
# icon: "fa fa-twitter"
# url:
# - label: "Facebook"
# icon: "fa fa-facebook"
# url: "https://facebook.com/CCLuminy"
# - label: "HelloAsso"
# icon: "fa fa-users"
# url: "https://www.helloasso.com/associations/centre-culturel-de-luminy"
# - label: "GitHub"
# icon: "fa fa-github"
# url: "https://github.com/CCLuminy/CCL-site"
# - label: "À propos"
# url: "/contacts/#fonctionnement-associatif"
# - label: "GitLab"
# icon: "fa fa-gitlab"
# url:
# - label: "Bitbucket"
# icon: "fa fa-bitbucket"
# url:
# - label: "Instagram"
# icon: "fa fa-instagram"
# url:
# Reading Files
......
......@@ -10,18 +10,20 @@ authors:
email: ''
facebook: ''
helloasso: ''
- name: Centre Culturel de Luminy
prefix: ccl
avatar: "/assets/images/authors-logo/remi.png"
og_image: "/assets/images/authors-logo/logo-ccl.png"
banner: "/assets/images/banniere-ccl-intime.png"
bio: Animer, partager, avancer, s'améliorer, s'amuser
# location: Luminy
location: Luminy
email: centre-culturel@luminy.org
facebook: CCLuminy
instagram: centrecultureldeluminy
twitter: CCLuminy
helloasso: centre-culturel-de-luminy
- name: Jardin Universitaire
prefix: jardin
avatar: "/assets/images/authors-logo/logo-jardin.png"
......@@ -33,6 +35,7 @@ authors:
helloasso: jardin-universitaire-de-luminy
links:
og_image: ''
- name: Club de Science Luminy
prefix: club-science
avatar: "/assets/images/authors-logo/logo-club-sciences.jpeg"
......@@ -43,6 +46,7 @@ authors:
banner: ''
helloasso: ''
og_image: ''
- name: FSE Luminy
prefix: fse
avatar: "/assets/images/authors-logo/fse-transparent.png"
......@@ -54,6 +58,7 @@ authors:
email: ''
helloasso: ''
og_image: ''
- name: Café des Langues
prefix: cafe-des-langues
avatar: "/assets/images/authors-logo/cafe-des-langues.png"
......@@ -66,6 +71,7 @@ authors:
banner: ''
helloasso: ''
og_image: ''
- name: ALLIÉ
prefix: allie
avatar: "/assets/images/authors-logo/allie.png"
......@@ -78,6 +84,7 @@ authors:
banner: ''
helloasso: ''
og_image: ''
- name: Com&Sea
prefix: comnsea
avatar: "/assets/images/authors-logo/logo-com.png"
......
......@@ -12,8 +12,8 @@ nav:
- title: Activités
url: "/activites/"
children:
- title: Concerts et festivals
url: "/activites/concerts/"
- title: Distributions de pain
url: "/activites/distrib/"
- title: Toukouleur
url: "/activites/toukouleur/"
- title: Les jeudis du CCL
......
<!-- {% assign author = page.author | default: page.authors[0] | default: site.author %} -->
{% assign author = site.data.authors.authors | where: "prefix", site.author | first %}
<div itemscope itemtype="https://schema.org/Person">
{% if author.avatar %}
<div class="footers-logo">
{% if author.avatar contains "://" %}
{% assign author_src = author.avatar %}
{% else %}
{% assign author_src = author.avatar | relative_url %}
{% endif %}
{% if author.home %}
{% if author.home contains "://" %}
{% assign author_link = author.home %}
{% else %}
{% assign author_link = author.home | relative_url %}
{% endif %}
<a href="{{ author_link }}">
<img src="{{ author_src }}" alt="{{ author.name }}" itemprop="image">
</a>
{% else %}
<img src="{{ author_src }}" alt="{{ author.name }}" itemprop="image">
{% endif %}
</div>
{% endif %}
<div class="footers-info mt-3">
<h3 style="display: none" itemprop="name">{{ author.name }}</h3>
{% if author.bio %}
<div class="author__bio" itemprop="description">
{{ author.bio | markdownify }}
</div>
{% endif %}
</div>
<ul class="social">
{% if author.location %}
<li style="display: none" itemprop="homeLocation" itemscope itemtype="https://schema.org/Place">
<i class="fa fa-map-marker-alt fa-fw" aria-hidden="true"></i> <span itemprop="name">{{ author.location }}</span>
</li>
{% endif %}
{% if author.facebook %}
<li>
<a href="https://www.facebook.com/{{ author.facebook }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fa fa-facebook-square fa-fw" aria-hidden="true"></i>
</a>
</li>
{% endif %}
{% if author.linkedin %}
<li>
<a href="https://www.linkedin.com/in/{{ author.linkedin }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fa fa-linkedin fa-fw" aria-hidden="true"></i>
</a>
</li>
{% endif %}
{% if author.instagram %}
<li>
<a href="https://instagram.com/{{ author.instagram }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fa fa-instagram fa-fw" aria-hidden="true"></i>
</a>
</li>
{% endif %}
{% if author.twitter %}
<li>
<a href="https://twitter.com/{{ author.twitter }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fa fa-twitter fa-fw" aria-hidden="true"></i>
</a>
</li>
{% endif %}
{% if author.helloasso %}
<li>
<a href="https://www.helloasso.com/associations/{{ author.helloasso }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fa fa-users fa-fw" aria-hidden="true"></i>
</a>
</li>
{% endif %}
{% if author.email %}
<li>
<a href="mailto:{{ author.email }}">
<meta itemprop="email" content="{{ author.email }}" />
<i class="fa fa-envelope fa-fw" aria-hidden="true"></i>
</a>
</li>
{% endif %}
{% if author.pinterest %}
<li>
<a href="https://www.pinterest.com/{{ author.pinterest }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fa fa-pinterest fa-fw" aria-hidden="true"></i>
</a>
</li>
{% endif %}
{% if author.soundcloud %}
<li>
<a href="https://soundcloud.com/{{ author.soundcloud }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
<i class="fa fa-soundcloud fa-fw" aria-hidden="true"></i>
</a>
</li>
{% endif %}
</ul>
</div>
<!-- start custom footer snippets -->
<!-- A large size static footer example -->
<!-- https://www.jquery-az.com/bootstrap4/demo.php?ex=77.0_3 -->
<!-- end custom footer snippets -->
<footer>
<div class="footer" id="footer">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-4 footers-one">
{% include footer/author-profile.html %}
</div>
{% assign navigation = site.data.navigation.nav %}
{% for nav in navigation %}
<div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
{% if nav.url %}
{% if nav.url contains "://" %}
{% assign nav_url = nav.url %}
{% else %}
{% assign nav_url = nav.url | relative_url %}
{% endif %}
<!-- <h3><a href="{{ nav_url }}">{{ nav.title }}</a></h3> -->
<h3>{{ nav.title }}</h3>
{% else %}
<h3>{{ nav.title }}</h3>
{% endif %}
{% if nav.children != null %}
<ul>
{% for child in nav.children %}
{% if child.url contains "://" %}
{% assign child_url = child.url %}
{% else %}
{% assign child_url = child.url | relative_url %}
{% endif %}
<li><a href="{{ child_url }}">{{ child.title }}</a></li>
{% endfor %}
</ul>
{% endif %}
</div>
{% endfor %}
<div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
<h3> About </h3>
<ul>
<li> <a href="#"> Our Company </a> </li>
<li> <a href="#"> About Us </a> </li>
<li> <a href="#"> Terms of Services </a> </li>
<li> <a href="#"> Our Team </a> </li>
</ul>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
<h3> Contact </h3>
<ul>
<li> <a href="#"> Contact Marketing </a> </li>
<li> <a href="#"> Contact Sales </a> </li>
<li> <a href="#"> Contact HR </a> </li>
<li> <a href="#"> Contact Admin </a> </li>
</ul>
</div>
<div class="col-lg-4 col-md-6 col-sm-8 col-xs-12 ">
<h3> Suivez-nous </h3>
<ul>
<li>Inscrivez votre mail pour nous suivre</li>
<li>
<div class="input-group">
<input type="text" class="form-control" placeholder="Email ">
<div class="input-group-append">
<button class="btn btn-inverse" type="button"> <i class="fa fa-save fa-fw fa-lg"> </i></button>
</div>
</div>
</li>
</ul>
</div>
</div>
<!--/.row-->
</div>
<!--/.container-->
</div>
<!--/.footer-->
</footer>
......@@ -30,10 +30,8 @@
{% endif %}
<div id="footer" class="page__footer">
<footer>
{% include footer/custom.html %}
{% include_cached footer.html %}
</footer>
</div>
{% include scripts.html %}
......
---
title: Campus Propre
author_profile: true
---
Viens nettoyer!
---
title: Jeudis du CCL
author_profile: true
---
# Gros son
# Jongle
# Paniers bio
Tous les jeudis, les paniers marseillais proposent des produits bio en direct de chez les producteurs ; légumes, fruits, œufs, pain, jus, vin, huile, olives, fruits secs, vinaigre, viande, fromages, ...
---
title: Projections
author_profile: true
---
# des docus
# des films
(shh...)
---
title: Projets en cours
author_profile: true
---
# Studio de musique
...
# Skatepark
......@@ -3,7 +3,7 @@ title: Adhésion et soutiens
toc: true
share: true
overlay_image: assets/images/banniere-bulles.png
og_image: assets/images/logo-ccl-grand.png
og_image: assets/images/logo-ccl.png
---
# Adhérez à l'asso du CCL
......
......@@ -29,6 +29,7 @@
@import "minimal-mistakes/masthead";
@import "minimal-mistakes/navigation";
@import "minimal-mistakes/footer";
@import "minimal-mistakes/custom-footer";
@import "minimal-mistakes/search";
@import "minimal-mistakes/syntax";
......@@ -41,6 +42,7 @@
@import "minimal-mistakes/sidebar";
@import "minimal-mistakes/print";
@import url(https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css);
@font-face {
font-family: "Tempus Sans ITC";
......
.full {
width: 100%;
}
.footer {
height: auto;
padding-bottom: 30px;
position: relative;
width: 100%;
color:#000;
border-bottom: 1px solid #CCCCCC;
border-top: 1px solid #DDDDDD;
background: $footer-background-color;
// background: -webkit-linear-gradient(to right, #31BDE6, #00003E);
// background: linear-gradient(to right, #31BDE6, #00003E);
}
.footer h3 {
font-family: "Tempus Sans ITC";
border-bottom: 1px solid #BAC1C8;
color:#000;
font-size: 18px;
font-weight: 600;
line-height: 27px;
padding: 40px 0 10px;
text-transform: uppercase;
}
.footer ul {
font-size: 13px;
list-style-type: none;
margin-left: 0;
padding-left: 0;
margin-top: 15px;
color: #7F8C8D;
}
.footer ul li a {
padding: 0 0 5px 0;
display: block;
}
.footer a {
color: #78828D;
color:#000;
}
.supportLi h4 {
font-size: 20px;
font-weight: lighter;
line-height: normal;
margin-bottom: 0 !important;
padding-bottom: 0;
}
.social li {
border: 2px solid #B5B5B5;
-webkit-border-radius: 20%;
-moz-border-radius: 20%;
-o-border-radius: 20%;
-ms-border-radius: 20%;
border-radius: 20%;
float: left;
height: 36px;
line-height: 36px;
margin: 0 10px 10px 0;
padding: 0;
text-align: center;
width: 36px;
transition: all 0.5s ease 0s;
-moz-transition: all 0.5s ease 0s;
-webkit-transition: all 0.5s ease 0s;
-ms-transition: all 0.5s ease 0s;
-o-transition: all 0.5s ease 0s;
}
.social li a {
color: #EDEFF1;
}
.social li:hover {
border: 2px solid #2c3e50;
background: #2c3e50;
}
.social li a i {
font-size: 16px;
// margin: 0 0 0 5px;
color: #000 !important;
// color: #EDEFF1 !important;
}
// .footer-bottom {
// background: #40E0D0;
// background: -webkit-linear-gradient(to right, #FF0080, #FF8C00, #40E0D0);
// background: linear-gradient(to right, #FF0080, #FF8C00, #40E0D0);
// border-top: 1px solid #DDDDDD;
// padding-top: 20px;
// padding-bottom: 40px;
// color:#000;
// }
// .footer-bottom p.pull-left {
// padding-top: 6px;
// }
// .payments {
// font-size: 1.5em;
// }
version https://git-lfs.github.com/spec/v1
oid sha256:1be3b9c38132c3947791e25b4134ec2555403c0df5721ec9a3a7ef10cd625730
size 448408
version https://git-lfs.github.com/spec/v1
oid sha256:5451dee5884e0d1149754a6646b0a3fe70675b12fa1ec17d7e41c9dd1c3e5295
size 43212
oid sha256:8397d2904547c0dd4e793d3c78c18f2de3371dbefe9d4476cd9cbfb6950b11b7
size 45611
version https://git-lfs.github.com/spec/v1
oid sha256:86edc4898bad93fbef6189db7056b58f1ef65d210c8bc4b4fa87121ac1641c27
size 446747
oid sha256:1be3b9c38132c3947791e25b4134ec2555403c0df5721ec9a3a7ef10cd625730
size 448408
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment