Style/title image box

This commit is contained in:
asonix 2020-06-13 18:30:49 -05:00
parent 51a9cdb07f
commit a03c2b3a93
2 changed files with 8 additions and 1 deletions

View file

@ -11,3 +11,10 @@ ul {
.subtitle {
margin-bottom: 0;
}
img {
background-color: #f5f5f5;
border: 1px solid #e5e5e5;
border-radius: 3px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

View file

@ -21,7 +21,7 @@
@for image in images {
<li>
<article>
<img src="@image.thumb(400)" alt="@image.filename()" />
<img src="@image.thumb(400)" alt="@image.filename()" title="@image.filename()" />
<p>Link: <a href="@image.link()">@image.link()</a></p>
<p>Delete link: <a href="@image.delete()">@image.delete()</a></p>
</article>