forked from blogifierdotnet/Blogifier
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
88 additions
and
164 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,33 @@ | ||
@using Blogifier.Widgets | ||
|
||
<div class="card dash draft"> | ||
<div class="card-header"> | ||
|
||
<div class="row no-gutters"> | ||
<div class="col-auto"> | ||
<img src="//placehold.it/280" class="img-fluid" alt=""> | ||
</div> | ||
<div class="col"> | ||
<div class="card-block px-2"> | ||
<h4 class="card-title">Title</h4> | ||
<p class="card-text">Description</p> | ||
<a href="#" class="btn btn-primary">BUTTON</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
<div class="card dash themes"> | ||
<div class="card-body"> | ||
@if (Posts == null || Posts.Count() == 0) | ||
{ | ||
<div class="notfound">@Localizer["empty"]</div> | ||
} | ||
else | ||
{ | ||
<div class="card-columns"> | ||
<div class="card"> | ||
<img class="card-img-top" src="https://via.placeholder.com/180x180" alt="Card image cap"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Card title that wraps to a new line</h5> | ||
<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p> | ||
</div> | ||
</div> | ||
<div class="card p-3"> | ||
<blockquote class="blockquote mb-0 card-body"> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> | ||
<footer class="blockquote-footer"> | ||
<small class="text-muted"> | ||
Someone famous in <cite title="Source Title">Source Title</cite> | ||
</small> | ||
</footer> | ||
</blockquote> | ||
</div> | ||
<div class="card"> | ||
<img class="card-img-top" src="https://via.placeholder.com/180x180" alt="Card image cap"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Card title</h5> | ||
<p class="card-text">This card has supporting text below as a natural lead-in to additional content.</p> | ||
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> | ||
</div> | ||
</div> | ||
<div class="card bg-primary text-white text-center p-3"> | ||
<blockquote class="blockquote mb-0"> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat.</p> | ||
<footer class="blockquote-footer"> | ||
<small> | ||
Someone famous in <cite title="Source Title">Source Title</cite> | ||
</small> | ||
</footer> | ||
</blockquote> | ||
</div> | ||
<div class="card text-center"> | ||
<div class="row row-cols-1 row-cols-md-2"> | ||
<div class="col mb-4"> | ||
<div class="card theme-active"> | ||
<img src="@CurrentTheme.Cover" class="card-img-top" alt="@CurrentTheme.Title"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Card title</h5> | ||
<p class="card-text">This card has supporting text below as a natural lead-in to additional content.</p> | ||
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> | ||
<h5 class="card-title"> | ||
@CurrentTheme.Title | ||
<span><i class="fa fa-check-square-o fa-4" aria-hidden="true"></i></span> | ||
</h5> | ||
</div> | ||
</div> | ||
</div> | ||
@foreach (var item in ThemeItems) | ||
{ | ||
<div class="col mb-4"> | ||
<div class="card"> | ||
<img class="card-img" src="https://via.placeholder.com/180x180" alt="Card image"> | ||
</div> | ||
<div class="card p-3 text-right"> | ||
<blockquote class="blockquote mb-0"> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> | ||
<footer class="blockquote-footer"> | ||
<small class="text-muted"> | ||
Someone famous in <cite title="Source Title">Source Title</cite> | ||
</small> | ||
</footer> | ||
</blockquote> | ||
</div> | ||
<div class="card"> | ||
<img src="@item.Cover" class="card-img-top" alt="@item.Title"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Card title</h5> | ||
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action.</p> | ||
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> | ||
<h5 class="card-title"> | ||
@item.Title | ||
<span> | ||
<a href="#" @onclick="()=> SelectTheme(item.Title)" @onclick:preventDefault>@Localizer["select"]</a> | ||
</span> | ||
</h5> | ||
</div> | ||
</div> | ||
</div> | ||
} | ||
} | ||
</div> | ||
</div> | ||
</div> |
This file contains 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
Binary file not shown.
This file contains 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
This file contains 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
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.