templates/projets/show.html.twig line 1
{% extends 'base.html.twig' %}
{% block title %}Saltaf Studio | Projets{% endblock %}
{% block body %}
<style>
p,h1,h2,a{
color:{{ projet.couleurBackText }}!important;
border-color:{{ projet.couleurBackText }}!important;
}
a{
}
</style>
<div style="position: fixed;
top:100px;
width: 100%;
height:100px;
background: linear-gradient(to bottom, {{ projet.couleurs }}, transparent);
z-index:100;">
</div>
<div style="position: fixed;
top:0;
width: 100%;
height: 100px;
background-color: {{projet.couleurs}};
z-index:100;">
</div><a href="{{ path('projet') }}">
<div class="fity">
<img class="fit-picture"
src="{{asset(('images/site/logo.png'))}}"
alt="logo Saltaf">
</div></a>
<div class="containe" style="background-color:{{ projet.couleurs }}!important;">
<div class="ro">
<div class="gauche" style="background-color:{{ projet.couleurs }}!important;">
<div class="presentation">
<h1 style="font-family:'daitatyperegular';">{{ projet.titre }}</h1>
<h2>{{ projet.client }}</h2>
<div class="center-tag">
{% for tag in projet.tag %}
<a href="{{ path('app_categorie_ind')}}/{{ tag.id }}" class="lien"> {{ tag.titre }}</a>
{% endfor %}
</div>
<p class="description-projet">{{ projet.description }}</p>
</div>
</div>
<div class="droite " style="background-color:{{ projet.couleurBack }}!important;z-index:125;">
<img src="{{ asset('images/' ~ projet.imagePresentation) }}" style="width:100%;"></td>
<img src="{{ asset('images/' ~ projet.image2) }}" style="width:100%;"></td>
<img src="{{ asset('images/' ~ projet.image3) }}" style="width:100%;"></td>
<img src="{{ asset('images/' ~ projet.image4) }}" style="width:100%;"></td>
<img src="{{ asset('images/' ~ projet.image5) }}" style="width:100%;"></td>
<img src="{{ asset('images/' ~ projet.image6) }}" style="width:100%;"></td>
<div class="descriptionprojet">
<p style="color:{{ projet.couleurBackText }}!important;">{{ projet.description2 }}</p>
<div class="container">
<div class="row">
<div class="col-md-6">
<a href="{{ projet.siteWeb }}" style="text-decoration:none;text-align:center;" target="_blank">Site web</a>
</div>
<div class="col-md-6">
<a href="{{ projet.reseaux }}" style="text-decoration:none;color:{{ projet.couleurBackText }};text-align:center;" target="_blank">Réseau</a>
</div>
</div>
</div>
</div>
<div class="projet">
<h2 class="projetdefile" style=" font-size:40px;" > PROJET PROJET PROJET PROJET PROJET PROJET PROJET PROJET PROJET PROJET PROJET PROJET PROJET </h2>
</div>
<div class="scrolling-container">
<div class="scrolling-text">
{% for projet in projets %}
<a style="text-decoration:none;color:black;" href="{{ path('app_projet_show', {'id': projet.id}) }}" >
<img src="{{asset('images/' ~ projet.imagePresentation)}}" alt="" style="width:30%;margin-bottom:100px;">
</a>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
{% endblock %}