Skip to content

Commit

Permalink
Add portfolio details entry
Browse files Browse the repository at this point in the history
  • Loading branch information
benjy8001 committed Mar 22, 2022
1 parent c4127d8 commit 8032688
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions templates/macros.twig
Original file line number Diff line number Diff line change
Expand Up @@ -122,27 +122,23 @@ Portfolio part


{% macro portfolio_details_build() %}
{{ _self.portfolio_details_entry() }}
{{ _self.portfolio_details_entry('Portfolio_Detail_comutitres', 'Je gére ma carte Navigo', 'build/images/Portfolio/realisations_web/betd/jegeremacartenavigo.fr_touslesservices_.png', 'Navigo', 'Pour le client COMUTITRES (Groupement RATP/SNCF/OPTILE) :<br>- Reprise TMA site de Services En Ligne (achat de titres, sav, ...)<br>-> Symfony 2.8<br>-> Réalisation d''études et chiffrages (OpenStreetMap, OpenCV, ...)<br>-> Rédaction de SFD/STD', 'https://www.jegeremacartenavigo.fr/touslesservices') }}
{% endmacro %}

{% macro portfolio_details_entry() %}
{% macro portfolio_details_entry(id, title, img_path, img_alt, desc, link) %}
<!-- Portfolio Detail Modal -->
<div id="Portfolio_Detail_comutitres" class="modal">
<div id="{{ id }}" class="modal">
<div class="modal-content">
<a href="javascript:void(0)" class="modal-action modal-close close btn-floating btn waves-effect waves-teal white"><i class="material-icons light-green-text text-darken-3">close</i></a>
<h4 class="modal-title">Je gére ma carte Navigo</h4>
<img src="{{ asset('build/images/Portfolio/realisations_web/betd/jegeremacartenavigo.fr_touslesservices_.png') }}" class="responsive-img" alt="Navigo">
<h4 class="modal-title">{{ title }}</h4>
<img src="{{ asset(img_path) }}" class="responsive-img" alt="{{ img_alt }}">
<hr>
<p>
Pour le client COMUTITRES (Groupement RATP/SNCF/OPTILE) :
<br>- Reprise TMA site de Services En Ligne (achat de titres, sav, ...)
<br>-> Symfony 2.8
<br>-> Réalisation d'études et chiffrages (OpenStreetMap, OpenCV, ...)
<br>-> Rédaction de SFD/STD
{{ desc }}
</p>
</div>
<div class="modal-footer">
<a href="https://www.jegeremacartenavigo.fr/touslesservices" class="waves-effect btn-flat left light-green-text text-darken-3">MORE INFO</a>
<a href="{{ link }}" class="waves-effect btn-flat left light-green-text text-darken-3">MORE INFO</a>
</div>
</div>
<!-- # Portfolio Detail Modal End # -->
Expand Down

0 comments on commit 8032688

Please sign in to comment.