Created
April 5, 2015 05:37
-
-
Save marti1125/d1752ab708688fd0a335 to your computer and use it in GitHub Desktop.
Imagen play framework
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#{extends 'main.html' /} | |
#{set title:'Maquinarias' /} | |
<div class="row"> | |
#{list items:tiposDeMaquinarias, as: 'tipoDeMaquinaria'} | |
<div class="col-md-3"> | |
<img class="col-md-12" src="@{'/public/img'}/${tipoDeMaquinaria.img_id}.png" /> | |
<br/> | |
<h4 class="center">${tipoDeMaquinaria.nombre}</h4> | |
</div> | |
#{/list} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment