@ -8,15 +8,21 @@
< div class = "list-group list-group-pretty" >
<?php foreach ( getArchivesList () as $archive ) : ?>
< a href = " <? = $archive [ "url" ] ?> " target = "_blank" class = "list-group-item-action list-group-item ">
< a href = " <? = $archive [ "url" ] ?> " target = "_blank" class = "list-group-item-action list-group-item project-item ">
< img alt = "" src = " <? = $archive [ "icon" ] ?> " style = "border-radius:5px;vertical-align: middle; width: 24px; height: 24px;" >
< span style = "vertical-align: middle;" >
< span style = "vertical-align: middle;" class = "project-span-desktop" >
<? = $archive [ "name" ] ?>
<?php if ( trim ( $archive [ "description" ]) !== "" ) : ?>
< span class = "text-muted" > · <? = $archive [ "description" ] ?> </ span >
<?php endif ; ?>
< / span >
< span class = "text-muted" style = "float: right;" > <? = timeAgo ( $archive [ "date" ]) ?> (<? = date ( 'M Y' , $archive [ "date" ]) ?> )</ span >
< span style = "vertical-align: middle;display: none;" class = "project-span-mobile" >
<? = $archive [ "name" ] ?>
<?php if ( trim ( $archive [ "description" ]) !== "" ) : ?>
< span class = "text-muted" >< br > <? = $archive [ "description" ] ?> </ span >
<?php endif ; ?>
< / span >
< span class = "text-muted project-date" style = "float: right;" > <? = timeAgo ( $archive [ "date" ]) ?> (<? = date ( 'M Y' , $archive [ "date" ]) ?> )</ span >
< / a >
<?php endforeach ; ?>
< / div >