Created
November 24, 2014 15:22
-
-
Save kyu999/45a4db5b6b8dc22c4131 to your computer and use it in GitHub Desktop.
backup
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
<div class = "contents_container"> | |
<ul id = "@gather_kind" class = "middle_content_frame"> | |
@views.html.contents.content_ad() | |
@contents.map{ content => | |
<li class = "@content.category each_middle_content_frame" style = "float: left; list-style: none;"> | |
<a href = "@routes.Application.content(content.id)"> | |
<div class = "each_content_inner"> | |
<div style = "font-weight : bold; height : 15%; margin: 10px;">@content.title.take(25)</div> | |
<img width = "100%" height = "100%" src = "@content.img"> | |
<div class = "small_infos"> | |
<div style = "border-bottom: solid 1px #faebd7; padding : 2px;"> | |
<!--<img src = "@routes.Assets.at("images/eye.png")" height="20px" width="20px">--> | |
<span>@content.views views</span> | |
</div> | |
<div style = "border-bottom: solid 1px #faebd7; padding : 2px;"> | |
<!--<img src = "@routes.Assets.at("images/calender.png")" height="20px" width="20px">--> | |
<span>@content.date</span> | |
</div> | |
<span>@content.category</span> | |
</div> | |
</div> | |
</a> | |
</li> | |
} | |
@views.html.contents.content_ad() | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment