Skip to content

Commit

Permalink
Added two classes for admin list display.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stardog committed Oct 26, 2017
1 parent a4ad459 commit 88c387e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
16 changes: 16 additions & 0 deletions templates/Feature/Landscape.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<div class="col-sm-6">
<div class="story-feature landscape">
<div class="story-thumbnail" style="background-image: url('<?=$thumbnail?>')"><a href="./<?=$urlTitle?>">&nbsp;</a></div>
<div class="story-content">
<div class="story-title">
<a href="./<?=$urlTitle?>"><h3><?=$title?></h3></a>
</div>
<div class="story-summary">
<?=$strippedSummary?>
</div>
</div>
<div class="published-date">Published
<?=$publishDateRelative?>
</div>
</div>
</div>
12 changes: 12 additions & 0 deletions templates/Feature/Portrait.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<div class="col-sm-6">
<div class="story-feature portrait">
<div class="story-thumbnail" style="background-image: url('<?=$thumbnail?>')"> <a href="./<?=$urlTitle?>">&nbsp;</a></div>
<div class="story-title">
<a href="./<?=$urlTitle?>"><h3><?=$title?></h3></a>
</div>
<div class="story-summary">
<?=$strippedSummary?>
</div>
<div class="published-date">Published <?=$publishDateRelative?></div>
</div>
</div>

0 comments on commit 88c387e

Please sign in to comment.