Advertisement
mstranieri

Untitled

Jun 14th, 2014
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <#if utente.metadatiUtente.settore??>
  2. <#assign icon = "" />
  3. <#if utente.metadatiUtente.settore == "ICT">
  4. <#assign icon = "/img/ict-icon.png" />
  5. </#if>
  6.  
  7. <#if utente.metadatiUtente.settore == "Biomedicina / Biotecnologie">
  8. <#assign icon = "/img/biomedicina-icon.png" />
  9. </#if>
  10.  
  11. <#if utente.metadatiUtente.settore == "Energie Rinnovabili / Ambiente">
  12. <#assign icon = "/img/energierinnovabili-icon.png" />
  13. </#if>
  14.  
  15. <#if utente.metadatiUtente.settore == "Agroalimentare">
  16. <#assign icon = "/img/agroalimentare-icon.png" />
  17. </#if>
  18.  
  19. <#if utente.metadatiUtente.settore == "Altri settori">
  20. <#assign icon = "/img/altro-icon.png" />
  21. </#if>
  22. <div class="col-md-8 col-sm-8 col-xs-12 label-agency clearfix">
  23. <a href="javascript:void(0)" class="block-filtro clearfix">
  24. <img src="${icon}" alt="${utente.metadatiUtente.settore?lower_case!''}" /> <span> ${utente.metadatiUtente.settore!''} </span> </a>
  25. </div>
  26. </#if>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement