mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
886 B
30 lines
886 B
@page
|
|
@model Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.BlockquotesModel
|
|
@{
|
|
ViewData["Title"] = "Badges";
|
|
}
|
|
|
|
<h2>Blockquotes</h2>
|
|
|
|
<p>Based on <a href="http://getbootstrap.com/docs/4.1/content/typography/#blockquotes" target="_blank"> Bootstrap Blockquotes</a>.</p>
|
|
|
|
<h4># Blockquote Examples</h4>
|
|
|
|
<div class="demo-with-code">
|
|
<div class="demo-area">
|
|
<abp-blockquote>
|
|
<p>"I love deadlines. I love the whooshing noise they make as they go by."</p>
|
|
<footer> Douglas Adams, The Salmon of Doubt </footer>
|
|
</abp-blockquote>
|
|
</div>
|
|
<div class="code-area">
|
|
<pre>
|
|
<abp-blockquote>
|
|
<p>"I love deadlines. I love the whooshing noise they make as they go by."</p>
|
|
<footer> Douglas Adams, The Salmon of Doubt </footer>
|
|
</abp-blockquote>
|
|
</pre>
|
|
</div>
|
|
</div>
|
|
|