feat: Modification du contenu
This commit is contained in:
parent
4d63586bcd
commit
92dfea92b2
|
@ -6,6 +6,9 @@ skill:
|
|||
content : |
|
||||
Vos cyclistes jardiniers sont en capacité de venir s’occuper de vos jardins sur les communes de Bordeaux, Bègles, Villenave d’Ornon, Talence, Pessac, Mérignac, Le Bouscat, Bruges et Floirac.
|
||||
A Bordeaux, nous passons dans tous les quartiers, de l'hypercentre à Caudéran, Chartrons, Grand Parc, Jardin Public, La Bastide, Nansouty, Saint-Genès, Saint-Augustin, Tauzin, Alphonse Dupeux, La Benauge, Saint-Jean, Bacalan, Saint Seurin, Faudondège, Quinconces, Capucins, Victoire, Mériadeck, Saint-Pierre, Ginko, Saint-Bruno.
|
||||
content_blocks:
|
||||
- Vos cyclistes jardiniers sont en capacité de venir s’occuper de vos jardins sur les communes de Bordeaux, Bègles, Villenave d’Ornon, Talence, Pessac, Mérignac, Le Bouscat, Bruges et Floirac.
|
||||
- A Bordeaux, nous passons dans tous les quartiers, de l'hypercentre à Caudéran, Chartrons, Grand Parc, Jardin Public, La Bastide, Nansouty, Saint-Genès, Saint-Augustin, Tauzin, Alphonse Dupeux, La Benauge, Saint-Jean, Bacalan, Saint Seurin, Faudondège, Quinconces, Capucins, Victoire, Mériadeck, Saint-Pierre, Ginko, Saint-Bruno.
|
||||
# image : images/about/company-growth.webp
|
||||
image : images/about/carte.svg
|
||||
call_to_action :
|
||||
|
|
|
@ -521,14 +521,14 @@ a:hover {
|
|||
|
||||
.hero-area .block p {
|
||||
color: #fff;
|
||||
font-size: 40px;
|
||||
font-size: 30px;
|
||||
width: 70%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.hero-area .block p {
|
||||
font-size: 30px;
|
||||
font-size: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -15,7 +15,9 @@
|
|||
<h2>{{ .title | markdownify }}</h2>
|
||||
<p>{{ .content | markdownify }}</p>
|
||||
{{ with .call_to_action }}
|
||||
<a class="btn btn-primary" href="{{ .link | safeURL }}">{{ .text }}</a>
|
||||
<div class="text-center text-md-left">
|
||||
<a class="btn btn-primary" href="{{ .link | safeURL }}">{{ .text }}</a>
|
||||
</div>
|
||||
{{ end }}
|
||||
<div class="row">
|
||||
{{ range .feature_item }}
|
||||
|
|
|
@ -29,6 +29,16 @@
|
|||
<div class="p-3">
|
||||
<h2>{{ .subtitle | markdownify }}</h2>
|
||||
<p> {{ .content | markdownify }}</p>
|
||||
{{ if .content_blocks }}
|
||||
{{ $col := div 12 (len .content_blocks) }}
|
||||
<div class="row">
|
||||
{{ range .content_blocks }}
|
||||
<div class="col-{{ $col }}">
|
||||
{{ . | markdownify }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ with .call_to_action }}
|
||||
<div class="text-center p-3">
|
||||
{{ range . }}
|
||||
|
|
Loading…
Reference in New Issue