Skip to content

Instantly share code, notes, and snippets.

@dacanizares
Last active September 6, 2016 05:11
Show Gist options
  • Save dacanizares/681abebddf23d86e4a2adaf76efe6980 to your computer and use it in GitHub Desktop.
Save dacanizares/681abebddf23d86e4a2adaf76efe6980 to your computer and use it in GitHub Desktop.
@model ProjectDemo.Models.Videojuego
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
@Model.Nombre
</h3>
</div>
<div class="panel-body">
<h4>Imagen</h4>
<img class="img-responsive" src="@Model.ImagenUrl"/>
<hr />
<h4>Descripción</h4>
<p>
@Model.Descripcion
</p>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment